Correct implem. of evaluator.analyze_all & Evaluator declassification

Commit
5ab73817371c1b4fedbd98838d3cf28984d73004
Author
blendoit <blendoit@gmail.com>
Author date
Committer
blendoit <blendoit@gmail.com>
Committer date
Changed files
creator/base.py
index ad4c4432..130add31 100644..100644
@@ -1,10 +1,12 @@
1 1 """The base.py module contains parent classes for components."""
2 2
3 3 import numpy as np
4 Removed: import sys
5 4 import os.path
5 Added: import random
6 6 import logging
7 7
8 Added: import creator
9 Added:
8 10 logging.basicConfig(filename='log_base.txt',
9 11 level=logging.DEBUG,
10 12 format='%(asctime)s - %(levelname)s - %(message)s')
@@ -12,19 +14,30 @@
12 14
13 15 class Aircraft:
14 16 """This class tracks all sub-components and is fed to the evaluator."""
15 Removed: def __init__(self, evaluator, name):
16 Removed: evaluator.aircrafts.append(self)
17 Removed: self.evaluator = evaluator
18 Removed: self.name = name
19 Removed: self.fuselage = None
20 Removed: self.propulsion = None
21 Removed: self.wing = None
17 Added: name = None
18 Added: fuselage = None
19 Added: propulsion = None
20 Added: wing = None
21 Added: properties = {}
22 Added:
23 Added: def __init__(self):
22 24 self.results = {}
23 25
24 26 def __str__(self):
25 27 return self.name
26 28
29 Added: @classmethod
30 Added: def from_default(cls):
31 Added: aircraft = creator.base.Aircraft()
32 Added: aircraft.name = 'default_aircraft_' + str(random.randrange(1000, 9999))
33 Added: airfoil = creator.wing.Airfoil(aircraft, 'default_airfoil')
34 Added: airfoil.add_naca(2412)
35 Added: soar1 = creator.wing.Spar(airfoil, 'default_spar_1', 0.30)
36 Added: soar2 = creator.wing.Spar(airfoil, 'default_spar_2', 0.60)
37 Added: stringer = creator.wing.Stringer(airfoil, 'default_stringer')
38 Added: return aircraft
27 39
40 Added:
28 41 class Component:
29 42 """Basic component providing coordinates, tools and a component tree."""
30 43 def __init__(self, parent, name):
@@ -35,6 +48,7 @@
35 48 self.y = np.array([])
36 49 self.material = None
37 50 self.mass = float()
51 Added: self.properties = {}
38 52
39 53 def __str__(self):
40 54 return self.name
evaluator/__init__.py
index 6eedafce..a58168bf 100644..100644
@@ -1,1 +1,1 @@
1 Removed: from .evaluator import Evaluator
1 Added: from .evaluator import *
evaluator/drag.py
index df79e6a3..73a26fce 100644..100644
@@ -1,3 +1,5 @@
1 Added: import random
2 Added:
1 3 def get_drag(aircraft, drag):
2 4 # Transform semi-span integer into list
3 5 semi_span = [x for x in range(0, aircraft.wing.semi_span)]
@@ -11,6 +13,6 @@
11 13 return F_x
12 14
13 15
14 Removed: def get_drag_total(self, aircraft):
16 Added: def get_drag_total(aircraft):
15 17 """Get total drag force acting on the aircraft."""
16 Removed: return 500
18 Added: return random.random() * 100
evaluator/evaluator.py
index b2b6e189..18bb692a 100644..100644
@@ -1,49 +1,38 @@
1 1 """
2 Removed: The evaluator.py module contains a single Evaluator class,
3 Removed: which knows all the attributes of a specified Aircraft instance,
4 Removed: and contains functions to analyse the airfoil's geometrical
5 Removed: & structural properties.
2 Added: The evaluator.py module contains functions
3 Added: that return calculated data for an aircraft.
4 Added: Plotting aircraft components is also possible.
6 5 """
7 6
8 Removed: import sys
9 7 import os.path
10 Removed: import matplotlib.pyplot as plt
11 8 import concurrent.futures
12 Removed: import logging
9 Added: import matplotlib.pyplot as plt
13 10
14 11 from . import drag, inertia, lift, mass
15 Removed: import generator
16 12
17 Removed: logging.basicConfig(filename='log_eval.txt',
18 Removed: level=logging.DEBUG,
19 Removed: format='%(asctime)s - %(levelname)s - %(message)s')
20 13
14 Added: def analyze(aircraft):
15 Added: """Analyze a single aircraft."""
16 Added: results = {
17 Added: 'Lift': lift.get_lift_total(aircraft),
18 Added: 'Drag': drag.get_drag_total(aircraft),
19 Added: 'Mass': mass.get_mass_total(aircraft),
20 Added: 'Centroid': inertia.get_centroid(aircraft)
21 Added: }
22 Added: aircraft.results = results
23 Added: return aircraft.name, results
21 24
22 Removed: class Evaluator:
23 Removed: """Performs structural evaluations on aircrafts.
24 Removed: Individual aircrafts must claim an Evaluator object as parent."""
25 Removed: def __init__(self, name):
26 Removed: self.name = name
27 Removed: self.aircrafts = []
28 Removed: self.results = []
29 25
30 Removed: self.I_ = {'x': 0, 'z': 0, 'xz': 0}
26 Added: def analyze_all(population):
27 Added: """Analyze all aircraft in a given population."""
28 Added: # for aircraft in population.aircrafts:
29 Added: # print(analyze(aircraft))
30 Added: with concurrent.futures.ProcessPoolExecutor() as executor:
31 Added: results = executor.map(analyze, population.aircrafts)
32 Added: for result in results:
33 Added: print(result)
34 Added: return None
31 35
32 Removed: def analyze(self, aircraft):
33 Removed: """Analyze a single aircraft."""
34 Removed: aircraft.results.update({'Lift': lift.get_lift_total(aircraft)})
35 Removed: aircraft.results.update({'Drag': drag.get_drag_total(aircraft)})
36 Removed: aircraft.results.update({'Mass': mass.get_mass_total(aircraft)})
37 Removed: aircraft.results.update({'Centroid': inertia.get_centroid(aircraft)})
38 Removed: return aircraft.results
39 Removed:
40 Removed: def analyze_all(self):
41 Removed: """Perform all analysis calculations on a all aircraft in evaluator."""
42 Removed: with concurrent.futures.ProcessPoolExecutor() as executor:
43 Removed: executor.map(self.analyze, self.aircrafts)
44 Removed:
45 Removed: return None
46 Removed:
47 36 # def analysis(self, V_x, V_z):
48 37 # """Perform all analysis calculations and store in class instance."""
49 38
@@ -85,13 +74,13 @@
85 74 # self.spar.cap_area)
86 75 # return None
87 76
88 Removed: def tree_print(self, *aircrafts):
77 Added: def tree_print(self, population):
89 78 """Print the list of subcomponents."""
90 Removed: name = f" TREE FOR {[i.name for i in aircrafts]} IN {self.name} "
79 Added: name = f" TREE FOR {[i.name for i in population.aircraft]} IN {self.name} "
91 80 num_of_dashes = len(name)
92 81 print(num_of_dashes * '-')
93 82 print(name)
94 Removed: for aircraft in aircrafts:
83 Added: for aircraft in population:
95 84 print(".")
96 85 print(f"`-- {aircraft}")
97 86 print(f" |--{aircraft.wing}")
@@ -105,10 +94,10 @@
105 94 return None
106 95
107 96 def tree_save(self,
108 Removed: *aircrafts,
97 Added: population,
109 98 save_path='/home/blendux/Projects/Aircraft_Studio/save'):
110 99 """Save the evaluator's tree to a file."""
111 Removed: for aircraft in aircrafts:
100 Added: for aircraft in population.aircraft:
112 101 file_name = f"{aircraft.name}_tree.txt"
113 102 full_path = os.path.join(save_path, file_name)
114 103 with open(full_path, 'w') as f:
evaluator/inertia.py
index fea728c9..f0477665 100644..100644
@@ -1,27 +1,29 @@
1 1 def get_centroid(aircraft):
2 2 """Return the coordinates of the centroid."""
3 Removed: stringer_area = aircraft.stringer.area
4 Removed: cap_area = aircraft.spar.cap_area
3 Added: # stringer_area = aircraft.wing.stringers.area
4 Added: # cap_area = aircraft.wing.spars.cap_area
5 5
6 Removed: caps_x = [value for spar in aircraft.spar.x for value in spar]
7 Removed: caps_z = [value for spar in aircraft.spar.z for value in spar]
8 Removed: stringers_x = aircraft.stringer.x
9 Removed: stringers_z = aircraft.stringer.z
6 Added: # TODO: Fix this
7 Added: # caps_x = [value for spar in aircraft.wing.spars.x for value in spar]
8 Added: # caps_z = [value for spar in aircraft.wing.spars.z for value in spar]
9 Added: # stringers_x = aircraft.wing.stringers.x
10 Added: # stringers_z = aircraft.wing.stringers.z
10 11
11 Removed: denominator = float(
12 Removed: len(caps_x) * cap_area + len(stringers_x) * stringer_area)
12 Added: # denominator = float(
13 Added: # len(caps_x) * cap_area + len(stringers_x) * stringer_area)
13 14
14 Removed: centroid_x = float(
15 Removed: sum([x * cap_area
16 Removed: for x in caps_x]) + sum([x * stringer_area for x in stringers_x]))
17 Removed: centroid_x = centroid_x / denominator
15 Added: # centroid_x = float(
16 Added: # sum([x * cap_area
17 Added: # for x in caps_x]) + sum([x * stringer_area for x in stringers_x]))
18 Added: # centroid_x = centroid_x / denominator
18 19
19 Removed: centroid_z = float(
20 Removed: sum([z * cap_area
21 Removed: for z in caps_z]) + sum([z * stringer_area for z in stringers_z]))
22 Removed: centroid_z = centroid_z / denominator
20 Added: # centroid_z = float(
21 Added: # sum([z * cap_area
22 Added: # for z in caps_z]) + sum([z * stringer_area for z in stringers_z]))
23 Added: # centroid_z = centroid_z / denominator
23 24
24 Removed: return (centroid_x, centroid_z)
25 Added: # return (centroid_x, centroid_z)
26 Added: return (200, 420)
25 27
26 28
27 29 def get_inertia_terms(self):
evaluator/lift.py
index 6b4363eb..516d649d 100644..100644
@@ -19,7 +19,7 @@
19 19 return L_prime
20 20
21 21
22 Removed: def get_lift_total(self, aircraft):
22 Added: def get_lift_total(aircraft):
23 23 """Combination of rectangular and elliptical lift."""
24 24 # F_z = self._get_lift_rectangular(aircraft) + self._get_lift_elliptical(
25 25 # aircraft)
@@ -27,4 +27,4 @@
27 27 # aircraft) + self._get_lift_elliptical(aircraft) / 2
28 28 # F_z = [i + j for i, j in self._get_lift_rectangular]
29 29 # return F_z
30 Removed: return 420
30 Added: return 400
evaluator/mass.py
index 514c59b1..7edb9268 100644..100644
@@ -3,6 +3,6 @@
3 3 return F_z
4 4
5 5
6 Removed: def get_mass_total(self, aircraft):
6 Added: def get_mass_total(aircraft):
7 7 """Get the total aircraft mass."""
8 8 return 2000
example.py
index 00000000..5faaae35 000000..100644
@@ -0,0 +1,72 @@
1 Added: """This example illustrates the usage of creator, evaluator and generator.
2 Added:
3 Added: All the steps of airfoil creation & evaluation are detailed here;
4 Added: furthermore, the generator.py module contains certain presets
5 Added: (default airfoils).
6 Added:
7 Added: Create an airfoil;
8 Added: Evaluate an airfoil;
9 Added: Generate a population of airfoils & optimize.
10 Added: """
11 Added:
12 Added: import matplotlib.pyplot as plt
13 Added:
14 Added: import creator
15 Added: import evaluator
16 Added: import generator
17 Added: import resources.materials as mt
18 Added:
19 Added: import time
20 Added: start_time = time.time()
21 Added:
22 Added: # Thicknesses
23 Added: SPAR_THICKNESS = 0.4
24 Added: SKIN_THICKNESS = 0.1
25 Added:
26 Added: # Component masses (lbs)
27 Added: AIRFOIL_MASS = 10
28 Added: SPAR_MASS = 10
29 Added: STRINGER_MASS = 5
30 Added:
31 Added: # Area (sqin)
32 Added: SPAR_CAP_AREA = 0.3
33 Added: STRINGER_AREA = 0.1
34 Added:
35 Added: SAVE_PATH = '/home/blendux/Projects/Aircraft_Studio/save'
36 Added:
37 Added: # eval = evaluator.Evaluator("eval")
38 Added:
39 Added: # ac = creator.base.Aircraft(eval, "ac")
40 Added: # af = creator.wing.Airfoil(ac, 'af')
41 Added: # af.add_naca(2412)
42 Added: # spar1 = creator.wing.Spar(af, 'spar1')
43 Added: # spar2 = creator.wing.Spar(af, 'spar2', 0.57)
44 Added: # # spar2 = creator.wing.Spar(af, 'spar2', 0.7)
45 Added: # stringer = creator.wing.Stringer(af, 'stringer', 5, 6, 5, 4)
46 Added: # stringer.info_save(SAVE_PATH)
47 Added:
48 Added: # ac2 = creator.base.Aircraft(eval, "ac2")
49 Added: # af2 = creator.wing.Airfoil(ac2, 'af2')
50 Added: # af2.add_naca(3412)
51 Added: # af2.info_save()
52 Added: # spar3 = creator.wing.Spar(af2, 'spar3', 0.23)
53 Added: # spar4 = creator.wing.Spar(af2, 'spar4', 0.67)
54 Added: # stringer2 = creator.wing.Stringer(af2, 'stringer2')
55 Added: # stringer2.info_save(SAVE_PATH)
56 Added:
57 Added: pop = generator.Population(200)
58 Added:
59 Added: evaluator.analyze_all(pop)
60 Added:
61 Added: # for aircraft in pop.aircrafts:
62 Added: # print(aircraft.results)
63 Added:
64 Added: # for i in eval.aircrafts:
65 Added: # print(i.name)
66 Added:
67 Added: # for i in eval.aircrafts:
68 Added: # print(i.results)
69 Added:
70 Added: # Final execution time
71 Added: final_time = time.time() - start_time
72 Added: print(f"--- {round(final_time, 4)}s seconds ---")
example_airfoil.py
index 11fd4d51..00000000 100644..000000
@@ -1,77 +0,0 @@
1 Removed: """This example illustrates the usage of creator, evaluator and generator.
2 Removed:
3 Removed: All the steps of airfoil creation & evaluation are detailed here;
4 Removed: furthermore, the generator.py module contains certain presets
5 Removed: (default airfoils).
6 Removed:
7 Removed: Create an airfoil;
8 Removed: Evaluate an airfoil;
9 Removed: Generate a population of airfoils & optimize.
10 Removed: """
11 Removed:
12 Removed: import matplotlib.pyplot as plt
13 Removed:
14 Removed: import creator
15 Removed: import evaluator
16 Removed: import generator
17 Removed: import resources.materials as mt
18 Removed:
19 Removed: import time
20 Removed: start_time = time.time()
21 Removed:
22 Removed: # Thicknesses
23 Removed: SPAR_THICKNESS = 0.4
24 Removed: SKIN_THICKNESS = 0.1
25 Removed:
26 Removed: # Component masses (lbs)
27 Removed: AIRFOIL_MASS = 10
28 Removed: SPAR_MASS = 10
29 Removed: STRINGER_MASS = 5
30 Removed:
31 Removed: # Area (sqin)
32 Removed: SPAR_CAP_AREA = 0.3
33 Removed: STRINGER_AREA = 0.1
34 Removed:
35 Removed: # Amount of stringers
36 Removed: TOP_STRINGERS = 6
37 Removed: BOTTOM_STRINGERS = 4
38 Removed: NOSE_TOP_STRINGERS = 3
39 Removed: NOSE_BOTTOM_STRINGERS = 5
40 Removed:
41 Removed: SAVE_PATH = '/home/blendux/Projects/Aircraft_Studio/save'
42 Removed:
43 Removed: eval = evaluator.Evaluator("eval")
44 Removed:
45 Removed: # ac = creator.base.Aircraft(eval, "ac")
46 Removed: # af = creator.wing.Airfoil(ac, 'af')
47 Removed: # af.add_naca(2412)
48 Removed: # spar1 = creator.wing.Spar(af, 'spar1')
49 Removed: # spar2 = creator.wing.Spar(af, 'spar2', 0.57)
50 Removed: # # spar2 = creator.wing.Spar(af, 'spar2', 0.7)
51 Removed: # stringer = creator.wing.Stringer(af, 'stringer', 5, 6, 5, 4)
52 Removed: # stringer.info_save(SAVE_PATH)
53 Removed:
54 Removed: # ac2 = creator.base.Aircraft(eval, "ac2")
55 Removed: # af2 = creator.wing.Airfoil(ac2, 'af2')
56 Removed: # af2.add_naca(3412)
57 Removed: # af2.info_save()
58 Removed: # spar3 = creator.wing.Spar(af2, 'spar3', 0.23)
59 Removed: # spar4 = creator.wing.Spar(af2, 'spar4', 0.67)
60 Removed: # stringer2 = creator.wing.Stringer(af2, 'stringer2')
61 Removed: # stringer2.info_save(SAVE_PATH)
62 Removed:
63 Removed: for _ in range(100):
64 Removed: aircraft = generator.default_aircraft(eval)
65 Removed: # eval.tree_print(aircraft)
66 Removed:
67 Removed: eval.analyze_all()
68 Removed:
69 Removed: # for i in eval.aircrafts:
70 Removed: # print(i.name)
71 Removed:
72 Removed: # for i in eval.aircrafts:
73 Removed: # print(i.results)
74 Removed:
75 Removed: # Final execution time
76 Removed: final_time = time.time() - start_time
77 Removed: print(f"--- {round(final_time, 4)}s seconds ---")
generator/generator.py
index 3af48505..c2b81036 100644..100644
@@ -4,23 +4,12 @@
4 4 """
5 5
6 6 import random
7 Added: import concurrent.futures
7 8
8 9 import creator
9 10 import evaluator
10 11
11 12
12 Removed: def default_aircraft(evaluator_instance):
13 Removed: """Generate a default aircraft with a random name."""
14 Removed: name = 'default_aircraft_' + str(random.randrange(1000, 9999))
15 Removed: aircraft = creator.base.Aircraft(evaluator_instance, name)
16 Removed: airfoil = creator.wing.Airfoil(aircraft, 'default_airfoil')
17 Removed: airfoil.add_naca(2412)
18 Removed: soar1 = creator.wing.Spar(airfoil, 'default_spar_1', 0.30)
19 Removed: soar2 = creator.wing.Spar(airfoil, 'default_spar_2', 0.60)
20 Removed: stringer = creator.wing.Stringer(airfoil, 'default_stringer')
21 Removed: return aircraft
22 Removed:
23 Removed:
24 13 def default_fuselage():
25 14 pass
26 15
@@ -30,12 +19,19 @@
30 19
31 20
32 21 class Population():
33 Removed: """Collection of random airfoils."""
22 Added: """Represents a collection of aircraft."""
34 23 def __init__(self, size):
35 Removed: af = creator.Airfoil
36 Removed: # print(af)
24 Added: self.aircrafts = []
25 Added: for i in range(size):
26 Added: self.aircrafts.append(creator.base.Aircraft.from_default())
37 27 self.size = size
28 Added: self.results = None
38 29 self.gen_number = 0 # incremented for every generation
30 Added:
31 Added: def evaluate(self):
32 Added: with concurrent.futures.ProcessPoolExecutor as executor:
33 Added: for aircraft in self.aircrafts:
34 Added: executor.submit(evaluator.analyze, aircraft)
39 35
40 36 def mutate(self, prob_mt):
41 37 """Randomly mutate the genes of prob_mt % of the population."""
log_base.txt
index 25e95fd8..e69de29b 100644..100644
@@ -1,11335 +0,0 @@
1 Removed: 2019-10-07 20:18:14,715 - DEBUG - $HOME=/home/blendux
2 Removed: 2019-10-07 20:18:14,717 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3 Removed: 2019-10-07 20:18:14,718 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4 Removed: 2019-10-07 20:18:14,753 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5 Removed: 2019-10-07 20:18:14,765 - DEBUG - matplotlib version 3.1.1
6 Removed: 2019-10-07 20:18:14,766 - DEBUG - interactive is False
7 Removed: 2019-10-07 20:18:14,766 - DEBUG - platform is linux
8 Removed: 2019-10-07 20:18:14,767 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9 Removed: 2019-10-07 20:18:15,020 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
10 Removed: 2019-10-07 20:18:15,029 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
11 Removed: 2019-10-07 20:18:15,759 - DEBUG - Loaded backend qt5agg version unknown.
12 Removed: 2019-10-07 20:18:15,833 - DEBUG - Loaded backend tkagg version unknown.
13 Removed: 2019-10-07 20:18:15,835 - DEBUG - Loaded backend TkAgg version unknown.
14 Removed: 2019-10-07 20:18:16,021 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
15 Removed: 2019-10-07 20:18:16,025 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
16 Removed: 2019-10-07 20:18:16,028 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
17 Removed: 2019-10-07 20:18:16,180 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
18 Removed: 2019-10-07 20:18:16,184 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
19 Removed: 2019-10-07 20:18:16,187 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
20 Removed: 2019-10-07 20:19:32,124 - DEBUG - $HOME=/home/blendux
21 Removed: 2019-10-07 20:19:32,125 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
22 Removed: 2019-10-07 20:19:32,126 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
23 Removed: 2019-10-07 20:19:32,161 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
24 Removed: 2019-10-07 20:19:32,172 - DEBUG - matplotlib version 3.1.1
25 Removed: 2019-10-07 20:19:32,173 - DEBUG - interactive is False
26 Removed: 2019-10-07 20:19:32,173 - DEBUG - platform is linux
27 Removed: 2019-10-07 20:19:32,174 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
28 Removed: 2019-10-07 20:19:32,426 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
29 Removed: 2019-10-07 20:19:32,435 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
30 Removed: 2019-10-07 20:19:33,124 - DEBUG - Loaded backend qt5agg version unknown.
31 Removed: 2019-10-07 20:19:33,196 - DEBUG - Loaded backend tkagg version unknown.
32 Removed: 2019-10-07 20:19:33,199 - DEBUG - Loaded backend TkAgg version unknown.
33 Removed: 2019-10-07 20:20:47,047 - DEBUG - $HOME=/home/blendux
34 Removed: 2019-10-07 20:20:47,048 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
35 Removed: 2019-10-07 20:20:47,049 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
36 Removed: 2019-10-07 20:20:47,084 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
37 Removed: 2019-10-07 20:20:47,096 - DEBUG - matplotlib version 3.1.1
38 Removed: 2019-10-07 20:20:47,097 - DEBUG - interactive is False
39 Removed: 2019-10-07 20:20:47,097 - DEBUG - platform is linux
40 Removed: 2019-10-07 20:20:47,097 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
41 Removed: 2019-10-07 20:20:47,352 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
42 Removed: 2019-10-07 20:20:47,361 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
43 Removed: 2019-10-07 20:20:48,137 - DEBUG - Loaded backend qt5agg version unknown.
44 Removed: 2019-10-07 20:20:48,209 - DEBUG - Loaded backend tkagg version unknown.
45 Removed: 2019-10-07 20:20:48,212 - DEBUG - Loaded backend TkAgg version unknown.
46 Removed: 2019-10-07 20:20:48,397 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
47 Removed: 2019-10-07 20:20:48,400 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
48 Removed: 2019-10-07 20:20:48,403 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
49 Removed: 2019-10-07 20:20:48,557 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
50 Removed: 2019-10-07 20:20:48,560 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
51 Removed: 2019-10-07 20:20:48,563 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
52 Removed: 2019-10-07 20:20:48,565 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
53 Removed: 2019-10-07 20:22:42,649 - DEBUG - $HOME=/home/blendux
54 Removed: 2019-10-07 20:22:42,650 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
55 Removed: 2019-10-07 20:22:42,651 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
56 Removed: 2019-10-07 20:22:42,687 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
57 Removed: 2019-10-07 20:22:42,700 - DEBUG - matplotlib version 3.1.1
58 Removed: 2019-10-07 20:22:42,700 - DEBUG - interactive is False
59 Removed: 2019-10-07 20:22:42,701 - DEBUG - platform is linux
60 Removed: 2019-10-07 20:22:42,701 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
61 Removed: 2019-10-07 20:22:42,960 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
62 Removed: 2019-10-07 20:22:42,970 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
63 Removed: 2019-10-07 20:22:43,705 - DEBUG - Loaded backend qt5agg version unknown.
64 Removed: 2019-10-07 20:22:43,780 - DEBUG - Loaded backend tkagg version unknown.
65 Removed: 2019-10-07 20:22:43,783 - DEBUG - Loaded backend TkAgg version unknown.
66 Removed: 2019-10-07 20:22:43,975 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
67 Removed: 2019-10-07 20:22:43,978 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
68 Removed: 2019-10-07 20:22:43,981 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
69 Removed: 2019-10-07 20:22:44,140 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
70 Removed: 2019-10-07 20:22:44,144 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
71 Removed: 2019-10-07 20:22:44,147 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
72 Removed: 2019-10-07 20:22:44,148 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
73 Removed: 2019-10-07 20:25:22,257 - DEBUG - $HOME=/home/blendux
74 Removed: 2019-10-07 20:25:22,259 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
75 Removed: 2019-10-07 20:25:22,260 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
76 Removed: 2019-10-07 20:25:22,297 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
77 Removed: 2019-10-07 20:25:22,309 - DEBUG - matplotlib version 3.1.1
78 Removed: 2019-10-07 20:25:22,310 - DEBUG - interactive is False
79 Removed: 2019-10-07 20:25:22,310 - DEBUG - platform is linux
80 Removed: 2019-10-07 20:25:22,311 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
81 Removed: 2019-10-07 20:25:22,576 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
82 Removed: 2019-10-07 20:25:22,586 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
83 Removed: 2019-10-07 20:25:23,321 - DEBUG - Loaded backend qt5agg version unknown.
84 Removed: 2019-10-07 20:25:23,399 - DEBUG - Loaded backend tkagg version unknown.
85 Removed: 2019-10-07 20:25:23,401 - DEBUG - Loaded backend TkAgg version unknown.
86 Removed: 2019-10-07 20:25:23,594 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
87 Removed: 2019-10-07 20:25:23,598 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
88 Removed: 2019-10-07 20:25:23,601 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
89 Removed: 2019-10-07 20:25:23,792 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
90 Removed: 2019-10-07 20:25:23,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
91 Removed: 2019-10-07 20:25:23,799 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
92 Removed: 2019-10-07 20:25:23,801 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
93 Removed: 2019-10-07 20:27:26,137 - DEBUG - $HOME=/home/blendux
94 Removed: 2019-10-07 20:27:26,138 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
95 Removed: 2019-10-07 20:27:26,139 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
96 Removed: 2019-10-07 20:27:26,176 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
97 Removed: 2019-10-07 20:27:26,188 - DEBUG - matplotlib version 3.1.1
98 Removed: 2019-10-07 20:27:26,189 - DEBUG - interactive is False
99 Removed: 2019-10-07 20:27:26,189 - DEBUG - platform is linux
100 Removed: 2019-10-07 20:27:26,190 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
101 Removed: 2019-10-07 20:27:26,453 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
102 Removed: 2019-10-07 20:27:26,462 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
103 Removed: 2019-10-07 20:27:27,179 - DEBUG - Loaded backend qt5agg version unknown.
104 Removed: 2019-10-07 20:27:27,254 - DEBUG - Loaded backend tkagg version unknown.
105 Removed: 2019-10-07 20:27:27,256 - DEBUG - Loaded backend TkAgg version unknown.
106 Removed: 2019-10-07 20:27:27,446 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
107 Removed: 2019-10-07 20:27:27,450 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
108 Removed: 2019-10-07 20:27:27,453 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
109 Removed: 2019-10-07 20:27:27,611 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
110 Removed: 2019-10-07 20:27:27,615 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
111 Removed: 2019-10-07 20:27:27,618 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
112 Removed: 2019-10-07 20:27:27,619 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
113 Removed: 2019-10-07 20:30:08,595 - DEBUG - $HOME=/home/blendux
114 Removed: 2019-10-07 20:30:08,596 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
115 Removed: 2019-10-07 20:30:08,597 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
116 Removed: 2019-10-07 20:30:08,633 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
117 Removed: 2019-10-07 20:30:08,645 - DEBUG - matplotlib version 3.1.1
118 Removed: 2019-10-07 20:30:08,645 - DEBUG - interactive is False
119 Removed: 2019-10-07 20:30:08,646 - DEBUG - platform is linux
120 Removed: 2019-10-07 20:30:08,646 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
121 Removed: 2019-10-07 20:30:08,902 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
122 Removed: 2019-10-07 20:30:08,911 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
123 Removed: 2019-10-07 20:30:09,609 - DEBUG - Loaded backend qt5agg version unknown.
124 Removed: 2019-10-07 20:30:09,713 - DEBUG - Loaded backend tkagg version unknown.
125 Removed: 2019-10-07 20:30:09,716 - DEBUG - Loaded backend TkAgg version unknown.
126 Removed: 2019-10-07 20:30:09,901 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
127 Removed: 2019-10-07 20:30:09,905 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
128 Removed: 2019-10-07 20:30:09,908 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
129 Removed: 2019-10-07 20:30:10,062 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
130 Removed: 2019-10-07 20:30:10,066 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
131 Removed: 2019-10-07 20:30:10,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
132 Removed: 2019-10-07 20:30:10,070 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
133 Removed: 2019-10-07 20:31:30,225 - DEBUG - $HOME=/home/blendux
134 Removed: 2019-10-07 20:31:30,226 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
135 Removed: 2019-10-07 20:31:30,227 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
136 Removed: 2019-10-07 20:31:30,262 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
137 Removed: 2019-10-07 20:31:30,275 - DEBUG - matplotlib version 3.1.1
138 Removed: 2019-10-07 20:31:30,275 - DEBUG - interactive is False
139 Removed: 2019-10-07 20:31:30,276 - DEBUG - platform is linux
140 Removed: 2019-10-07 20:31:30,276 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
141 Removed: 2019-10-07 20:31:30,531 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
142 Removed: 2019-10-07 20:31:30,541 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
143 Removed: 2019-10-07 20:31:31,235 - DEBUG - Loaded backend qt5agg version unknown.
144 Removed: 2019-10-07 20:31:31,309 - DEBUG - Loaded backend tkagg version unknown.
145 Removed: 2019-10-07 20:31:31,311 - DEBUG - Loaded backend TkAgg version unknown.
146 Removed: 2019-10-07 20:31:31,498 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
147 Removed: 2019-10-07 20:31:31,502 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
148 Removed: 2019-10-07 20:31:31,505 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
149 Removed: 2019-10-07 20:31:31,660 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
150 Removed: 2019-10-07 20:31:31,663 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
151 Removed: 2019-10-07 20:31:31,666 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
152 Removed: 2019-10-07 20:31:31,667 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
153 Removed: 2019-10-07 20:40:00,652 - DEBUG - $HOME=/home/blendux
154 Removed: 2019-10-07 20:40:00,654 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
155 Removed: 2019-10-07 20:40:00,655 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
156 Removed: 2019-10-07 20:40:00,692 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
157 Removed: 2019-10-07 20:40:00,704 - DEBUG - matplotlib version 3.1.1
158 Removed: 2019-10-07 20:40:00,705 - DEBUG - interactive is False
159 Removed: 2019-10-07 20:40:00,705 - DEBUG - platform is linux
160 Removed: 2019-10-07 20:40:00,706 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
161 Removed: 2019-10-07 20:40:00,971 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
162 Removed: 2019-10-07 20:40:00,981 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
163 Removed: 2019-10-07 20:40:01,707 - DEBUG - Loaded backend qt5agg version unknown.
164 Removed: 2019-10-07 20:40:01,816 - DEBUG - Loaded backend tkagg version unknown.
165 Removed: 2019-10-07 20:40:01,818 - DEBUG - Loaded backend TkAgg version unknown.
166 Removed: 2019-10-07 20:40:02,012 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
167 Removed: 2019-10-07 20:40:02,016 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
168 Removed: 2019-10-07 20:40:02,019 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
169 Removed: 2019-10-07 20:40:02,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
170 Removed: 2019-10-07 20:40:02,183 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
171 Removed: 2019-10-07 20:40:02,186 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
172 Removed: 2019-10-07 20:40:02,187 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
173 Removed: 2019-10-07 20:48:09,188 - DEBUG - $HOME=/home/blendux
174 Removed: 2019-10-07 20:48:09,189 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
175 Removed: 2019-10-07 20:48:09,190 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
176 Removed: 2019-10-07 20:48:09,227 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
177 Removed: 2019-10-07 20:48:09,239 - DEBUG - matplotlib version 3.1.1
178 Removed: 2019-10-07 20:48:09,240 - DEBUG - interactive is False
179 Removed: 2019-10-07 20:48:09,240 - DEBUG - platform is linux
180 Removed: 2019-10-07 20:48:09,241 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
181 Removed: 2019-10-07 20:48:09,508 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
182 Removed: 2019-10-07 20:48:09,517 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
183 Removed: 2019-10-07 20:48:10,276 - DEBUG - Loaded backend qt5agg version unknown.
184 Removed: 2019-10-07 20:48:10,352 - DEBUG - Loaded backend tkagg version unknown.
185 Removed: 2019-10-07 20:48:10,355 - DEBUG - Loaded backend TkAgg version unknown.
186 Removed: 2019-10-07 20:48:10,549 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
187 Removed: 2019-10-07 20:48:10,553 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
188 Removed: 2019-10-07 20:48:10,556 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
189 Removed: 2019-10-07 20:48:10,717 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
190 Removed: 2019-10-07 20:48:10,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
191 Removed: 2019-10-07 20:48:10,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
192 Removed: 2019-10-07 20:48:10,724 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
193 Removed: 2019-10-07 20:49:02,403 - DEBUG - $HOME=/home/blendux
194 Removed: 2019-10-07 20:49:02,405 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
195 Removed: 2019-10-07 20:49:02,405 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
196 Removed: 2019-10-07 20:49:02,442 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
197 Removed: 2019-10-07 20:49:02,455 - DEBUG - matplotlib version 3.1.1
198 Removed: 2019-10-07 20:49:02,455 - DEBUG - interactive is False
199 Removed: 2019-10-07 20:49:02,456 - DEBUG - platform is linux
200 Removed: 2019-10-07 20:49:02,456 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
201 Removed: 2019-10-07 20:49:02,721 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
202 Removed: 2019-10-07 20:49:02,730 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
203 Removed: 2019-10-07 20:49:03,452 - DEBUG - Loaded backend qt5agg version unknown.
204 Removed: 2019-10-07 20:49:03,529 - DEBUG - Loaded backend tkagg version unknown.
205 Removed: 2019-10-07 20:49:03,532 - DEBUG - Loaded backend TkAgg version unknown.
206 Removed: 2019-10-07 20:49:03,727 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
207 Removed: 2019-10-07 20:49:03,731 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
208 Removed: 2019-10-07 20:49:03,734 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
209 Removed: 2019-10-07 20:49:03,925 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
210 Removed: 2019-10-07 20:49:03,929 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
211 Removed: 2019-10-07 20:49:03,932 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
212 Removed: 2019-10-07 20:49:03,933 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
213 Removed: 2019-10-07 20:49:39,661 - DEBUG - $HOME=/home/blendux
214 Removed: 2019-10-07 20:49:39,662 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
215 Removed: 2019-10-07 20:49:39,663 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
216 Removed: 2019-10-07 20:49:39,699 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
217 Removed: 2019-10-07 20:49:39,711 - DEBUG - matplotlib version 3.1.1
218 Removed: 2019-10-07 20:49:39,711 - DEBUG - interactive is False
219 Removed: 2019-10-07 20:49:39,712 - DEBUG - platform is linux
220 Removed: 2019-10-07 20:49:39,712 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
221 Removed: 2019-10-07 20:49:39,998 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
222 Removed: 2019-10-07 20:49:40,007 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
223 Removed: 2019-10-07 20:49:40,708 - DEBUG - Loaded backend qt5agg version unknown.
224 Removed: 2019-10-07 20:49:40,782 - DEBUG - Loaded backend tkagg version unknown.
225 Removed: 2019-10-07 20:49:40,784 - DEBUG - Loaded backend TkAgg version unknown.
226 Removed: 2019-10-07 20:49:40,972 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
227 Removed: 2019-10-07 20:49:40,976 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
228 Removed: 2019-10-07 20:49:40,979 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
229 Removed: 2019-10-07 20:49:41,134 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
230 Removed: 2019-10-07 20:49:41,138 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
231 Removed: 2019-10-07 20:49:41,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
232 Removed: 2019-10-07 20:49:41,142 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
233 Removed: 2019-10-07 20:50:37,866 - DEBUG - $HOME=/home/blendux
234 Removed: 2019-10-07 20:50:37,867 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
235 Removed: 2019-10-07 20:50:37,868 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
236 Removed: 2019-10-07 20:50:37,934 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
237 Removed: 2019-10-07 20:50:37,946 - DEBUG - matplotlib version 3.1.1
238 Removed: 2019-10-07 20:50:37,946 - DEBUG - interactive is False
239 Removed: 2019-10-07 20:50:37,947 - DEBUG - platform is linux
240 Removed: 2019-10-07 20:50:37,947 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
241 Removed: 2019-10-07 20:50:38,203 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
242 Removed: 2019-10-07 20:50:38,212 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
243 Removed: 2019-10-07 20:50:38,913 - DEBUG - Loaded backend qt5agg version unknown.
244 Removed: 2019-10-07 20:50:38,987 - DEBUG - Loaded backend tkagg version unknown.
245 Removed: 2019-10-07 20:50:38,989 - DEBUG - Loaded backend TkAgg version unknown.
246 Removed: 2019-10-07 20:50:39,175 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
247 Removed: 2019-10-07 20:50:39,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
248 Removed: 2019-10-07 20:50:39,182 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
249 Removed: 2019-10-07 20:50:39,334 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
250 Removed: 2019-10-07 20:50:39,338 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
251 Removed: 2019-10-07 20:50:39,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
252 Removed: 2019-10-07 20:50:39,342 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
253 Removed: 2019-10-07 20:53:45,338 - DEBUG - $HOME=/home/blendux
254 Removed: 2019-10-07 20:53:45,340 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
255 Removed: 2019-10-07 20:53:45,341 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
256 Removed: 2019-10-07 20:53:45,377 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
257 Removed: 2019-10-07 20:53:45,390 - DEBUG - matplotlib version 3.1.1
258 Removed: 2019-10-07 20:53:45,390 - DEBUG - interactive is False
259 Removed: 2019-10-07 20:53:45,391 - DEBUG - platform is linux
260 Removed: 2019-10-07 20:53:45,391 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
261 Removed: 2019-10-07 20:53:45,655 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
262 Removed: 2019-10-07 20:53:45,664 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
263 Removed: 2019-10-07 20:53:46,480 - DEBUG - Loaded backend qt5agg version unknown.
264 Removed: 2019-10-07 20:53:46,556 - DEBUG - Loaded backend tkagg version unknown.
265 Removed: 2019-10-07 20:53:46,558 - DEBUG - Loaded backend TkAgg version unknown.
266 Removed: 2019-10-07 20:53:46,745 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
267 Removed: 2019-10-07 20:53:46,749 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
268 Removed: 2019-10-07 20:53:46,751 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
269 Removed: 2019-10-07 20:53:46,904 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
270 Removed: 2019-10-07 20:53:46,908 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
271 Removed: 2019-10-07 20:53:46,911 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
272 Removed: 2019-10-07 20:53:46,912 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
273 Removed: 2019-10-07 20:54:39,766 - DEBUG - $HOME=/home/blendux
274 Removed: 2019-10-07 20:54:39,768 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
275 Removed: 2019-10-07 20:54:39,768 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
276 Removed: 2019-10-07 20:54:39,804 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
277 Removed: 2019-10-07 20:54:39,816 - DEBUG - matplotlib version 3.1.1
278 Removed: 2019-10-07 20:54:39,816 - DEBUG - interactive is False
279 Removed: 2019-10-07 20:54:39,817 - DEBUG - platform is linux
280 Removed: 2019-10-07 20:54:39,817 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
281 Removed: 2019-10-07 20:54:40,101 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
282 Removed: 2019-10-07 20:54:40,110 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
283 Removed: 2019-10-07 20:54:40,802 - DEBUG - Loaded backend qt5agg version unknown.
284 Removed: 2019-10-07 20:54:40,875 - DEBUG - Loaded backend tkagg version unknown.
285 Removed: 2019-10-07 20:54:40,878 - DEBUG - Loaded backend TkAgg version unknown.
286 Removed: 2019-10-07 20:54:41,048 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
287 Removed: 2019-10-07 20:54:41,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
288 Removed: 2019-10-07 20:54:41,055 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
289 Removed: 2019-10-07 20:54:41,208 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
290 Removed: 2019-10-07 20:54:41,212 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
291 Removed: 2019-10-07 20:54:41,215 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
292 Removed: 2019-10-07 20:54:41,216 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
293 Removed: 2019-10-07 20:56:49,106 - DEBUG - $HOME=/home/blendux
294 Removed: 2019-10-07 20:56:49,108 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
295 Removed: 2019-10-07 20:56:49,108 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
296 Removed: 2019-10-07 20:56:49,144 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
297 Removed: 2019-10-07 20:56:49,157 - DEBUG - matplotlib version 3.1.1
298 Removed: 2019-10-07 20:56:49,157 - DEBUG - interactive is False
299 Removed: 2019-10-07 20:56:49,158 - DEBUG - platform is linux
300 Removed: 2019-10-07 20:56:49,158 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
301 Removed: 2019-10-07 20:56:49,417 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
302 Removed: 2019-10-07 20:56:49,426 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
303 Removed: 2019-10-07 20:56:50,169 - DEBUG - Loaded backend qt5agg version unknown.
304 Removed: 2019-10-07 20:56:50,245 - DEBUG - Loaded backend tkagg version unknown.
305 Removed: 2019-10-07 20:56:50,248 - DEBUG - Loaded backend TkAgg version unknown.
306 Removed: 2019-10-07 20:56:50,441 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
307 Removed: 2019-10-07 20:56:50,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
308 Removed: 2019-10-07 20:56:50,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
309 Removed: 2019-10-07 20:56:50,609 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
310 Removed: 2019-10-07 20:56:50,613 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
311 Removed: 2019-10-07 20:56:50,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
312 Removed: 2019-10-07 20:56:50,617 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
313 Removed: 2019-10-07 20:57:11,331 - DEBUG - $HOME=/home/blendux
314 Removed: 2019-10-07 20:57:11,333 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
315 Removed: 2019-10-07 20:57:11,333 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
316 Removed: 2019-10-07 20:57:11,369 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
317 Removed: 2019-10-07 20:57:11,381 - DEBUG - matplotlib version 3.1.1
318 Removed: 2019-10-07 20:57:11,382 - DEBUG - interactive is False
319 Removed: 2019-10-07 20:57:11,382 - DEBUG - platform is linux
320 Removed: 2019-10-07 20:57:11,383 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
321 Removed: 2019-10-07 20:57:11,637 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
322 Removed: 2019-10-07 20:57:11,646 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
323 Removed: 2019-10-07 20:57:12,388 - DEBUG - Loaded backend qt5agg version unknown.
324 Removed: 2019-10-07 20:57:12,465 - DEBUG - Loaded backend tkagg version unknown.
325 Removed: 2019-10-07 20:57:12,467 - DEBUG - Loaded backend TkAgg version unknown.
326 Removed: 2019-10-07 20:57:12,660 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
327 Removed: 2019-10-07 20:57:12,664 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
328 Removed: 2019-10-07 20:57:12,667 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
329 Removed: 2019-10-07 20:57:12,824 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
330 Removed: 2019-10-07 20:57:12,828 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
331 Removed: 2019-10-07 20:57:12,831 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
332 Removed: 2019-10-07 20:57:12,832 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
333 Removed: 2019-10-07 20:57:38,681 - DEBUG - $HOME=/home/blendux
334 Removed: 2019-10-07 20:57:38,686 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
335 Removed: 2019-10-07 20:57:38,688 - DEBUG - matplotlib data path: /home/blendux/.local/lib/pypy3.6/site-packages/matplotlib/mpl-data
336 Removed: 2019-10-07 20:57:38,761 - DEBUG - loaded rc file /home/blendux/.local/lib/pypy3.6/site-packages/matplotlib/mpl-data/matplotlibrc
337 Removed: 2019-10-07 20:57:38,808 - DEBUG - matplotlib version 3.1.1
338 Removed: 2019-10-07 20:57:38,809 - DEBUG - interactive is False
339 Removed: 2019-10-07 20:57:38,812 - DEBUG - platform is linux
340 Removed: 2019-10-07 20:57:38,814 - DEBUG - loaded modules: ['_thread', '_collections', '_structseq', '_multibytecodec', '__pypy__.os', 'gc', '_operator', 'array', '__pypy__.builders', 'builtins', 'errno', '__pypy__.intop', '__pypy__.time', '__pypy__._pypydatetime', '_warnings', '_rawffi', '_frozen_importlib_external', '_frozen_importlib', 'sys', '_continuation', '__pypy__', '_rawffi.alt', 'unicodedata', '_ast', '_imp', '_csv', '_weakref', '_io', '__pypy__.thread', '__pypy__.bufferable', 'posix', 'time', 'marshal', '_codecs', 'encodings', 'codecs', 'encodings.aliases', 'encodings.ascii', 'os', 'abc', '_weakrefset', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', 'encodings.utf_8', 'encodings.latin_1', '_locale', '__main__', 'site', '_sitebuiltins', 'sysconfig', '_sysconfigdata', 'distutils', 'distutils.spawn', 'distutils.errors', 'distutils.debug', 'distutils.log', '_bootlocale', 'types', 'functools', '_functools', 'reprlib', 'itertools', 'collections', 'operator', 'keyword', 'heapq', 'weakref', 'collections.abc', '_signal', '_pypy_interact', 'atexit', 'readline', 'pyrepl', 'pyrepl.readline', 'pyrepl.commands', 'pyrepl.input', '__future__', 'pyrepl.historical_reader', 'pyrepl.reader', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'pyrepl.completing_reader', 'pyrepl.unix_console', 'termios', 'select', 'struct', '_struct', 'signal', 'fcntl', 'pyrepl.curses', '_minimal_curses', 'pyrepl.fancy_termios', 'pyrepl.console', 'pyrepl.unix_eventqueue', 'pyrepl.keymap', 'pyrepl.trace', 'rlcompleter', 'traceback', 'linecache', 'tokenize', 'io', 'token', '_pypy_irc_topic', 'pyrepl.simple_interact', 'code', 'argparse', 'copy', 'textwrap', 'gettext', 'locale', 'codeop', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', 'warnings', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'cpyext', 'pickle', '_compat_pickle', 'datetime', 'math', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'contextlib', 'urllib', 'urllib.parse', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', '_ctypes.dummy', '_ctypes.basics', '_ctypes.pointer', '_ctypes.array', '_ctypes.primitive', '_ctypes.builtin', '_ctypes.function', '_ctypes.dll', '_ctypes.structure', 'inspect', 'ast', 'dis', 'opcode', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'importlib.machinery', '_ctypes.union', 'ctypes', '_ffi', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', '_posixsubprocess', 'selectors', 'threading', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', '_lzma_cffi', '_lzma_cffi.lib', 'pwd', 'grp', '_pwdgrp_cffi', '_pwdgrp_cffi.lib', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_decimal', '_decimal_cffi', '_decimal_cffi.lib', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'cython_runtime', 'numpy.random.mtrand', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', '_cython_0_29_13', 'numpy.random.bit_generator', 'secrets', 'base64', 'binascii', 'hmac', 'hashlib', '_hashlib', '_pypy_openssl', '_pypy_openssl.lib', '_cffi_ssl', '_cffi_ssl._stdssl', 'socket', '_socket', '_cffi_ssl._stdssl.certificate', '_cffi_ssl._stdssl.utility', '_cffi_ssl._stdssl.error', '_cffi_ssl._stdssl.errorcodes', '_cffi_backend', '_blake2', '_blake2._blake2b_cffi', '_blake2._blake2b_cffi.lib', '_blake2._blake2s_cffi', '_blake2._blake2s_cffi.lib', '_sha3', '_sha3._sha3_cffi', '_sha3._sha3_cffi.lib', 'random', 'bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils.version', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', '_pypyjson', 'json.decoder', 'json.scanner', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver']
341 Removed: 2019-10-07 20:57:40,058 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
342 Removed: 2019-10-07 20:57:40,257 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
343 Removed: 2019-10-07 20:57:43,470 - DEBUG - Loaded backend qt5agg version unknown.
344 Removed: 2019-10-07 20:57:44,406 - DEBUG - Loaded backend tkagg version unknown.
345 Removed: 2019-10-07 20:57:44,550 - DEBUG - Loaded backend TkAgg version unknown.
346 Removed: 2019-10-07 20:57:45,582 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
347 Removed: 2019-10-07 20:57:45,595 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
348 Removed: 2019-10-07 20:57:45,604 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
349 Removed: 2019-10-07 20:57:46,450 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
350 Removed: 2019-10-07 20:57:46,464 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
351 Removed: 2019-10-07 20:57:46,482 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
352 Removed: 2019-10-07 20:57:46,487 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
353 Removed: 2019-10-07 20:57:54,238 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
354 Removed: 2019-10-07 20:57:54,251 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
355 Removed: 2019-10-07 20:57:54,260 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
356 Removed: 2019-10-07 20:57:55,016 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
357 Removed: 2019-10-07 20:57:55,030 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
358 Removed: 2019-10-07 20:57:55,039 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
359 Removed: 2019-10-07 20:57:55,042 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
360 Removed: 2019-10-07 20:59:32,890 - DEBUG - $HOME=/home/blendux
361 Removed: 2019-10-07 20:59:32,892 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
362 Removed: 2019-10-07 20:59:32,892 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
363 Removed: 2019-10-07 20:59:32,928 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
364 Removed: 2019-10-07 20:59:32,940 - DEBUG - matplotlib version 3.1.1
365 Removed: 2019-10-07 20:59:32,941 - DEBUG - interactive is False
366 Removed: 2019-10-07 20:59:32,941 - DEBUG - platform is linux
367 Removed: 2019-10-07 20:59:32,941 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
368 Removed: 2019-10-07 20:59:33,195 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
369 Removed: 2019-10-07 20:59:33,204 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
370 Removed: 2019-10-07 20:59:33,896 - DEBUG - Loaded backend qt5agg version unknown.
371 Removed: 2019-10-07 20:59:33,970 - DEBUG - Loaded backend tkagg version unknown.
372 Removed: 2019-10-07 20:59:33,974 - DEBUG - Loaded backend TkAgg version unknown.
373 Removed: 2019-10-07 20:59:34,187 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
374 Removed: 2019-10-07 20:59:34,191 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
375 Removed: 2019-10-07 20:59:34,193 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
376 Removed: 2019-10-07 20:59:34,345 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
377 Removed: 2019-10-07 20:59:34,349 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
378 Removed: 2019-10-07 20:59:34,352 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
379 Removed: 2019-10-07 20:59:34,353 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
380 Removed: 2019-10-07 21:01:23,955 - DEBUG - $HOME=/home/blendux
381 Removed: 2019-10-07 21:01:23,957 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
382 Removed: 2019-10-07 21:01:23,957 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
383 Removed: 2019-10-07 21:01:24,008 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
384 Removed: 2019-10-07 21:01:24,036 - DEBUG - matplotlib version 3.1.1
385 Removed: 2019-10-07 21:01:24,037 - DEBUG - interactive is False
386 Removed: 2019-10-07 21:01:24,037 - DEBUG - platform is linux
387 Removed: 2019-10-07 21:01:24,038 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
388 Removed: 2019-10-07 21:01:24,293 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
389 Removed: 2019-10-07 21:01:24,302 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
390 Removed: 2019-10-07 21:01:24,997 - DEBUG - Loaded backend qt5agg version unknown.
391 Removed: 2019-10-07 21:01:25,071 - DEBUG - Loaded backend tkagg version unknown.
392 Removed: 2019-10-07 21:01:25,073 - DEBUG - Loaded backend TkAgg version unknown.
393 Removed: 2019-10-07 21:01:25,258 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
394 Removed: 2019-10-07 21:01:25,262 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
395 Removed: 2019-10-07 21:01:25,264 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
396 Removed: 2019-10-07 21:01:25,416 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
397 Removed: 2019-10-07 21:01:25,420 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
398 Removed: 2019-10-07 21:01:25,422 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
399 Removed: 2019-10-07 21:01:25,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
400 Removed: 2019-10-07 21:01:46,354 - DEBUG - $HOME=/home/blendux
401 Removed: 2019-10-07 21:01:46,355 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
402 Removed: 2019-10-07 21:01:46,356 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
403 Removed: 2019-10-07 21:01:46,392 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
404 Removed: 2019-10-07 21:01:46,404 - DEBUG - matplotlib version 3.1.1
405 Removed: 2019-10-07 21:01:46,405 - DEBUG - interactive is False
406 Removed: 2019-10-07 21:01:46,405 - DEBUG - platform is linux
407 Removed: 2019-10-07 21:01:46,405 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
408 Removed: 2019-10-07 21:01:46,661 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
409 Removed: 2019-10-07 21:01:46,670 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
410 Removed: 2019-10-07 21:01:47,367 - DEBUG - Loaded backend qt5agg version unknown.
411 Removed: 2019-10-07 21:01:47,444 - DEBUG - Loaded backend tkagg version unknown.
412 Removed: 2019-10-07 21:01:47,447 - DEBUG - Loaded backend TkAgg version unknown.
413 Removed: 2019-10-07 21:01:47,632 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
414 Removed: 2019-10-07 21:01:47,636 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
415 Removed: 2019-10-07 21:01:47,639 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
416 Removed: 2019-10-07 21:01:47,793 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
417 Removed: 2019-10-07 21:01:47,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
418 Removed: 2019-10-07 21:01:47,800 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
419 Removed: 2019-10-07 21:01:47,801 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
420 Removed: 2019-10-07 21:02:07,549 - DEBUG - $HOME=/home/blendux
421 Removed: 2019-10-07 21:02:07,550 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
422 Removed: 2019-10-07 21:02:07,551 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
423 Removed: 2019-10-07 21:02:07,588 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
424 Removed: 2019-10-07 21:02:07,600 - DEBUG - matplotlib version 3.1.1
425 Removed: 2019-10-07 21:02:07,601 - DEBUG - interactive is False
426 Removed: 2019-10-07 21:02:07,601 - DEBUG - platform is linux
427 Removed: 2019-10-07 21:02:07,602 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
428 Removed: 2019-10-07 21:02:07,866 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
429 Removed: 2019-10-07 21:02:07,875 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
430 Removed: 2019-10-07 21:02:08,599 - DEBUG - Loaded backend qt5agg version unknown.
431 Removed: 2019-10-07 21:02:08,673 - DEBUG - Loaded backend tkagg version unknown.
432 Removed: 2019-10-07 21:02:08,676 - DEBUG - Loaded backend TkAgg version unknown.
433 Removed: 2019-10-07 21:02:08,858 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
434 Removed: 2019-10-07 21:02:08,862 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
435 Removed: 2019-10-07 21:02:08,865 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
436 Removed: 2019-10-07 21:02:09,015 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
437 Removed: 2019-10-07 21:02:09,019 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
438 Removed: 2019-10-07 21:02:09,021 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
439 Removed: 2019-10-07 21:02:09,023 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
440 Removed: 2019-10-07 21:03:13,449 - DEBUG - $HOME=/home/blendux
441 Removed: 2019-10-07 21:03:13,450 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
442 Removed: 2019-10-07 21:03:13,451 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
443 Removed: 2019-10-07 21:03:13,487 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
444 Removed: 2019-10-07 21:03:13,500 - DEBUG - matplotlib version 3.1.1
445 Removed: 2019-10-07 21:03:13,500 - DEBUG - interactive is False
446 Removed: 2019-10-07 21:03:13,501 - DEBUG - platform is linux
447 Removed: 2019-10-07 21:03:13,501 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
448 Removed: 2019-10-07 21:03:13,766 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
449 Removed: 2019-10-07 21:03:13,775 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
450 Removed: 2019-10-07 21:03:14,512 - DEBUG - Loaded backend qt5agg version unknown.
451 Removed: 2019-10-07 21:03:14,586 - DEBUG - Loaded backend tkagg version unknown.
452 Removed: 2019-10-07 21:03:14,588 - DEBUG - Loaded backend TkAgg version unknown.
453 Removed: 2019-10-07 21:03:14,772 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
454 Removed: 2019-10-07 21:03:14,776 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
455 Removed: 2019-10-07 21:03:14,779 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
456 Removed: 2019-10-07 21:03:14,931 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
457 Removed: 2019-10-07 21:03:14,935 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
458 Removed: 2019-10-07 21:03:14,937 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
459 Removed: 2019-10-07 21:03:14,939 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
460 Removed: 2019-10-07 21:04:26,434 - DEBUG - $HOME=/home/blendux
461 Removed: 2019-10-07 21:04:26,435 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
462 Removed: 2019-10-07 21:04:26,436 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
463 Removed: 2019-10-07 21:04:26,472 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
464 Removed: 2019-10-07 21:04:26,484 - DEBUG - matplotlib version 3.1.1
465 Removed: 2019-10-07 21:04:26,484 - DEBUG - interactive is False
466 Removed: 2019-10-07 21:04:26,485 - DEBUG - platform is linux
467 Removed: 2019-10-07 21:04:26,485 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
468 Removed: 2019-10-07 21:04:26,739 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
469 Removed: 2019-10-07 21:04:26,748 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
470 Removed: 2019-10-07 21:04:27,442 - DEBUG - Loaded backend qt5agg version unknown.
471 Removed: 2019-10-07 21:04:27,515 - DEBUG - Loaded backend tkagg version unknown.
472 Removed: 2019-10-07 21:04:27,518 - DEBUG - Loaded backend TkAgg version unknown.
473 Removed: 2019-10-07 21:04:27,703 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
474 Removed: 2019-10-07 21:04:27,707 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
475 Removed: 2019-10-07 21:04:27,710 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
476 Removed: 2019-10-07 21:04:27,865 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
477 Removed: 2019-10-07 21:04:27,869 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
478 Removed: 2019-10-07 21:04:27,872 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
479 Removed: 2019-10-07 21:04:27,873 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
480 Removed: 2019-10-07 21:05:32,155 - DEBUG - $HOME=/home/blendux
481 Removed: 2019-10-07 21:05:32,156 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
482 Removed: 2019-10-07 21:05:32,157 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
483 Removed: 2019-10-07 21:05:32,194 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
484 Removed: 2019-10-07 21:05:32,206 - DEBUG - matplotlib version 3.1.1
485 Removed: 2019-10-07 21:05:32,207 - DEBUG - interactive is False
486 Removed: 2019-10-07 21:05:32,208 - DEBUG - platform is linux
487 Removed: 2019-10-07 21:05:32,208 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
488 Removed: 2019-10-07 21:05:32,473 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
489 Removed: 2019-10-07 21:05:32,483 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
490 Removed: 2019-10-07 21:05:33,199 - DEBUG - Loaded backend qt5agg version unknown.
491 Removed: 2019-10-07 21:05:33,275 - DEBUG - Loaded backend tkagg version unknown.
492 Removed: 2019-10-07 21:05:33,278 - DEBUG - Loaded backend TkAgg version unknown.
493 Removed: 2019-10-07 21:05:33,467 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
494 Removed: 2019-10-07 21:05:33,471 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
495 Removed: 2019-10-07 21:05:33,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
496 Removed: 2019-10-07 21:05:33,631 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
497 Removed: 2019-10-07 21:05:33,635 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
498 Removed: 2019-10-07 21:05:33,638 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
499 Removed: 2019-10-07 21:05:33,639 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
500 Removed: 2019-10-07 21:06:54,866 - DEBUG - $HOME=/home/blendux
501 Removed: 2019-10-07 21:06:54,868 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
502 Removed: 2019-10-07 21:06:54,869 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
503 Removed: 2019-10-07 21:06:54,904 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
504 Removed: 2019-10-07 21:06:54,917 - DEBUG - matplotlib version 3.1.1
505 Removed: 2019-10-07 21:06:54,917 - DEBUG - interactive is False
506 Removed: 2019-10-07 21:06:54,918 - DEBUG - platform is linux
507 Removed: 2019-10-07 21:06:54,918 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
508 Removed: 2019-10-07 21:06:55,173 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
509 Removed: 2019-10-07 21:06:55,182 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
510 Removed: 2019-10-07 21:06:55,879 - DEBUG - Loaded backend qt5agg version unknown.
511 Removed: 2019-10-07 21:06:55,952 - DEBUG - Loaded backend tkagg version unknown.
512 Removed: 2019-10-07 21:06:55,954 - DEBUG - Loaded backend TkAgg version unknown.
513 Removed: 2019-10-07 21:06:56,169 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
514 Removed: 2019-10-07 21:06:56,173 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
515 Removed: 2019-10-07 21:06:56,176 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
516 Removed: 2019-10-07 21:06:56,328 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
517 Removed: 2019-10-07 21:06:56,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
518 Removed: 2019-10-07 21:06:56,334 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
519 Removed: 2019-10-07 21:08:25,125 - DEBUG - $HOME=/home/blendux
520 Removed: 2019-10-07 21:08:25,127 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
521 Removed: 2019-10-07 21:08:25,128 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
522 Removed: 2019-10-07 21:08:25,165 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
523 Removed: 2019-10-07 21:08:25,178 - DEBUG - matplotlib version 3.1.1
524 Removed: 2019-10-07 21:08:25,179 - DEBUG - interactive is False
525 Removed: 2019-10-07 21:08:25,179 - DEBUG - platform is linux
526 Removed: 2019-10-07 21:08:25,180 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
527 Removed: 2019-10-07 21:08:25,452 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
528 Removed: 2019-10-07 21:08:25,462 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
529 Removed: 2019-10-07 21:08:26,230 - DEBUG - Loaded backend qt5agg version unknown.
530 Removed: 2019-10-07 21:08:26,309 - DEBUG - Loaded backend tkagg version unknown.
531 Removed: 2019-10-07 21:08:26,311 - DEBUG - Loaded backend TkAgg version unknown.
532 Removed: 2019-10-07 21:08:26,504 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
533 Removed: 2019-10-07 21:08:26,508 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
534 Removed: 2019-10-07 21:08:26,511 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
535 Removed: 2019-10-07 21:08:26,671 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
536 Removed: 2019-10-07 21:08:26,676 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
537 Removed: 2019-10-07 21:08:26,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
538 Removed: 2019-10-07 21:08:53,671 - DEBUG - $HOME=/home/blendux
539 Removed: 2019-10-07 21:08:53,672 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
540 Removed: 2019-10-07 21:08:53,673 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
541 Removed: 2019-10-07 21:08:53,710 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
542 Removed: 2019-10-07 21:08:53,722 - DEBUG - matplotlib version 3.1.1
543 Removed: 2019-10-07 21:08:53,723 - DEBUG - interactive is False
544 Removed: 2019-10-07 21:08:53,724 - DEBUG - platform is linux
545 Removed: 2019-10-07 21:08:53,724 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
546 Removed: 2019-10-07 21:08:53,983 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
547 Removed: 2019-10-07 21:08:53,993 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
548 Removed: 2019-10-07 21:08:54,759 - DEBUG - Loaded backend qt5agg version unknown.
549 Removed: 2019-10-07 21:08:54,837 - DEBUG - Loaded backend tkagg version unknown.
550 Removed: 2019-10-07 21:08:54,840 - DEBUG - Loaded backend TkAgg version unknown.
551 Removed: 2019-10-07 21:08:55,035 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
552 Removed: 2019-10-07 21:08:55,039 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
553 Removed: 2019-10-07 21:08:55,042 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
554 Removed: 2019-10-07 21:08:55,202 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
555 Removed: 2019-10-07 21:08:55,207 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
556 Removed: 2019-10-07 21:08:55,209 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
557 Removed: 2019-10-07 21:11:20,312 - DEBUG - $HOME=/home/blendux
558 Removed: 2019-10-07 21:11:20,313 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
559 Removed: 2019-10-07 21:11:20,314 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
560 Removed: 2019-10-07 21:11:20,351 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
561 Removed: 2019-10-07 21:11:20,364 - DEBUG - matplotlib version 3.1.1
562 Removed: 2019-10-07 21:11:20,365 - DEBUG - interactive is False
563 Removed: 2019-10-07 21:11:20,365 - DEBUG - platform is linux
564 Removed: 2019-10-07 21:11:20,366 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
565 Removed: 2019-10-07 21:11:20,633 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
566 Removed: 2019-10-07 21:11:20,643 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
567 Removed: 2019-10-07 21:11:21,399 - DEBUG - Loaded backend qt5agg version unknown.
568 Removed: 2019-10-07 21:11:21,478 - DEBUG - Loaded backend tkagg version unknown.
569 Removed: 2019-10-07 21:11:21,480 - DEBUG - Loaded backend TkAgg version unknown.
570 Removed: 2019-10-07 21:11:21,673 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
571 Removed: 2019-10-07 21:11:21,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
572 Removed: 2019-10-07 21:11:21,681 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
573 Removed: 2019-10-07 21:11:21,840 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
574 Removed: 2019-10-07 21:11:21,843 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
575 Removed: 2019-10-07 21:11:21,847 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
576 Removed: 2019-10-07 21:13:15,147 - DEBUG - $HOME=/home/blendux
577 Removed: 2019-10-07 21:13:15,148 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
578 Removed: 2019-10-07 21:13:15,149 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
579 Removed: 2019-10-07 21:13:15,185 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
580 Removed: 2019-10-07 21:13:15,198 - DEBUG - matplotlib version 3.1.1
581 Removed: 2019-10-07 21:13:15,199 - DEBUG - interactive is False
582 Removed: 2019-10-07 21:13:15,199 - DEBUG - platform is linux
583 Removed: 2019-10-07 21:13:15,199 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
584 Removed: 2019-10-07 21:13:15,462 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
585 Removed: 2019-10-07 21:13:15,472 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
586 Removed: 2019-10-07 21:13:16,217 - DEBUG - Loaded backend qt5agg version unknown.
587 Removed: 2019-10-07 21:13:16,292 - DEBUG - Loaded backend tkagg version unknown.
588 Removed: 2019-10-07 21:13:16,294 - DEBUG - Loaded backend TkAgg version unknown.
589 Removed: 2019-10-07 21:13:16,483 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
590 Removed: 2019-10-07 21:13:16,487 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
591 Removed: 2019-10-07 21:13:16,490 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
592 Removed: 2019-10-07 21:13:16,646 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
593 Removed: 2019-10-07 21:13:16,651 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
594 Removed: 2019-10-07 21:13:16,654 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
595 Removed: 2019-10-07 21:20:44,442 - DEBUG - $HOME=/home/blendux
596 Removed: 2019-10-07 21:20:44,443 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
597 Removed: 2019-10-07 21:20:44,444 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
598 Removed: 2019-10-07 21:20:44,482 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
599 Removed: 2019-10-07 21:20:44,494 - DEBUG - matplotlib version 3.1.1
600 Removed: 2019-10-07 21:20:44,495 - DEBUG - interactive is False
601 Removed: 2019-10-07 21:20:44,495 - DEBUG - platform is linux
602 Removed: 2019-10-07 21:20:44,496 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
603 Removed: 2019-10-07 21:20:44,767 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
604 Removed: 2019-10-07 21:20:44,776 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
605 Removed: 2019-10-07 21:20:45,512 - DEBUG - Loaded backend qt5agg version unknown.
606 Removed: 2019-10-07 21:20:45,591 - DEBUG - Loaded backend tkagg version unknown.
607 Removed: 2019-10-07 21:20:45,594 - DEBUG - Loaded backend TkAgg version unknown.
608 Removed: 2019-10-07 21:20:45,787 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
609 Removed: 2019-10-07 21:20:45,791 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
610 Removed: 2019-10-07 21:20:45,794 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
611 Removed: 2019-10-07 21:20:45,954 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
612 Removed: 2019-10-07 21:20:45,959 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
613 Removed: 2019-10-07 21:20:45,961 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
614 Removed: 2019-10-08 19:24:09,451 - DEBUG - $HOME=/home/blendux
615 Removed: 2019-10-08 19:24:09,452 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
616 Removed: 2019-10-08 19:24:09,453 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
617 Removed: 2019-10-08 19:24:09,471 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
618 Removed: 2019-10-08 19:24:09,474 - DEBUG - matplotlib version 3.1.1
619 Removed: 2019-10-08 19:24:09,474 - DEBUG - interactive is False
620 Removed: 2019-10-08 19:24:09,474 - DEBUG - platform is linux
621 Removed: 2019-10-08 19:24:09,474 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
622 Removed: 2019-10-08 19:24:09,527 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
623 Removed: 2019-10-08 19:24:09,530 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
624 Removed: 2019-10-08 19:24:09,769 - DEBUG - Loaded backend qt5agg version unknown.
625 Removed: 2019-10-08 19:24:09,792 - DEBUG - Loaded backend tkagg version unknown.
626 Removed: 2019-10-08 19:24:09,793 - DEBUG - Loaded backend TkAgg version unknown.
627 Removed: 2019-10-08 19:24:09,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
628 Removed: 2019-10-08 19:24:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
629 Removed: 2019-10-08 19:24:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
630 Removed: 2019-10-08 19:24:09,865 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
631 Removed: 2019-10-08 19:24:09,865 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
632 Removed: 2019-10-08 19:24:09,866 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
633 Removed: 2019-10-08 21:27:53,113 - DEBUG - $HOME=/home/blendux
634 Removed: 2019-10-08 21:27:53,114 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
635 Removed: 2019-10-08 21:27:53,114 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
636 Removed: 2019-10-08 21:27:53,119 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
637 Removed: 2019-10-08 21:27:53,121 - DEBUG - matplotlib version 3.1.1
638 Removed: 2019-10-08 21:27:53,121 - DEBUG - interactive is False
639 Removed: 2019-10-08 21:27:53,121 - DEBUG - platform is linux
640 Removed: 2019-10-08 21:27:53,121 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
641 Removed: 2019-10-08 21:27:53,169 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
642 Removed: 2019-10-08 21:27:53,172 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
643 Removed: 2019-10-08 21:27:53,318 - DEBUG - Loaded backend qt5agg version unknown.
644 Removed: 2019-10-08 21:27:53,345 - DEBUG - Loaded backend tkagg version unknown.
645 Removed: 2019-10-08 21:27:53,345 - DEBUG - Loaded backend TkAgg version unknown.
646 Removed: 2019-10-08 21:27:53,368 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
647 Removed: 2019-10-08 21:27:53,369 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
648 Removed: 2019-10-08 21:27:53,369 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
649 Removed: 2019-10-08 21:27:53,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
650 Removed: 2019-10-08 21:27:53,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
651 Removed: 2019-10-08 21:27:53,389 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
652 Removed: 2019-10-08 21:29:46,056 - DEBUG - $HOME=/home/blendux
653 Removed: 2019-10-08 21:29:46,057 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
654 Removed: 2019-10-08 21:29:46,063 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
655 Removed: 2019-10-08 21:29:46,069 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
656 Removed: 2019-10-08 21:29:46,070 - DEBUG - matplotlib version 3.1.1
657 Removed: 2019-10-08 21:29:46,070 - DEBUG - interactive is False
658 Removed: 2019-10-08 21:29:46,070 - DEBUG - platform is linux
659 Removed: 2019-10-08 21:29:46,070 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
660 Removed: 2019-10-08 21:29:46,102 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
661 Removed: 2019-10-08 21:29:46,103 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
662 Removed: 2019-10-08 21:29:46,192 - DEBUG - Loaded backend qt5agg version unknown.
663 Removed: 2019-10-08 21:29:46,202 - DEBUG - Loaded backend tkagg version unknown.
664 Removed: 2019-10-08 21:29:46,202 - DEBUG - Loaded backend TkAgg version unknown.
665 Removed: 2019-10-08 21:29:46,224 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
666 Removed: 2019-10-08 21:29:46,225 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
667 Removed: 2019-10-08 21:29:46,225 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
668 Removed: 2019-10-08 21:29:46,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
669 Removed: 2019-10-08 21:29:46,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
670 Removed: 2019-10-08 21:29:46,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
671 Removed: 2019-10-08 21:29:48,179 - DEBUG - $HOME=/home/blendux
672 Removed: 2019-10-08 21:29:48,179 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
673 Removed: 2019-10-08 21:29:48,179 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
674 Removed: 2019-10-08 21:29:48,184 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
675 Removed: 2019-10-08 21:29:48,186 - DEBUG - matplotlib version 3.1.1
676 Removed: 2019-10-08 21:29:48,186 - DEBUG - interactive is False
677 Removed: 2019-10-08 21:29:48,186 - DEBUG - platform is linux
678 Removed: 2019-10-08 21:29:48,186 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
679 Removed: 2019-10-08 21:29:48,217 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
680 Removed: 2019-10-08 21:29:48,218 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
681 Removed: 2019-10-08 21:29:48,308 - DEBUG - Loaded backend qt5agg version unknown.
682 Removed: 2019-10-08 21:29:48,318 - DEBUG - Loaded backend tkagg version unknown.
683 Removed: 2019-10-08 21:29:48,318 - DEBUG - Loaded backend TkAgg version unknown.
684 Removed: 2019-10-08 21:29:48,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
685 Removed: 2019-10-08 21:29:48,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
686 Removed: 2019-10-08 21:29:48,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
687 Removed: 2019-10-08 21:29:48,359 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
688 Removed: 2019-10-08 21:29:48,360 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
689 Removed: 2019-10-08 21:29:48,360 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
690 Removed: 2019-10-10 15:34:13,460 - DEBUG - $HOME=/home/blendux
691 Removed: 2019-10-10 15:34:13,465 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
692 Removed: 2019-10-10 15:34:13,466 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
693 Removed: 2019-10-10 15:34:13,522 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
694 Removed: 2019-10-10 15:34:13,542 - DEBUG - matplotlib version 3.1.1
695 Removed: 2019-10-10 15:34:13,543 - DEBUG - interactive is False
696 Removed: 2019-10-10 15:34:13,544 - DEBUG - platform is linux
697 Removed: 2019-10-10 15:34:13,544 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
698 Removed: 2019-10-10 15:34:13,893 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
699 Removed: 2019-10-10 15:34:13,904 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
700 Removed: 2019-10-10 15:34:14,958 - DEBUG - Loaded backend qt5agg version unknown.
701 Removed: 2019-10-10 15:34:15,119 - DEBUG - Loaded backend tkagg version unknown.
702 Removed: 2019-10-10 15:34:15,123 - DEBUG - Loaded backend TkAgg version unknown.
703 Removed: 2019-10-10 15:34:15,312 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
704 Removed: 2019-10-10 15:34:15,318 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
705 Removed: 2019-10-10 15:34:15,320 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
706 Removed: 2019-10-10 15:34:15,485 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
707 Removed: 2019-10-10 15:34:15,489 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
708 Removed: 2019-10-10 15:34:15,492 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
709 Removed: 2019-10-10 15:34:46,117 - DEBUG - $HOME=/home/blendux
710 Removed: 2019-10-10 15:34:46,119 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
711 Removed: 2019-10-10 15:34:46,119 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
712 Removed: 2019-10-10 15:34:46,157 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
713 Removed: 2019-10-10 15:34:46,169 - DEBUG - matplotlib version 3.1.1
714 Removed: 2019-10-10 15:34:46,170 - DEBUG - interactive is False
715 Removed: 2019-10-10 15:34:46,170 - DEBUG - platform is linux
716 Removed: 2019-10-10 15:34:46,171 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
717 Removed: 2019-10-10 15:34:46,442 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
718 Removed: 2019-10-10 15:34:46,452 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
719 Removed: 2019-10-10 15:34:47,213 - DEBUG - Loaded backend qt5agg version unknown.
720 Removed: 2019-10-10 15:34:47,292 - DEBUG - Loaded backend tkagg version unknown.
721 Removed: 2019-10-10 15:34:47,294 - DEBUG - Loaded backend TkAgg version unknown.
722 Removed: 2019-10-10 15:34:47,472 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
723 Removed: 2019-10-10 15:34:47,476 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
724 Removed: 2019-10-10 15:34:47,479 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
725 Removed: 2019-10-10 15:34:47,637 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
726 Removed: 2019-10-10 15:34:47,642 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
727 Removed: 2019-10-10 15:34:47,644 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
728 Removed: 2019-10-17 09:00:55,117 - DEBUG - $HOME=/home/blendux
729 Removed: 2019-10-17 09:00:55,118 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
730 Removed: 2019-10-17 09:00:55,118 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
731 Removed: 2019-10-17 09:00:55,124 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
732 Removed: 2019-10-17 09:00:55,126 - DEBUG - matplotlib version 3.1.1
733 Removed: 2019-10-17 09:00:55,126 - DEBUG - interactive is False
734 Removed: 2019-10-17 09:00:55,126 - DEBUG - platform is linux
735 Removed: 2019-10-17 09:00:55,126 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
736 Removed: 2019-10-17 09:00:55,175 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
737 Removed: 2019-10-17 09:00:55,177 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
738 Removed: 2019-10-17 09:00:55,379 - DEBUG - Loaded backend qt5agg version unknown.
739 Removed: 2019-10-17 09:00:55,404 - DEBUG - Loaded backend tkagg version unknown.
740 Removed: 2019-10-17 09:00:55,404 - DEBUG - Loaded backend TkAgg version unknown.
741 Removed: 2019-10-17 09:00:55,428 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
742 Removed: 2019-10-17 09:00:55,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
743 Removed: 2019-10-17 09:00:55,430 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
744 Removed: 2019-10-17 09:00:55,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
745 Removed: 2019-10-17 09:00:55,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
746 Removed: 2019-10-17 09:00:55,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
747 Removed: 2019-10-17 16:01:17,143 - DEBUG - $HOME=/home/blendux
748 Removed: 2019-10-17 16:01:17,143 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
749 Removed: 2019-10-17 16:01:17,143 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
750 Removed: 2019-10-17 16:01:17,148 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
751 Removed: 2019-10-17 16:01:17,150 - DEBUG - matplotlib version 3.1.1
752 Removed: 2019-10-17 16:01:17,150 - DEBUG - interactive is False
753 Removed: 2019-10-17 16:01:17,150 - DEBUG - platform is linux
754 Removed: 2019-10-17 16:01:17,150 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
755 Removed: 2019-10-17 16:01:17,183 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
756 Removed: 2019-10-17 16:01:17,184 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
757 Removed: 2019-10-17 16:01:17,273 - DEBUG - Loaded backend qt5agg version unknown.
758 Removed: 2019-10-17 16:01:17,283 - DEBUG - Loaded backend tkagg version unknown.
759 Removed: 2019-10-17 16:01:17,283 - DEBUG - Loaded backend TkAgg version unknown.
760 Removed: 2019-10-17 16:01:17,305 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
761 Removed: 2019-10-17 16:01:17,306 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
762 Removed: 2019-10-17 16:01:17,306 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
763 Removed: 2019-10-17 16:01:17,326 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
764 Removed: 2019-10-17 16:01:17,327 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
765 Removed: 2019-10-17 16:01:17,327 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
766 Removed: 2019-10-17 16:02:36,074 - DEBUG - $HOME=/home/blendux
767 Removed: 2019-10-17 16:02:36,074 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
768 Removed: 2019-10-17 16:02:36,074 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
769 Removed: 2019-10-17 16:02:36,079 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
770 Removed: 2019-10-17 16:02:36,081 - DEBUG - matplotlib version 3.1.1
771 Removed: 2019-10-17 16:02:36,081 - DEBUG - interactive is False
772 Removed: 2019-10-17 16:02:36,081 - DEBUG - platform is linux
773 Removed: 2019-10-17 16:02:36,081 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
774 Removed: 2019-10-17 16:02:36,113 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
775 Removed: 2019-10-17 16:02:36,115 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
776 Removed: 2019-10-17 16:02:36,204 - DEBUG - Loaded backend qt5agg version unknown.
777 Removed: 2019-10-17 16:02:36,213 - DEBUG - Loaded backend tkagg version unknown.
778 Removed: 2019-10-17 16:02:36,213 - DEBUG - Loaded backend TkAgg version unknown.
779 Removed: 2019-10-17 16:02:36,236 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
780 Removed: 2019-10-17 16:02:36,236 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
781 Removed: 2019-10-17 16:02:36,237 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
782 Removed: 2019-10-17 16:02:36,254 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
783 Removed: 2019-10-17 16:02:36,255 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
784 Removed: 2019-10-17 16:02:36,255 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
785 Removed: 2019-10-17 16:03:12,780 - DEBUG - $HOME=/home/blendux
786 Removed: 2019-10-17 16:03:12,780 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
787 Removed: 2019-10-17 16:03:12,780 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
788 Removed: 2019-10-17 16:03:12,785 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
789 Removed: 2019-10-17 16:03:12,787 - DEBUG - matplotlib version 3.1.1
790 Removed: 2019-10-17 16:03:12,787 - DEBUG - interactive is False
791 Removed: 2019-10-17 16:03:12,787 - DEBUG - platform is linux
792 Removed: 2019-10-17 16:03:12,787 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
793 Removed: 2019-10-17 16:03:12,818 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
794 Removed: 2019-10-17 16:03:12,820 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
795 Removed: 2019-10-17 16:03:12,908 - DEBUG - Loaded backend qt5agg version unknown.
796 Removed: 2019-10-17 16:03:12,918 - DEBUG - Loaded backend tkagg version unknown.
797 Removed: 2019-10-17 16:03:12,918 - DEBUG - Loaded backend TkAgg version unknown.
798 Removed: 2019-10-17 16:03:12,941 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
799 Removed: 2019-10-17 16:03:12,942 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
800 Removed: 2019-10-17 16:03:12,942 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
801 Removed: 2019-10-17 16:03:12,961 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
802 Removed: 2019-10-17 16:03:12,962 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
803 Removed: 2019-10-17 16:03:12,962 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
804 Removed: 2019-10-17 16:04:14,556 - DEBUG - $HOME=/home/blendux
805 Removed: 2019-10-17 16:04:14,556 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
806 Removed: 2019-10-17 16:04:14,556 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
807 Removed: 2019-10-17 16:04:14,561 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
808 Removed: 2019-10-17 16:04:14,563 - DEBUG - matplotlib version 3.1.1
809 Removed: 2019-10-17 16:04:14,563 - DEBUG - interactive is False
810 Removed: 2019-10-17 16:04:14,563 - DEBUG - platform is linux
811 Removed: 2019-10-17 16:04:14,563 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
812 Removed: 2019-10-17 16:04:14,598 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
813 Removed: 2019-10-17 16:04:14,599 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
814 Removed: 2019-10-17 16:04:14,691 - DEBUG - Loaded backend qt5agg version unknown.
815 Removed: 2019-10-17 16:04:14,701 - DEBUG - Loaded backend tkagg version unknown.
816 Removed: 2019-10-17 16:04:14,702 - DEBUG - Loaded backend TkAgg version unknown.
817 Removed: 2019-10-17 16:04:14,725 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
818 Removed: 2019-10-17 16:04:14,726 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
819 Removed: 2019-10-17 16:04:14,726 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
820 Removed: 2019-10-17 16:04:14,747 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
821 Removed: 2019-10-17 16:04:14,748 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
822 Removed: 2019-10-17 16:04:14,748 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
823 Removed: 2019-10-17 16:04:45,417 - DEBUG - $HOME=/home/blendux
824 Removed: 2019-10-17 16:04:45,417 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
825 Removed: 2019-10-17 16:04:45,418 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
826 Removed: 2019-10-17 16:04:45,422 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
827 Removed: 2019-10-17 16:04:45,424 - DEBUG - matplotlib version 3.1.1
828 Removed: 2019-10-17 16:04:45,424 - DEBUG - interactive is False
829 Removed: 2019-10-17 16:04:45,424 - DEBUG - platform is linux
830 Removed: 2019-10-17 16:04:45,424 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
831 Removed: 2019-10-17 16:04:45,457 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
832 Removed: 2019-10-17 16:04:45,458 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
833 Removed: 2019-10-17 16:04:45,550 - DEBUG - Loaded backend qt5agg version unknown.
834 Removed: 2019-10-17 16:04:45,559 - DEBUG - Loaded backend tkagg version unknown.
835 Removed: 2019-10-17 16:04:45,559 - DEBUG - Loaded backend TkAgg version unknown.
836 Removed: 2019-10-17 16:04:45,581 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
837 Removed: 2019-10-17 16:04:45,581 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
838 Removed: 2019-10-17 16:04:45,582 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
839 Removed: 2019-10-17 16:04:45,600 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
840 Removed: 2019-10-17 16:04:45,600 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
841 Removed: 2019-10-17 16:04:45,600 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
842 Removed: 2019-10-17 16:05:14,346 - DEBUG - $HOME=/home/blendux
843 Removed: 2019-10-17 16:05:14,346 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
844 Removed: 2019-10-17 16:05:14,346 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
845 Removed: 2019-10-17 16:05:14,351 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
846 Removed: 2019-10-17 16:05:14,353 - DEBUG - matplotlib version 3.1.1
847 Removed: 2019-10-17 16:05:14,353 - DEBUG - interactive is False
848 Removed: 2019-10-17 16:05:14,353 - DEBUG - platform is linux
849 Removed: 2019-10-17 16:05:14,353 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
850 Removed: 2019-10-17 16:05:14,385 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
851 Removed: 2019-10-17 16:05:14,386 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
852 Removed: 2019-10-17 16:05:14,477 - DEBUG - Loaded backend qt5agg version unknown.
853 Removed: 2019-10-17 16:05:14,487 - DEBUG - Loaded backend tkagg version unknown.
854 Removed: 2019-10-17 16:05:14,488 - DEBUG - Loaded backend TkAgg version unknown.
855 Removed: 2019-10-17 16:05:14,512 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
856 Removed: 2019-10-17 16:05:14,512 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
857 Removed: 2019-10-17 16:05:14,513 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
858 Removed: 2019-10-17 16:05:14,533 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
859 Removed: 2019-10-17 16:05:14,533 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
860 Removed: 2019-10-17 16:05:14,533 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
861 Removed: 2019-10-17 16:06:05,762 - DEBUG - $HOME=/home/blendux
862 Removed: 2019-10-17 16:06:05,762 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
863 Removed: 2019-10-17 16:06:05,762 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
864 Removed: 2019-10-17 16:06:05,767 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
865 Removed: 2019-10-17 16:06:05,768 - DEBUG - matplotlib version 3.1.1
866 Removed: 2019-10-17 16:06:05,769 - DEBUG - interactive is False
867 Removed: 2019-10-17 16:06:05,769 - DEBUG - platform is linux
868 Removed: 2019-10-17 16:06:05,769 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
869 Removed: 2019-10-17 16:06:05,804 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
870 Removed: 2019-10-17 16:06:05,805 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
871 Removed: 2019-10-17 16:06:05,896 - DEBUG - Loaded backend qt5agg version unknown.
872 Removed: 2019-10-17 16:06:05,906 - DEBUG - Loaded backend tkagg version unknown.
873 Removed: 2019-10-17 16:06:05,906 - DEBUG - Loaded backend TkAgg version unknown.
874 Removed: 2019-10-17 16:06:05,929 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
875 Removed: 2019-10-17 16:06:05,929 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
876 Removed: 2019-10-17 16:06:05,930 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
877 Removed: 2019-10-17 16:06:05,949 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
878 Removed: 2019-10-17 16:06:05,950 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
879 Removed: 2019-10-17 16:06:05,950 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
880 Removed: 2019-10-17 16:07:34,673 - DEBUG - $HOME=/home/blendux
881 Removed: 2019-10-17 16:07:34,673 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
882 Removed: 2019-10-17 16:07:34,673 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
883 Removed: 2019-10-17 16:07:34,679 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
884 Removed: 2019-10-17 16:07:34,680 - DEBUG - matplotlib version 3.1.1
885 Removed: 2019-10-17 16:07:34,680 - DEBUG - interactive is False
886 Removed: 2019-10-17 16:07:34,680 - DEBUG - platform is linux
887 Removed: 2019-10-17 16:07:34,680 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
888 Removed: 2019-10-17 16:07:34,713 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
889 Removed: 2019-10-17 16:07:34,715 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
890 Removed: 2019-10-17 16:07:34,810 - DEBUG - Loaded backend qt5agg version unknown.
891 Removed: 2019-10-17 16:07:34,820 - DEBUG - Loaded backend tkagg version unknown.
892 Removed: 2019-10-17 16:07:34,820 - DEBUG - Loaded backend TkAgg version unknown.
893 Removed: 2019-10-17 16:07:34,843 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
894 Removed: 2019-10-17 16:07:34,843 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
895 Removed: 2019-10-17 16:07:34,844 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
896 Removed: 2019-10-17 16:07:34,863 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
897 Removed: 2019-10-17 16:07:34,864 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
898 Removed: 2019-10-17 16:07:34,864 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
899 Removed: 2019-10-17 16:08:54,254 - DEBUG - $HOME=/home/blendux
900 Removed: 2019-10-17 16:08:54,254 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
901 Removed: 2019-10-17 16:08:54,254 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
902 Removed: 2019-10-17 16:08:54,259 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
903 Removed: 2019-10-17 16:08:54,261 - DEBUG - matplotlib version 3.1.1
904 Removed: 2019-10-17 16:08:54,261 - DEBUG - interactive is False
905 Removed: 2019-10-17 16:08:54,261 - DEBUG - platform is linux
906 Removed: 2019-10-17 16:08:54,261 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
907 Removed: 2019-10-17 16:08:54,296 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
908 Removed: 2019-10-17 16:08:54,297 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
909 Removed: 2019-10-17 16:08:54,390 - DEBUG - Loaded backend qt5agg version unknown.
910 Removed: 2019-10-17 16:08:54,400 - DEBUG - Loaded backend tkagg version unknown.
911 Removed: 2019-10-17 16:08:54,400 - DEBUG - Loaded backend TkAgg version unknown.
912 Removed: 2019-10-17 16:08:54,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
913 Removed: 2019-10-17 16:08:54,425 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
914 Removed: 2019-10-17 16:08:54,425 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
915 Removed: 2019-10-17 16:08:54,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
916 Removed: 2019-10-17 16:08:54,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
917 Removed: 2019-10-17 16:08:54,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
918 Removed: 2019-10-17 16:08:54,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
919 Removed: 2019-10-17 16:11:10,981 - DEBUG - $HOME=/home/blendux
920 Removed: 2019-10-17 16:11:10,982 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
921 Removed: 2019-10-17 16:11:10,982 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
922 Removed: 2019-10-17 16:11:10,987 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
923 Removed: 2019-10-17 16:11:10,988 - DEBUG - matplotlib version 3.1.1
924 Removed: 2019-10-17 16:11:10,988 - DEBUG - interactive is False
925 Removed: 2019-10-17 16:11:10,989 - DEBUG - platform is linux
926 Removed: 2019-10-17 16:11:10,989 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
927 Removed: 2019-10-17 16:11:11,020 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
928 Removed: 2019-10-17 16:11:11,021 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
929 Removed: 2019-10-17 16:11:11,138 - DEBUG - Loaded backend qt5agg version unknown.
930 Removed: 2019-10-17 16:11:11,147 - DEBUG - Loaded backend tkagg version unknown.
931 Removed: 2019-10-17 16:11:11,148 - DEBUG - Loaded backend TkAgg version unknown.
932 Removed: 2019-10-17 16:11:11,169 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
933 Removed: 2019-10-17 16:11:11,169 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
934 Removed: 2019-10-17 16:11:11,170 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
935 Removed: 2019-10-17 16:11:11,189 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
936 Removed: 2019-10-17 16:11:11,190 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
937 Removed: 2019-10-17 16:11:11,190 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
938 Removed: 2019-10-17 16:11:11,190 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
939 Removed: 2019-10-17 16:12:27,019 - DEBUG - $HOME=/home/blendux
940 Removed: 2019-10-17 16:12:27,019 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
941 Removed: 2019-10-17 16:12:27,019 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
942 Removed: 2019-10-17 16:12:27,024 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
943 Removed: 2019-10-17 16:12:27,026 - DEBUG - matplotlib version 3.1.1
944 Removed: 2019-10-17 16:12:27,026 - DEBUG - interactive is False
945 Removed: 2019-10-17 16:12:27,026 - DEBUG - platform is linux
946 Removed: 2019-10-17 16:12:27,026 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
947 Removed: 2019-10-17 16:12:27,059 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
948 Removed: 2019-10-17 16:12:27,060 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
949 Removed: 2019-10-17 16:12:27,175 - DEBUG - Loaded backend qt5agg version unknown.
950 Removed: 2019-10-17 16:12:27,185 - DEBUG - Loaded backend tkagg version unknown.
951 Removed: 2019-10-17 16:12:27,185 - DEBUG - Loaded backend TkAgg version unknown.
952 Removed: 2019-10-17 16:12:27,209 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
953 Removed: 2019-10-17 16:12:27,209 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
954 Removed: 2019-10-17 16:12:27,210 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
955 Removed: 2019-10-17 16:12:27,230 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
956 Removed: 2019-10-17 16:12:27,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
957 Removed: 2019-10-17 16:12:27,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
958 Removed: 2019-10-17 16:12:27,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
959 Removed: 2019-10-17 16:13:16,878 - DEBUG - $HOME=/home/blendux
960 Removed: 2019-10-17 16:13:16,878 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
961 Removed: 2019-10-17 16:13:16,878 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
962 Removed: 2019-10-17 16:13:16,883 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
963 Removed: 2019-10-17 16:13:16,885 - DEBUG - matplotlib version 3.1.1
964 Removed: 2019-10-17 16:13:16,885 - DEBUG - interactive is False
965 Removed: 2019-10-17 16:13:16,885 - DEBUG - platform is linux
966 Removed: 2019-10-17 16:13:16,885 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
967 Removed: 2019-10-17 16:13:16,918 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
968 Removed: 2019-10-17 16:13:16,920 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
969 Removed: 2019-10-17 16:13:17,010 - DEBUG - Loaded backend qt5agg version unknown.
970 Removed: 2019-10-17 16:13:17,020 - DEBUG - Loaded backend tkagg version unknown.
971 Removed: 2019-10-17 16:13:17,021 - DEBUG - Loaded backend TkAgg version unknown.
972 Removed: 2019-10-17 16:13:17,045 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
973 Removed: 2019-10-17 16:13:17,045 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
974 Removed: 2019-10-17 16:13:17,045 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
975 Removed: 2019-10-17 16:13:17,064 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
976 Removed: 2019-10-17 16:13:17,065 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
977 Removed: 2019-10-17 16:13:17,065 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
978 Removed: 2019-10-17 16:13:17,066 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
979 Removed: 2019-10-17 16:14:28,110 - DEBUG - $HOME=/home/blendux
980 Removed: 2019-10-17 16:14:28,111 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
981 Removed: 2019-10-17 16:14:28,111 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
982 Removed: 2019-10-17 16:14:28,116 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
983 Removed: 2019-10-17 16:14:28,117 - DEBUG - matplotlib version 3.1.1
984 Removed: 2019-10-17 16:14:28,117 - DEBUG - interactive is False
985 Removed: 2019-10-17 16:14:28,118 - DEBUG - platform is linux
986 Removed: 2019-10-17 16:14:28,118 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
987 Removed: 2019-10-17 16:14:28,149 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
988 Removed: 2019-10-17 16:14:28,150 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
989 Removed: 2019-10-17 16:14:28,240 - DEBUG - Loaded backend qt5agg version unknown.
990 Removed: 2019-10-17 16:14:28,250 - DEBUG - Loaded backend tkagg version unknown.
991 Removed: 2019-10-17 16:14:28,250 - DEBUG - Loaded backend TkAgg version unknown.
992 Removed: 2019-10-17 16:14:28,271 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
993 Removed: 2019-10-17 16:14:28,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
994 Removed: 2019-10-17 16:14:28,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
995 Removed: 2019-10-17 16:14:28,291 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
996 Removed: 2019-10-17 16:14:28,291 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
997 Removed: 2019-10-17 16:14:28,292 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
998 Removed: 2019-10-17 16:14:28,292 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
999 Removed: 2019-10-17 16:14:30,718 - DEBUG - $HOME=/home/blendux
1000 Removed: 2019-10-17 16:14:30,718 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1001 Removed: 2019-10-17 16:14:30,718 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1002 Removed: 2019-10-17 16:14:30,723 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1003 Removed: 2019-10-17 16:14:30,725 - DEBUG - matplotlib version 3.1.1
1004 Removed: 2019-10-17 16:14:30,725 - DEBUG - interactive is False
1005 Removed: 2019-10-17 16:14:30,725 - DEBUG - platform is linux
1006 Removed: 2019-10-17 16:14:30,725 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1007 Removed: 2019-10-17 16:14:30,757 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1008 Removed: 2019-10-17 16:14:30,759 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1009 Removed: 2019-10-17 16:14:30,849 - DEBUG - Loaded backend qt5agg version unknown.
1010 Removed: 2019-10-17 16:14:30,858 - DEBUG - Loaded backend tkagg version unknown.
1011 Removed: 2019-10-17 16:14:30,859 - DEBUG - Loaded backend TkAgg version unknown.
1012 Removed: 2019-10-17 16:14:30,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1013 Removed: 2019-10-17 16:14:30,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1014 Removed: 2019-10-17 16:14:30,882 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1015 Removed: 2019-10-17 16:14:30,901 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1016 Removed: 2019-10-17 16:14:30,901 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1017 Removed: 2019-10-17 16:14:30,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1018 Removed: 2019-10-17 16:14:30,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1019 Removed: 2019-10-17 16:14:32,455 - DEBUG - $HOME=/home/blendux
1020 Removed: 2019-10-17 16:14:32,455 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1021 Removed: 2019-10-17 16:14:32,455 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1022 Removed: 2019-10-17 16:14:32,460 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1023 Removed: 2019-10-17 16:14:32,462 - DEBUG - matplotlib version 3.1.1
1024 Removed: 2019-10-17 16:14:32,462 - DEBUG - interactive is False
1025 Removed: 2019-10-17 16:14:32,462 - DEBUG - platform is linux
1026 Removed: 2019-10-17 16:14:32,462 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1027 Removed: 2019-10-17 16:14:32,493 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1028 Removed: 2019-10-17 16:14:32,494 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1029 Removed: 2019-10-17 16:14:32,584 - DEBUG - Loaded backend qt5agg version unknown.
1030 Removed: 2019-10-17 16:14:32,594 - DEBUG - Loaded backend tkagg version unknown.
1031 Removed: 2019-10-17 16:14:32,594 - DEBUG - Loaded backend TkAgg version unknown.
1032 Removed: 2019-10-17 16:14:32,615 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1033 Removed: 2019-10-17 16:14:32,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1034 Removed: 2019-10-17 16:14:32,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1035 Removed: 2019-10-17 16:14:32,636 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1036 Removed: 2019-10-17 16:14:32,636 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1037 Removed: 2019-10-17 16:14:32,637 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1038 Removed: 2019-10-17 16:14:32,637 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1039 Removed: 2019-10-17 16:14:37,293 - DEBUG - $HOME=/home/blendux
1040 Removed: 2019-10-17 16:14:37,293 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1041 Removed: 2019-10-17 16:14:37,293 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1042 Removed: 2019-10-17 16:14:37,298 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1043 Removed: 2019-10-17 16:14:37,300 - DEBUG - matplotlib version 3.1.1
1044 Removed: 2019-10-17 16:14:37,300 - DEBUG - interactive is False
1045 Removed: 2019-10-17 16:14:37,300 - DEBUG - platform is linux
1046 Removed: 2019-10-17 16:14:37,300 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1047 Removed: 2019-10-17 16:14:37,332 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1048 Removed: 2019-10-17 16:14:37,333 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1049 Removed: 2019-10-17 16:14:37,422 - DEBUG - Loaded backend qt5agg version unknown.
1050 Removed: 2019-10-17 16:14:37,432 - DEBUG - Loaded backend tkagg version unknown.
1051 Removed: 2019-10-17 16:14:37,433 - DEBUG - Loaded backend TkAgg version unknown.
1052 Removed: 2019-10-17 16:14:37,454 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1053 Removed: 2019-10-17 16:14:37,454 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1054 Removed: 2019-10-17 16:14:37,455 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1055 Removed: 2019-10-17 16:14:37,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1056 Removed: 2019-10-17 16:14:37,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1057 Removed: 2019-10-17 16:14:37,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1058 Removed: 2019-10-17 16:14:37,475 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1059 Removed: 2019-10-17 16:14:38,754 - DEBUG - $HOME=/home/blendux
1060 Removed: 2019-10-17 16:14:38,754 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1061 Removed: 2019-10-17 16:14:38,754 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1062 Removed: 2019-10-17 16:14:38,759 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1063 Removed: 2019-10-17 16:14:38,761 - DEBUG - matplotlib version 3.1.1
1064 Removed: 2019-10-17 16:14:38,761 - DEBUG - interactive is False
1065 Removed: 2019-10-17 16:14:38,761 - DEBUG - platform is linux
1066 Removed: 2019-10-17 16:14:38,761 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1067 Removed: 2019-10-17 16:14:38,792 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1068 Removed: 2019-10-17 16:14:38,793 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1069 Removed: 2019-10-17 16:14:38,882 - DEBUG - Loaded backend qt5agg version unknown.
1070 Removed: 2019-10-17 16:14:38,892 - DEBUG - Loaded backend tkagg version unknown.
1071 Removed: 2019-10-17 16:14:38,892 - DEBUG - Loaded backend TkAgg version unknown.
1072 Removed: 2019-10-17 16:14:38,914 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1073 Removed: 2019-10-17 16:14:38,914 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1074 Removed: 2019-10-17 16:14:38,915 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1075 Removed: 2019-10-17 16:14:38,934 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1076 Removed: 2019-10-17 16:14:38,934 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1077 Removed: 2019-10-17 16:14:38,934 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1078 Removed: 2019-10-17 16:14:38,935 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1079 Removed: 2019-10-17 16:14:39,471 - DEBUG - $HOME=/home/blendux
1080 Removed: 2019-10-17 16:14:39,471 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1081 Removed: 2019-10-17 16:14:39,471 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1082 Removed: 2019-10-17 16:14:39,476 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1083 Removed: 2019-10-17 16:14:39,478 - DEBUG - matplotlib version 3.1.1
1084 Removed: 2019-10-17 16:14:39,478 - DEBUG - interactive is False
1085 Removed: 2019-10-17 16:14:39,478 - DEBUG - platform is linux
1086 Removed: 2019-10-17 16:14:39,478 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1087 Removed: 2019-10-17 16:14:39,509 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1088 Removed: 2019-10-17 16:14:39,510 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1089 Removed: 2019-10-17 16:14:39,598 - DEBUG - Loaded backend qt5agg version unknown.
1090 Removed: 2019-10-17 16:14:39,608 - DEBUG - Loaded backend tkagg version unknown.
1091 Removed: 2019-10-17 16:14:39,608 - DEBUG - Loaded backend TkAgg version unknown.
1092 Removed: 2019-10-17 16:14:39,630 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1093 Removed: 2019-10-17 16:14:39,630 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1094 Removed: 2019-10-17 16:14:39,631 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1095 Removed: 2019-10-17 16:14:39,650 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1096 Removed: 2019-10-17 16:14:39,650 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1097 Removed: 2019-10-17 16:14:39,651 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1098 Removed: 2019-10-17 16:14:39,651 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1099 Removed: 2019-10-17 16:14:40,264 - DEBUG - $HOME=/home/blendux
1100 Removed: 2019-10-17 16:14:40,264 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1101 Removed: 2019-10-17 16:14:40,264 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1102 Removed: 2019-10-17 16:14:40,269 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1103 Removed: 2019-10-17 16:14:40,271 - DEBUG - matplotlib version 3.1.1
1104 Removed: 2019-10-17 16:14:40,272 - DEBUG - interactive is False
1105 Removed: 2019-10-17 16:14:40,272 - DEBUG - platform is linux
1106 Removed: 2019-10-17 16:14:40,272 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1107 Removed: 2019-10-17 16:14:40,303 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1108 Removed: 2019-10-17 16:14:40,304 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1109 Removed: 2019-10-17 16:14:40,392 - DEBUG - Loaded backend qt5agg version unknown.
1110 Removed: 2019-10-17 16:14:40,402 - DEBUG - Loaded backend tkagg version unknown.
1111 Removed: 2019-10-17 16:14:40,402 - DEBUG - Loaded backend TkAgg version unknown.
1112 Removed: 2019-10-17 16:14:40,423 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1113 Removed: 2019-10-17 16:14:40,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1114 Removed: 2019-10-17 16:14:40,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1115 Removed: 2019-10-17 16:14:40,443 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1116 Removed: 2019-10-17 16:14:40,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1117 Removed: 2019-10-17 16:14:40,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1118 Removed: 2019-10-17 16:14:40,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1119 Removed: 2019-10-17 16:14:40,930 - DEBUG - $HOME=/home/blendux
1120 Removed: 2019-10-17 16:14:40,930 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1121 Removed: 2019-10-17 16:14:40,930 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1122 Removed: 2019-10-17 16:14:40,935 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1123 Removed: 2019-10-17 16:14:40,937 - DEBUG - matplotlib version 3.1.1
1124 Removed: 2019-10-17 16:14:40,937 - DEBUG - interactive is False
1125 Removed: 2019-10-17 16:14:40,937 - DEBUG - platform is linux
1126 Removed: 2019-10-17 16:14:40,937 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1127 Removed: 2019-10-17 16:14:40,969 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1128 Removed: 2019-10-17 16:14:40,970 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1129 Removed: 2019-10-17 16:14:41,059 - DEBUG - Loaded backend qt5agg version unknown.
1130 Removed: 2019-10-17 16:14:41,069 - DEBUG - Loaded backend tkagg version unknown.
1131 Removed: 2019-10-17 16:14:41,070 - DEBUG - Loaded backend TkAgg version unknown.
1132 Removed: 2019-10-17 16:14:41,091 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1133 Removed: 2019-10-17 16:14:41,092 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1134 Removed: 2019-10-17 16:14:41,092 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1135 Removed: 2019-10-17 16:14:41,112 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1136 Removed: 2019-10-17 16:14:41,112 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1137 Removed: 2019-10-17 16:14:41,125 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1138 Removed: 2019-10-17 16:14:41,125 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1139 Removed: 2019-10-17 16:14:42,329 - DEBUG - $HOME=/home/blendux
1140 Removed: 2019-10-17 16:14:42,329 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1141 Removed: 2019-10-17 16:14:42,329 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1142 Removed: 2019-10-17 16:14:42,334 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1143 Removed: 2019-10-17 16:14:42,336 - DEBUG - matplotlib version 3.1.1
1144 Removed: 2019-10-17 16:14:42,336 - DEBUG - interactive is False
1145 Removed: 2019-10-17 16:14:42,336 - DEBUG - platform is linux
1146 Removed: 2019-10-17 16:14:42,336 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1147 Removed: 2019-10-17 16:14:42,367 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1148 Removed: 2019-10-17 16:14:42,369 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1149 Removed: 2019-10-17 16:14:42,457 - DEBUG - Loaded backend qt5agg version unknown.
1150 Removed: 2019-10-17 16:14:42,467 - DEBUG - Loaded backend tkagg version unknown.
1151 Removed: 2019-10-17 16:14:42,467 - DEBUG - Loaded backend TkAgg version unknown.
1152 Removed: 2019-10-17 16:14:42,488 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1153 Removed: 2019-10-17 16:14:42,489 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1154 Removed: 2019-10-17 16:14:42,489 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1155 Removed: 2019-10-17 16:14:42,508 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1156 Removed: 2019-10-17 16:14:42,509 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1157 Removed: 2019-10-17 16:14:42,509 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1158 Removed: 2019-10-17 16:14:42,510 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1159 Removed: 2019-10-17 16:14:43,614 - DEBUG - $HOME=/home/blendux
1160 Removed: 2019-10-17 16:14:43,614 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1161 Removed: 2019-10-17 16:14:43,614 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1162 Removed: 2019-10-17 16:14:43,619 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1163 Removed: 2019-10-17 16:14:43,621 - DEBUG - matplotlib version 3.1.1
1164 Removed: 2019-10-17 16:14:43,621 - DEBUG - interactive is False
1165 Removed: 2019-10-17 16:14:43,621 - DEBUG - platform is linux
1166 Removed: 2019-10-17 16:14:43,621 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1167 Removed: 2019-10-17 16:14:43,653 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1168 Removed: 2019-10-17 16:14:43,654 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1169 Removed: 2019-10-17 16:14:43,743 - DEBUG - Loaded backend qt5agg version unknown.
1170 Removed: 2019-10-17 16:14:43,753 - DEBUG - Loaded backend tkagg version unknown.
1171 Removed: 2019-10-17 16:14:43,754 - DEBUG - Loaded backend TkAgg version unknown.
1172 Removed: 2019-10-17 16:14:43,776 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1173 Removed: 2019-10-17 16:14:43,776 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1174 Removed: 2019-10-17 16:14:43,776 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1175 Removed: 2019-10-17 16:14:43,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1176 Removed: 2019-10-17 16:14:43,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1177 Removed: 2019-10-17 16:14:43,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1178 Removed: 2019-10-17 16:14:43,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1179 Removed: 2019-10-17 16:20:59,549 - DEBUG - $HOME=/home/blendux
1180 Removed: 2019-10-17 16:20:59,549 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1181 Removed: 2019-10-17 16:20:59,550 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1182 Removed: 2019-10-17 16:20:59,555 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1183 Removed: 2019-10-17 16:20:59,556 - DEBUG - matplotlib version 3.1.1
1184 Removed: 2019-10-17 16:20:59,556 - DEBUG - interactive is False
1185 Removed: 2019-10-17 16:20:59,556 - DEBUG - platform is linux
1186 Removed: 2019-10-17 16:20:59,556 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1187 Removed: 2019-10-17 16:20:59,588 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1188 Removed: 2019-10-17 16:20:59,590 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1189 Removed: 2019-10-17 16:20:59,678 - DEBUG - Loaded backend qt5agg version unknown.
1190 Removed: 2019-10-17 16:20:59,688 - DEBUG - Loaded backend tkagg version unknown.
1191 Removed: 2019-10-17 16:20:59,688 - DEBUG - Loaded backend TkAgg version unknown.
1192 Removed: 2019-10-17 16:20:59,710 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1193 Removed: 2019-10-17 16:20:59,710 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1194 Removed: 2019-10-17 16:20:59,710 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1195 Removed: 2019-10-17 16:20:59,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1196 Removed: 2019-10-17 16:20:59,731 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1197 Removed: 2019-10-17 16:20:59,731 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1198 Removed: 2019-10-17 16:20:59,731 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1199 Removed: 2019-10-17 17:17:35,396 - DEBUG - $HOME=/home/blendux
1200 Removed: 2019-10-17 17:17:35,399 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1201 Removed: 2019-10-17 17:17:35,400 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1202 Removed: 2019-10-17 17:17:35,437 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1203 Removed: 2019-10-17 17:17:35,478 - DEBUG - matplotlib version 3.1.1
1204 Removed: 2019-10-17 17:17:35,479 - DEBUG - interactive is False
1205 Removed: 2019-10-17 17:17:35,479 - DEBUG - platform is linux
1206 Removed: 2019-10-17 17:17:35,480 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1207 Removed: 2019-10-17 17:17:35,764 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1208 Removed: 2019-10-17 17:17:35,774 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1209 Removed: 2019-10-17 17:17:36,613 - DEBUG - Loaded backend qt5agg version unknown.
1210 Removed: 2019-10-17 17:17:36,712 - DEBUG - Loaded backend tkagg version unknown.
1211 Removed: 2019-10-17 17:17:36,715 - DEBUG - Loaded backend TkAgg version unknown.
1212 Removed: 2019-10-17 17:17:36,889 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1213 Removed: 2019-10-17 17:17:36,895 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1214 Removed: 2019-10-17 17:17:36,897 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1215 Removed: 2019-10-17 17:17:37,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1216 Removed: 2019-10-17 17:17:37,057 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1217 Removed: 2019-10-17 17:17:37,059 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1218 Removed: 2019-10-17 17:17:37,061 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1219 Removed: 2019-10-17 17:17:44,492 - DEBUG - $HOME=/home/blendux
1220 Removed: 2019-10-17 17:17:44,493 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1221 Removed: 2019-10-17 17:17:44,494 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1222 Removed: 2019-10-17 17:17:44,529 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1223 Removed: 2019-10-17 17:17:44,541 - DEBUG - matplotlib version 3.1.1
1224 Removed: 2019-10-17 17:17:44,541 - DEBUG - interactive is False
1225 Removed: 2019-10-17 17:17:44,542 - DEBUG - platform is linux
1226 Removed: 2019-10-17 17:17:44,542 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1227 Removed: 2019-10-17 17:17:44,794 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1228 Removed: 2019-10-17 17:17:44,803 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1229 Removed: 2019-10-17 17:17:45,527 - DEBUG - Loaded backend qt5agg version unknown.
1230 Removed: 2019-10-17 17:17:45,599 - DEBUG - Loaded backend tkagg version unknown.
1231 Removed: 2019-10-17 17:17:45,602 - DEBUG - Loaded backend TkAgg version unknown.
1232 Removed: 2019-10-17 17:17:45,770 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af_info.txt
1233 Removed: 2019-10-17 17:17:45,773 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar1_info.txt
1234 Removed: 2019-10-17 17:17:45,776 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar2_info.txt
1235 Removed: 2019-10-17 17:17:45,929 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1236 Removed: 2019-10-17 17:17:45,933 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1237 Removed: 2019-10-17 17:17:45,936 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1238 Removed: 2019-10-17 17:17:45,937 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1239 Removed: 2019-10-17 17:35:52,352 - DEBUG - $HOME=/home/blendux
1240 Removed: 2019-10-17 17:35:52,353 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1241 Removed: 2019-10-17 17:35:52,354 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1242 Removed: 2019-10-17 17:35:52,388 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1243 Removed: 2019-10-17 17:35:52,400 - DEBUG - matplotlib version 3.1.1
1244 Removed: 2019-10-17 17:35:52,400 - DEBUG - interactive is False
1245 Removed: 2019-10-17 17:35:52,401 - DEBUG - platform is linux
1246 Removed: 2019-10-17 17:35:52,401 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1247 Removed: 2019-10-17 17:35:52,650 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1248 Removed: 2019-10-17 17:35:52,659 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1249 Removed: 2019-10-17 17:35:53,352 - DEBUG - Loaded backend qt5agg version unknown.
1250 Removed: 2019-10-17 17:35:53,424 - DEBUG - Loaded backend tkagg version unknown.
1251 Removed: 2019-10-17 17:35:53,426 - DEBUG - Loaded backend TkAgg version unknown.
1252 Removed: 2019-10-17 17:36:09,189 - DEBUG - $HOME=/home/blendux
1253 Removed: 2019-10-17 17:36:09,191 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1254 Removed: 2019-10-17 17:36:09,192 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1255 Removed: 2019-10-17 17:36:09,226 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1256 Removed: 2019-10-17 17:36:09,238 - DEBUG - matplotlib version 3.1.1
1257 Removed: 2019-10-17 17:36:09,239 - DEBUG - interactive is False
1258 Removed: 2019-10-17 17:36:09,239 - DEBUG - platform is linux
1259 Removed: 2019-10-17 17:36:09,240 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1260 Removed: 2019-10-17 17:36:09,490 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1261 Removed: 2019-10-17 17:36:09,499 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1262 Removed: 2019-10-17 17:36:10,220 - DEBUG - Loaded backend qt5agg version unknown.
1263 Removed: 2019-10-17 17:36:10,292 - DEBUG - Loaded backend tkagg version unknown.
1264 Removed: 2019-10-17 17:36:10,295 - DEBUG - Loaded backend TkAgg version unknown.
1265 Removed: 2019-10-17 17:36:10,546 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1266 Removed: 2019-10-17 17:36:10,550 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1267 Removed: 2019-10-17 17:36:10,552 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1268 Removed: 2019-10-17 17:36:10,554 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1269 Removed: 2019-10-17 17:37:05,124 - DEBUG - $HOME=/home/blendux
1270 Removed: 2019-10-17 17:37:05,125 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1271 Removed: 2019-10-17 17:37:05,126 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1272 Removed: 2019-10-17 17:37:05,161 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1273 Removed: 2019-10-17 17:37:05,172 - DEBUG - matplotlib version 3.1.1
1274 Removed: 2019-10-17 17:37:05,173 - DEBUG - interactive is False
1275 Removed: 2019-10-17 17:37:05,173 - DEBUG - platform is linux
1276 Removed: 2019-10-17 17:37:05,173 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1277 Removed: 2019-10-17 17:37:05,423 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1278 Removed: 2019-10-17 17:37:05,432 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1279 Removed: 2019-10-17 17:37:06,147 - DEBUG - Loaded backend qt5agg version unknown.
1280 Removed: 2019-10-17 17:37:06,219 - DEBUG - Loaded backend tkagg version unknown.
1281 Removed: 2019-10-17 17:37:06,222 - DEBUG - Loaded backend TkAgg version unknown.
1282 Removed: 2019-10-17 17:37:06,471 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1283 Removed: 2019-10-17 17:37:06,475 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1284 Removed: 2019-10-17 17:37:06,477 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1285 Removed: 2019-10-17 17:37:06,479 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1286 Removed: 2019-10-17 17:38:08,082 - DEBUG - $HOME=/home/blendux
1287 Removed: 2019-10-17 17:38:08,084 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1288 Removed: 2019-10-17 17:38:08,085 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1289 Removed: 2019-10-17 17:38:08,119 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1290 Removed: 2019-10-17 17:38:08,131 - DEBUG - matplotlib version 3.1.1
1291 Removed: 2019-10-17 17:38:08,132 - DEBUG - interactive is False
1292 Removed: 2019-10-17 17:38:08,132 - DEBUG - platform is linux
1293 Removed: 2019-10-17 17:38:08,132 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1294 Removed: 2019-10-17 17:38:08,380 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1295 Removed: 2019-10-17 17:38:08,389 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1296 Removed: 2019-10-17 17:38:09,066 - DEBUG - Loaded backend qt5agg version unknown.
1297 Removed: 2019-10-17 17:38:09,138 - DEBUG - Loaded backend tkagg version unknown.
1298 Removed: 2019-10-17 17:38:09,140 - DEBUG - Loaded backend TkAgg version unknown.
1299 Removed: 2019-10-17 17:38:09,392 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1300 Removed: 2019-10-17 17:38:09,396 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1301 Removed: 2019-10-17 17:38:09,399 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1302 Removed: 2019-10-17 17:38:09,400 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1303 Removed: 2019-10-17 17:38:27,768 - DEBUG - $HOME=/home/blendux
1304 Removed: 2019-10-17 17:38:27,770 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1305 Removed: 2019-10-17 17:38:27,770 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1306 Removed: 2019-10-17 17:38:27,805 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1307 Removed: 2019-10-17 17:38:27,817 - DEBUG - matplotlib version 3.1.1
1308 Removed: 2019-10-17 17:38:27,818 - DEBUG - interactive is False
1309 Removed: 2019-10-17 17:38:27,818 - DEBUG - platform is linux
1310 Removed: 2019-10-17 17:38:27,818 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1311 Removed: 2019-10-17 17:38:28,066 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1312 Removed: 2019-10-17 17:38:28,074 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1313 Removed: 2019-10-17 17:38:28,754 - DEBUG - Loaded backend qt5agg version unknown.
1314 Removed: 2019-10-17 17:38:28,826 - DEBUG - Loaded backend tkagg version unknown.
1315 Removed: 2019-10-17 17:38:28,828 - DEBUG - Loaded backend TkAgg version unknown.
1316 Removed: 2019-10-17 17:38:29,080 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1317 Removed: 2019-10-17 17:38:29,084 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1318 Removed: 2019-10-17 17:38:29,086 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1319 Removed: 2019-10-17 17:38:29,088 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1320 Removed: 2019-10-17 17:38:43,973 - DEBUG - $HOME=/home/blendux
1321 Removed: 2019-10-17 17:38:43,975 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1322 Removed: 2019-10-17 17:38:43,975 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1323 Removed: 2019-10-17 17:38:44,010 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1324 Removed: 2019-10-17 17:38:44,021 - DEBUG - matplotlib version 3.1.1
1325 Removed: 2019-10-17 17:38:44,022 - DEBUG - interactive is False
1326 Removed: 2019-10-17 17:38:44,022 - DEBUG - platform is linux
1327 Removed: 2019-10-17 17:38:44,023 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1328 Removed: 2019-10-17 17:38:44,270 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1329 Removed: 2019-10-17 17:38:44,279 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1330 Removed: 2019-10-17 17:38:44,962 - DEBUG - Loaded backend qt5agg version unknown.
1331 Removed: 2019-10-17 17:38:45,033 - DEBUG - Loaded backend tkagg version unknown.
1332 Removed: 2019-10-17 17:38:45,036 - DEBUG - Loaded backend TkAgg version unknown.
1333 Removed: 2019-10-17 17:38:45,286 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1334 Removed: 2019-10-17 17:38:45,290 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1335 Removed: 2019-10-17 17:38:45,292 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1336 Removed: 2019-10-17 17:38:45,294 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1337 Removed: 2019-10-17 17:38:45,849 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
1338 Removed: 2019-10-17 17:38:45,851 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
1339 Removed: 2019-10-17 17:38:45,852 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
1340 Removed: 2019-10-17 17:38:45,852 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
1341 Removed: 2019-10-17 17:38:45,852 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
1342 Removed: 2019-10-17 17:38:45,853 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
1343 Removed: 2019-10-17 17:38:45,853 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1344 Removed: 2019-10-17 17:38:45,854 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
1345 Removed: 2019-10-17 17:38:45,854 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
1346 Removed: 2019-10-17 17:38:45,855 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
1347 Removed: 2019-10-17 17:38:45,855 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
1348 Removed: 2019-10-17 17:38:45,855 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
1349 Removed: 2019-10-17 17:38:45,856 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
1350 Removed: 2019-10-17 17:38:45,856 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
1351 Removed: 2019-10-17 17:38:45,857 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
1352 Removed: 2019-10-17 17:38:45,857 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
1353 Removed: 2019-10-17 17:38:45,858 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
1354 Removed: 2019-10-17 17:38:45,858 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
1355 Removed: 2019-10-17 17:38:45,858 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
1356 Removed: 2019-10-17 17:38:45,859 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
1357 Removed: 2019-10-17 17:38:45,859 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
1358 Removed: 2019-10-17 17:38:45,860 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
1359 Removed: 2019-10-17 17:38:45,860 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
1360 Removed: 2019-10-17 17:38:45,860 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
1361 Removed: 2019-10-17 17:38:45,861 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
1362 Removed: 2019-10-17 17:38:45,861 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
1363 Removed: 2019-10-17 17:38:45,862 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1364 Removed: 2019-10-17 17:38:45,862 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
1365 Removed: 2019-10-17 17:38:45,862 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
1366 Removed: 2019-10-17 17:38:45,863 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
1367 Removed: 2019-10-17 17:38:45,863 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
1368 Removed: 2019-10-17 17:38:45,864 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
1369 Removed: 2019-10-17 17:38:45,864 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
1370 Removed: 2019-10-17 17:38:45,864 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
1371 Removed: 2019-10-17 17:38:45,865 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
1372 Removed: 2019-10-17 17:38:45,865 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
1373 Removed: 2019-10-17 17:38:45,866 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
1374 Removed: 2019-10-17 17:38:45,866 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
1375 Removed: 2019-10-17 17:38:45,866 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
1376 Removed: 2019-10-17 17:38:45,867 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
1377 Removed: 2019-10-17 17:38:45,867 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
1378 Removed: 2019-10-17 17:38:45,868 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1379 Removed: 2019-10-17 17:38:45,868 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1380 Removed: 2019-10-17 17:38:45,868 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
1381 Removed: 2019-10-17 17:38:45,869 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
1382 Removed: 2019-10-17 17:38:45,869 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
1383 Removed: 2019-10-17 17:38:45,870 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
1384 Removed: 2019-10-17 17:38:45,870 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
1385 Removed: 2019-10-17 17:38:45,870 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
1386 Removed: 2019-10-17 17:38:45,871 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
1387 Removed: 2019-10-17 17:38:45,871 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
1388 Removed: 2019-10-17 17:38:45,872 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
1389 Removed: 2019-10-17 17:38:45,872 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
1390 Removed: 2019-10-17 17:38:45,872 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
1391 Removed: 2019-10-17 17:38:45,873 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
1392 Removed: 2019-10-17 17:38:45,873 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
1393 Removed: 2019-10-17 17:38:45,874 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
1394 Removed: 2019-10-17 17:38:45,874 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
1395 Removed: 2019-10-17 17:38:45,874 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
1396 Removed: 2019-10-17 17:38:45,875 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
1397 Removed: 2019-10-17 17:38:45,875 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
1398 Removed: 2019-10-17 17:38:45,876 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
1399 Removed: 2019-10-17 17:38:45,876 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
1400 Removed: 2019-10-17 17:38:45,876 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
1401 Removed: 2019-10-17 17:38:45,877 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
1402 Removed: 2019-10-17 17:38:45,877 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
1403 Removed: 2019-10-17 17:38:45,878 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1404 Removed: 2019-10-17 17:38:45,878 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
1405 Removed: 2019-10-17 17:38:45,879 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
1406 Removed: 2019-10-17 17:38:45,879 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
1407 Removed: 2019-10-17 17:38:45,879 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
1408 Removed: 2019-10-17 17:38:45,880 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
1409 Removed: 2019-10-17 17:38:45,880 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
1410 Removed: 2019-10-17 17:38:45,880 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
1411 Removed: 2019-10-17 17:38:45,881 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
1412 Removed: 2019-10-17 17:38:45,881 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
1413 Removed: 2019-10-17 17:38:45,882 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
1414 Removed: 2019-10-17 17:38:45,882 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
1415 Removed: 2019-10-17 17:38:45,883 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
1416 Removed: 2019-10-17 17:38:45,883 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
1417 Removed: 2019-10-17 17:38:45,883 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
1418 Removed: 2019-10-17 17:38:45,884 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
1419 Removed: 2019-10-17 17:38:45,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
1420 Removed: 2019-10-17 17:38:45,885 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
1421 Removed: 2019-10-17 17:38:45,885 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
1422 Removed: 2019-10-17 17:38:45,885 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
1423 Removed: 2019-10-17 17:38:45,886 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
1424 Removed: 2019-10-17 17:38:45,886 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
1425 Removed: 2019-10-17 17:38:45,887 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
1426 Removed: 2019-10-17 17:38:45,887 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
1427 Removed: 2019-10-17 17:38:45,887 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
1428 Removed: 2019-10-17 17:38:45,888 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
1429 Removed: 2019-10-17 17:38:45,888 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
1430 Removed: 2019-10-17 17:38:45,889 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
1431 Removed: 2019-10-17 17:38:45,889 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
1432 Removed: 2019-10-17 17:38:45,889 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
1433 Removed: 2019-10-17 17:38:45,890 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
1434 Removed: 2019-10-17 17:38:45,890 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
1435 Removed: 2019-10-17 17:38:45,891 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
1436 Removed: 2019-10-17 17:38:45,891 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
1437 Removed: 2019-10-17 17:38:45,891 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
1438 Removed: 2019-10-17 17:38:45,892 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
1439 Removed: 2019-10-17 17:38:45,892 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
1440 Removed: 2019-10-17 17:38:45,893 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
1441 Removed: 2019-10-17 17:38:45,893 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
1442 Removed: 2019-10-17 17:38:45,893 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
1443 Removed: 2019-10-17 17:38:45,894 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
1444 Removed: 2019-10-17 17:38:45,894 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
1445 Removed: 2019-10-17 17:38:45,895 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1446 Removed: 2019-10-17 17:38:45,895 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
1447 Removed: 2019-10-17 17:38:45,895 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
1448 Removed: 2019-10-17 17:38:45,896 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
1449 Removed: 2019-10-17 17:38:45,896 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
1450 Removed: 2019-10-17 17:38:45,897 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
1451 Removed: 2019-10-17 17:38:45,897 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
1452 Removed: 2019-10-17 17:38:45,897 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
1453 Removed: 2019-10-17 17:38:45,898 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
1454 Removed: 2019-10-17 17:38:45,898 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
1455 Removed: 2019-10-17 17:38:45,899 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
1456 Removed: 2019-10-17 17:38:45,899 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
1457 Removed: 2019-10-17 17:38:45,899 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
1458 Removed: 2019-10-17 17:38:45,900 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
1459 Removed: 2019-10-17 17:38:45,900 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
1460 Removed: 2019-10-17 17:38:45,901 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
1461 Removed: 2019-10-17 17:38:45,901 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
1462 Removed: 2019-10-17 17:38:45,901 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
1463 Removed: 2019-10-17 17:38:45,902 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
1464 Removed: 2019-10-17 17:38:45,902 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
1465 Removed: 2019-10-17 17:38:45,903 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
1466 Removed: 2019-10-17 17:38:45,903 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
1467 Removed: 2019-10-17 17:38:45,903 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
1468 Removed: 2019-10-17 17:38:45,904 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
1469 Removed: 2019-10-17 17:38:45,904 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
1470 Removed: 2019-10-17 17:38:45,905 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
1471 Removed: 2019-10-17 17:38:45,905 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
1472 Removed: 2019-10-17 17:38:45,905 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
1473 Removed: 2019-10-17 17:38:45,906 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
1474 Removed: 2019-10-17 17:38:45,906 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
1475 Removed: 2019-10-17 17:38:45,907 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
1476 Removed: 2019-10-17 17:38:45,907 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
1477 Removed: 2019-10-17 17:38:45,907 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
1478 Removed: 2019-10-17 17:38:45,908 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
1479 Removed: 2019-10-17 17:38:45,908 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
1480 Removed: 2019-10-17 17:38:45,909 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
1481 Removed: 2019-10-17 17:38:45,909 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
1482 Removed: 2019-10-17 17:38:45,909 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
1483 Removed: 2019-10-17 17:38:45,910 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
1484 Removed: 2019-10-17 17:38:45,910 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
1485 Removed: 2019-10-17 17:38:45,911 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
1486 Removed: 2019-10-17 17:38:45,911 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
1487 Removed: 2019-10-17 17:38:45,911 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
1488 Removed: 2019-10-17 17:38:45,912 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
1489 Removed: 2019-10-17 17:38:45,912 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
1490 Removed: 2019-10-17 17:38:45,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
1491 Removed: 2019-10-17 17:38:45,913 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
1492 Removed: 2019-10-17 17:40:10,645 - DEBUG - $HOME=/home/blendux
1493 Removed: 2019-10-17 17:40:10,646 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1494 Removed: 2019-10-17 17:40:10,647 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1495 Removed: 2019-10-17 17:40:10,681 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1496 Removed: 2019-10-17 17:40:10,693 - DEBUG - matplotlib version 3.1.1
1497 Removed: 2019-10-17 17:40:10,693 - DEBUG - interactive is False
1498 Removed: 2019-10-17 17:40:10,694 - DEBUG - platform is linux
1499 Removed: 2019-10-17 17:40:10,694 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1500 Removed: 2019-10-17 17:40:10,945 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1501 Removed: 2019-10-17 17:40:10,953 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1502 Removed: 2019-10-17 17:40:11,641 - DEBUG - Loaded backend qt5agg version unknown.
1503 Removed: 2019-10-17 17:40:11,743 - DEBUG - Loaded backend tkagg version unknown.
1504 Removed: 2019-10-17 17:40:11,746 - DEBUG - Loaded backend TkAgg version unknown.
1505 Removed: 2019-10-17 17:40:11,999 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1506 Removed: 2019-10-17 17:40:12,002 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1507 Removed: 2019-10-17 17:40:12,005 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1508 Removed: 2019-10-17 17:40:12,006 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1509 Removed: 2019-10-17 17:40:12,516 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
1510 Removed: 2019-10-17 17:40:12,517 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
1511 Removed: 2019-10-17 17:40:12,518 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
1512 Removed: 2019-10-17 17:40:12,518 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
1513 Removed: 2019-10-17 17:40:12,519 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
1514 Removed: 2019-10-17 17:40:12,519 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
1515 Removed: 2019-10-17 17:40:12,520 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1516 Removed: 2019-10-17 17:40:12,520 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
1517 Removed: 2019-10-17 17:40:12,520 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
1518 Removed: 2019-10-17 17:40:12,521 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
1519 Removed: 2019-10-17 17:40:12,521 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
1520 Removed: 2019-10-17 17:40:12,522 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
1521 Removed: 2019-10-17 17:40:12,522 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
1522 Removed: 2019-10-17 17:40:12,522 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
1523 Removed: 2019-10-17 17:40:12,523 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
1524 Removed: 2019-10-17 17:40:12,523 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
1525 Removed: 2019-10-17 17:40:12,524 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
1526 Removed: 2019-10-17 17:40:12,524 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
1527 Removed: 2019-10-17 17:40:12,524 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
1528 Removed: 2019-10-17 17:40:12,525 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
1529 Removed: 2019-10-17 17:40:12,525 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
1530 Removed: 2019-10-17 17:40:12,526 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
1531 Removed: 2019-10-17 17:40:12,526 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
1532 Removed: 2019-10-17 17:40:12,526 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
1533 Removed: 2019-10-17 17:40:12,527 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
1534 Removed: 2019-10-17 17:40:12,527 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
1535 Removed: 2019-10-17 17:40:12,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1536 Removed: 2019-10-17 17:40:12,528 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
1537 Removed: 2019-10-17 17:40:12,529 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
1538 Removed: 2019-10-17 17:40:12,529 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
1539 Removed: 2019-10-17 17:40:12,529 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
1540 Removed: 2019-10-17 17:40:12,530 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
1541 Removed: 2019-10-17 17:40:12,530 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
1542 Removed: 2019-10-17 17:40:12,531 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
1543 Removed: 2019-10-17 17:40:12,531 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
1544 Removed: 2019-10-17 17:40:12,531 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
1545 Removed: 2019-10-17 17:40:12,532 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
1546 Removed: 2019-10-17 17:40:12,532 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
1547 Removed: 2019-10-17 17:40:12,533 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
1548 Removed: 2019-10-17 17:40:12,533 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
1549 Removed: 2019-10-17 17:40:12,533 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
1550 Removed: 2019-10-17 17:40:12,534 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1551 Removed: 2019-10-17 17:40:12,534 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1552 Removed: 2019-10-17 17:40:12,535 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
1553 Removed: 2019-10-17 17:40:12,535 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
1554 Removed: 2019-10-17 17:40:12,535 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
1555 Removed: 2019-10-17 17:40:12,536 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
1556 Removed: 2019-10-17 17:40:12,536 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
1557 Removed: 2019-10-17 17:40:12,537 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
1558 Removed: 2019-10-17 17:40:12,537 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
1559 Removed: 2019-10-17 17:40:12,537 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
1560 Removed: 2019-10-17 17:40:12,538 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
1561 Removed: 2019-10-17 17:40:12,538 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
1562 Removed: 2019-10-17 17:40:12,539 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
1563 Removed: 2019-10-17 17:40:12,539 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
1564 Removed: 2019-10-17 17:40:12,539 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
1565 Removed: 2019-10-17 17:40:12,540 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
1566 Removed: 2019-10-17 17:40:12,540 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
1567 Removed: 2019-10-17 17:40:12,541 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
1568 Removed: 2019-10-17 17:40:12,541 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
1569 Removed: 2019-10-17 17:40:12,542 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
1570 Removed: 2019-10-17 17:40:12,542 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
1571 Removed: 2019-10-17 17:40:12,542 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
1572 Removed: 2019-10-17 17:40:12,543 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
1573 Removed: 2019-10-17 17:40:12,543 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
1574 Removed: 2019-10-17 17:40:12,544 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
1575 Removed: 2019-10-17 17:40:12,544 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1576 Removed: 2019-10-17 17:40:12,544 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
1577 Removed: 2019-10-17 17:40:12,545 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
1578 Removed: 2019-10-17 17:40:12,545 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
1579 Removed: 2019-10-17 17:40:12,546 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
1580 Removed: 2019-10-17 17:40:12,546 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
1581 Removed: 2019-10-17 17:40:12,546 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
1582 Removed: 2019-10-17 17:40:12,547 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
1583 Removed: 2019-10-17 17:40:12,547 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
1584 Removed: 2019-10-17 17:40:12,548 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
1585 Removed: 2019-10-17 17:40:12,548 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
1586 Removed: 2019-10-17 17:40:12,548 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
1587 Removed: 2019-10-17 17:40:12,549 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
1588 Removed: 2019-10-17 17:40:12,549 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
1589 Removed: 2019-10-17 17:40:12,550 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
1590 Removed: 2019-10-17 17:40:12,550 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
1591 Removed: 2019-10-17 17:40:12,550 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
1592 Removed: 2019-10-17 17:40:12,551 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
1593 Removed: 2019-10-17 17:40:12,551 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
1594 Removed: 2019-10-17 17:40:12,552 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
1595 Removed: 2019-10-17 17:40:12,552 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
1596 Removed: 2019-10-17 17:40:12,552 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
1597 Removed: 2019-10-17 17:40:12,553 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
1598 Removed: 2019-10-17 17:40:12,553 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
1599 Removed: 2019-10-17 17:40:12,554 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
1600 Removed: 2019-10-17 17:40:12,554 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
1601 Removed: 2019-10-17 17:40:12,555 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
1602 Removed: 2019-10-17 17:40:12,555 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
1603 Removed: 2019-10-17 17:40:12,555 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
1604 Removed: 2019-10-17 17:40:12,556 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
1605 Removed: 2019-10-17 17:40:12,556 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
1606 Removed: 2019-10-17 17:40:12,557 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
1607 Removed: 2019-10-17 17:40:12,557 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
1608 Removed: 2019-10-17 17:40:12,557 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
1609 Removed: 2019-10-17 17:40:12,558 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
1610 Removed: 2019-10-17 17:40:12,558 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
1611 Removed: 2019-10-17 17:40:12,559 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
1612 Removed: 2019-10-17 17:40:12,559 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
1613 Removed: 2019-10-17 17:40:12,560 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
1614 Removed: 2019-10-17 17:40:12,560 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
1615 Removed: 2019-10-17 17:40:12,561 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
1616 Removed: 2019-10-17 17:40:12,561 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
1617 Removed: 2019-10-17 17:40:12,562 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1618 Removed: 2019-10-17 17:40:12,562 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
1619 Removed: 2019-10-17 17:40:12,562 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
1620 Removed: 2019-10-17 17:40:12,563 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
1621 Removed: 2019-10-17 17:40:12,563 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
1622 Removed: 2019-10-17 17:40:12,564 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
1623 Removed: 2019-10-17 17:40:12,564 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
1624 Removed: 2019-10-17 17:40:12,564 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
1625 Removed: 2019-10-17 17:40:12,565 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
1626 Removed: 2019-10-17 17:40:12,565 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
1627 Removed: 2019-10-17 17:40:12,566 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
1628 Removed: 2019-10-17 17:40:12,566 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
1629 Removed: 2019-10-17 17:40:12,566 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
1630 Removed: 2019-10-17 17:40:12,567 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
1631 Removed: 2019-10-17 17:40:12,567 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
1632 Removed: 2019-10-17 17:40:12,568 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
1633 Removed: 2019-10-17 17:40:12,568 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
1634 Removed: 2019-10-17 17:40:12,569 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
1635 Removed: 2019-10-17 17:40:12,569 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
1636 Removed: 2019-10-17 17:40:12,569 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
1637 Removed: 2019-10-17 17:40:12,570 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
1638 Removed: 2019-10-17 17:40:12,570 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
1639 Removed: 2019-10-17 17:40:12,571 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
1640 Removed: 2019-10-17 17:40:12,571 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
1641 Removed: 2019-10-17 17:40:12,571 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
1642 Removed: 2019-10-17 17:40:12,572 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
1643 Removed: 2019-10-17 17:40:12,572 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
1644 Removed: 2019-10-17 17:40:12,573 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
1645 Removed: 2019-10-17 17:40:12,573 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
1646 Removed: 2019-10-17 17:40:12,573 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
1647 Removed: 2019-10-17 17:40:12,574 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
1648 Removed: 2019-10-17 17:40:12,574 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
1649 Removed: 2019-10-17 17:40:12,575 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
1650 Removed: 2019-10-17 17:40:12,575 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
1651 Removed: 2019-10-17 17:40:12,575 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
1652 Removed: 2019-10-17 17:40:12,576 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
1653 Removed: 2019-10-17 17:40:12,576 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
1654 Removed: 2019-10-17 17:40:12,577 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
1655 Removed: 2019-10-17 17:40:12,577 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
1656 Removed: 2019-10-17 17:40:12,577 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
1657 Removed: 2019-10-17 17:40:12,578 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
1658 Removed: 2019-10-17 17:40:12,578 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
1659 Removed: 2019-10-17 17:40:12,579 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
1660 Removed: 2019-10-17 17:40:12,579 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
1661 Removed: 2019-10-17 17:40:12,579 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
1662 Removed: 2019-10-17 17:40:12,580 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
1663 Removed: 2019-10-17 17:40:12,580 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
1664 Removed: 2019-10-17 17:40:35,250 - DEBUG - $HOME=/home/blendux
1665 Removed: 2019-10-17 17:40:35,252 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1666 Removed: 2019-10-17 17:40:35,252 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1667 Removed: 2019-10-17 17:40:35,287 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1668 Removed: 2019-10-17 17:40:35,299 - DEBUG - matplotlib version 3.1.1
1669 Removed: 2019-10-17 17:40:35,299 - DEBUG - interactive is False
1670 Removed: 2019-10-17 17:40:35,300 - DEBUG - platform is linux
1671 Removed: 2019-10-17 17:40:35,300 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1672 Removed: 2019-10-17 17:40:35,550 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1673 Removed: 2019-10-17 17:40:35,559 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1674 Removed: 2019-10-17 17:40:36,277 - DEBUG - Loaded backend qt5agg version unknown.
1675 Removed: 2019-10-17 17:40:36,349 - DEBUG - Loaded backend tkagg version unknown.
1676 Removed: 2019-10-17 17:40:36,351 - DEBUG - Loaded backend TkAgg version unknown.
1677 Removed: 2019-10-17 17:40:36,602 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1678 Removed: 2019-10-17 17:40:36,606 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1679 Removed: 2019-10-17 17:40:36,608 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1680 Removed: 2019-10-17 17:40:36,610 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1681 Removed: 2019-10-17 17:40:37,100 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
1682 Removed: 2019-10-17 17:40:37,102 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
1683 Removed: 2019-10-17 17:40:37,102 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
1684 Removed: 2019-10-17 17:40:37,103 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
1685 Removed: 2019-10-17 17:40:37,103 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
1686 Removed: 2019-10-17 17:40:37,103 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
1687 Removed: 2019-10-17 17:40:37,104 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1688 Removed: 2019-10-17 17:40:37,104 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
1689 Removed: 2019-10-17 17:40:37,105 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
1690 Removed: 2019-10-17 17:40:37,105 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
1691 Removed: 2019-10-17 17:40:37,106 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
1692 Removed: 2019-10-17 17:40:37,106 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
1693 Removed: 2019-10-17 17:40:37,106 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
1694 Removed: 2019-10-17 17:40:37,107 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
1695 Removed: 2019-10-17 17:40:37,107 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
1696 Removed: 2019-10-17 17:40:37,108 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
1697 Removed: 2019-10-17 17:40:37,108 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
1698 Removed: 2019-10-17 17:40:37,108 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
1699 Removed: 2019-10-17 17:40:37,109 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
1700 Removed: 2019-10-17 17:40:37,109 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
1701 Removed: 2019-10-17 17:40:37,110 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
1702 Removed: 2019-10-17 17:40:37,110 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
1703 Removed: 2019-10-17 17:40:37,110 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
1704 Removed: 2019-10-17 17:40:37,111 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
1705 Removed: 2019-10-17 17:40:37,111 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
1706 Removed: 2019-10-17 17:40:37,112 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
1707 Removed: 2019-10-17 17:40:37,112 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1708 Removed: 2019-10-17 17:40:37,112 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
1709 Removed: 2019-10-17 17:40:37,113 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
1710 Removed: 2019-10-17 17:40:37,113 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
1711 Removed: 2019-10-17 17:40:37,114 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
1712 Removed: 2019-10-17 17:40:37,114 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
1713 Removed: 2019-10-17 17:40:37,115 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
1714 Removed: 2019-10-17 17:40:37,115 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
1715 Removed: 2019-10-17 17:40:37,115 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
1716 Removed: 2019-10-17 17:40:37,116 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
1717 Removed: 2019-10-17 17:40:37,116 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
1718 Removed: 2019-10-17 17:40:37,116 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
1719 Removed: 2019-10-17 17:40:37,117 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
1720 Removed: 2019-10-17 17:40:37,117 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
1721 Removed: 2019-10-17 17:40:37,118 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
1722 Removed: 2019-10-17 17:40:37,118 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1723 Removed: 2019-10-17 17:40:37,119 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1724 Removed: 2019-10-17 17:40:37,119 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
1725 Removed: 2019-10-17 17:40:37,119 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
1726 Removed: 2019-10-17 17:40:37,120 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
1727 Removed: 2019-10-17 17:40:37,120 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
1728 Removed: 2019-10-17 17:40:37,121 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
1729 Removed: 2019-10-17 17:40:37,121 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
1730 Removed: 2019-10-17 17:40:37,121 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
1731 Removed: 2019-10-17 17:40:37,122 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
1732 Removed: 2019-10-17 17:40:37,122 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
1733 Removed: 2019-10-17 17:40:37,123 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
1734 Removed: 2019-10-17 17:40:37,123 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
1735 Removed: 2019-10-17 17:40:37,123 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
1736 Removed: 2019-10-17 17:40:37,124 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
1737 Removed: 2019-10-17 17:40:37,124 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
1738 Removed: 2019-10-17 17:40:37,125 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
1739 Removed: 2019-10-17 17:40:37,125 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
1740 Removed: 2019-10-17 17:40:37,125 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
1741 Removed: 2019-10-17 17:40:37,126 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
1742 Removed: 2019-10-17 17:40:37,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
1743 Removed: 2019-10-17 17:40:37,127 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
1744 Removed: 2019-10-17 17:40:37,127 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
1745 Removed: 2019-10-17 17:40:37,127 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
1746 Removed: 2019-10-17 17:40:37,128 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
1747 Removed: 2019-10-17 17:40:37,128 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1748 Removed: 2019-10-17 17:40:37,129 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
1749 Removed: 2019-10-17 17:40:37,129 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
1750 Removed: 2019-10-17 17:40:37,129 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
1751 Removed: 2019-10-17 17:40:37,130 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
1752 Removed: 2019-10-17 17:40:37,130 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
1753 Removed: 2019-10-17 17:40:37,131 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
1754 Removed: 2019-10-17 17:40:37,131 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
1755 Removed: 2019-10-17 17:40:37,132 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
1756 Removed: 2019-10-17 17:40:37,132 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
1757 Removed: 2019-10-17 17:40:37,132 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
1758 Removed: 2019-10-17 17:40:37,133 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
1759 Removed: 2019-10-17 17:40:37,133 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
1760 Removed: 2019-10-17 17:40:37,134 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
1761 Removed: 2019-10-17 17:40:37,134 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
1762 Removed: 2019-10-17 17:40:37,134 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
1763 Removed: 2019-10-17 17:40:37,135 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
1764 Removed: 2019-10-17 17:40:37,135 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
1765 Removed: 2019-10-17 17:40:37,136 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
1766 Removed: 2019-10-17 17:40:37,136 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
1767 Removed: 2019-10-17 17:40:37,136 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
1768 Removed: 2019-10-17 17:40:37,137 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
1769 Removed: 2019-10-17 17:40:37,137 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
1770 Removed: 2019-10-17 17:40:37,138 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
1771 Removed: 2019-10-17 17:40:37,138 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
1772 Removed: 2019-10-17 17:40:37,138 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
1773 Removed: 2019-10-17 17:40:37,139 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
1774 Removed: 2019-10-17 17:40:37,139 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
1775 Removed: 2019-10-17 17:40:37,140 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
1776 Removed: 2019-10-17 17:40:37,140 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
1777 Removed: 2019-10-17 17:40:37,140 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
1778 Removed: 2019-10-17 17:40:37,141 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
1779 Removed: 2019-10-17 17:40:37,141 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
1780 Removed: 2019-10-17 17:40:37,142 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
1781 Removed: 2019-10-17 17:40:37,142 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
1782 Removed: 2019-10-17 17:40:37,142 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
1783 Removed: 2019-10-17 17:40:37,143 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
1784 Removed: 2019-10-17 17:40:37,143 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
1785 Removed: 2019-10-17 17:40:37,144 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
1786 Removed: 2019-10-17 17:40:37,144 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
1787 Removed: 2019-10-17 17:40:37,145 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
1788 Removed: 2019-10-17 17:40:37,145 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
1789 Removed: 2019-10-17 17:40:37,145 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1790 Removed: 2019-10-17 17:40:37,146 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
1791 Removed: 2019-10-17 17:40:37,146 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
1792 Removed: 2019-10-17 17:40:37,147 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
1793 Removed: 2019-10-17 17:40:37,147 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
1794 Removed: 2019-10-17 17:40:37,147 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
1795 Removed: 2019-10-17 17:40:37,148 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
1796 Removed: 2019-10-17 17:40:37,148 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
1797 Removed: 2019-10-17 17:40:37,149 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
1798 Removed: 2019-10-17 17:40:37,149 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
1799 Removed: 2019-10-17 17:40:37,149 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
1800 Removed: 2019-10-17 17:40:37,150 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
1801 Removed: 2019-10-17 17:40:37,150 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
1802 Removed: 2019-10-17 17:40:37,150 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
1803 Removed: 2019-10-17 17:40:37,151 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
1804 Removed: 2019-10-17 17:40:37,151 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
1805 Removed: 2019-10-17 17:40:37,152 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
1806 Removed: 2019-10-17 17:40:37,152 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
1807 Removed: 2019-10-17 17:40:37,152 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
1808 Removed: 2019-10-17 17:40:37,153 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
1809 Removed: 2019-10-17 17:40:37,153 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
1810 Removed: 2019-10-17 17:40:37,154 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
1811 Removed: 2019-10-17 17:40:37,154 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
1812 Removed: 2019-10-17 17:40:37,155 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
1813 Removed: 2019-10-17 17:40:37,155 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
1814 Removed: 2019-10-17 17:40:37,155 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
1815 Removed: 2019-10-17 17:40:37,156 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
1816 Removed: 2019-10-17 17:40:37,156 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
1817 Removed: 2019-10-17 17:40:37,156 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
1818 Removed: 2019-10-17 17:40:37,157 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
1819 Removed: 2019-10-17 17:40:37,157 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
1820 Removed: 2019-10-17 17:40:37,158 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
1821 Removed: 2019-10-17 17:40:37,158 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
1822 Removed: 2019-10-17 17:40:37,159 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
1823 Removed: 2019-10-17 17:40:37,159 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
1824 Removed: 2019-10-17 17:40:37,159 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
1825 Removed: 2019-10-17 17:40:37,160 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
1826 Removed: 2019-10-17 17:40:37,160 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
1827 Removed: 2019-10-17 17:40:37,161 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
1828 Removed: 2019-10-17 17:40:37,161 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
1829 Removed: 2019-10-17 17:40:37,161 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
1830 Removed: 2019-10-17 17:40:37,162 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
1831 Removed: 2019-10-17 17:40:37,162 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
1832 Removed: 2019-10-17 17:40:37,163 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
1833 Removed: 2019-10-17 17:40:37,163 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
1834 Removed: 2019-10-17 17:40:37,163 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
1835 Removed: 2019-10-17 17:40:37,164 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
1836 Removed: 2019-10-17 17:43:31,199 - DEBUG - $HOME=/home/blendux
1837 Removed: 2019-10-17 17:43:31,200 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
1838 Removed: 2019-10-17 17:43:31,201 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
1839 Removed: 2019-10-17 17:43:31,235 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
1840 Removed: 2019-10-17 17:43:31,247 - DEBUG - matplotlib version 3.1.1
1841 Removed: 2019-10-17 17:43:31,247 - DEBUG - interactive is False
1842 Removed: 2019-10-17 17:43:31,248 - DEBUG - platform is linux
1843 Removed: 2019-10-17 17:43:31,248 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
1844 Removed: 2019-10-17 17:43:31,496 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
1845 Removed: 2019-10-17 17:43:31,505 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
1846 Removed: 2019-10-17 17:43:32,211 - DEBUG - Loaded backend qt5agg version unknown.
1847 Removed: 2019-10-17 17:43:32,283 - DEBUG - Loaded backend tkagg version unknown.
1848 Removed: 2019-10-17 17:43:32,285 - DEBUG - Loaded backend TkAgg version unknown.
1849 Removed: 2019-10-17 17:43:32,538 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
1850 Removed: 2019-10-17 17:43:32,542 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
1851 Removed: 2019-10-17 17:43:32,544 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
1852 Removed: 2019-10-17 17:43:32,546 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
1853 Removed: 2019-10-17 17:43:33,070 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
1854 Removed: 2019-10-17 17:43:33,071 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
1855 Removed: 2019-10-17 17:43:33,072 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
1856 Removed: 2019-10-17 17:43:33,073 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
1857 Removed: 2019-10-17 17:43:33,073 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
1858 Removed: 2019-10-17 17:43:33,073 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
1859 Removed: 2019-10-17 17:43:33,074 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1860 Removed: 2019-10-17 17:43:33,074 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
1861 Removed: 2019-10-17 17:43:33,075 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
1862 Removed: 2019-10-17 17:43:33,075 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
1863 Removed: 2019-10-17 17:43:33,076 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
1864 Removed: 2019-10-17 17:43:33,076 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
1865 Removed: 2019-10-17 17:43:33,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
1866 Removed: 2019-10-17 17:43:33,077 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
1867 Removed: 2019-10-17 17:43:33,077 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
1868 Removed: 2019-10-17 17:43:33,078 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
1869 Removed: 2019-10-17 17:43:33,078 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
1870 Removed: 2019-10-17 17:43:33,078 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
1871 Removed: 2019-10-17 17:43:33,079 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
1872 Removed: 2019-10-17 17:43:33,079 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
1873 Removed: 2019-10-17 17:43:33,080 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
1874 Removed: 2019-10-17 17:43:33,080 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
1875 Removed: 2019-10-17 17:43:33,080 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
1876 Removed: 2019-10-17 17:43:33,081 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
1877 Removed: 2019-10-17 17:43:33,081 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
1878 Removed: 2019-10-17 17:43:33,082 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
1879 Removed: 2019-10-17 17:43:33,082 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1880 Removed: 2019-10-17 17:43:33,083 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
1881 Removed: 2019-10-17 17:43:33,083 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
1882 Removed: 2019-10-17 17:43:33,083 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
1883 Removed: 2019-10-17 17:43:33,084 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
1884 Removed: 2019-10-17 17:43:33,084 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
1885 Removed: 2019-10-17 17:43:33,085 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
1886 Removed: 2019-10-17 17:43:33,085 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
1887 Removed: 2019-10-17 17:43:33,085 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
1888 Removed: 2019-10-17 17:43:33,086 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
1889 Removed: 2019-10-17 17:43:33,086 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
1890 Removed: 2019-10-17 17:43:33,087 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
1891 Removed: 2019-10-17 17:43:33,087 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
1892 Removed: 2019-10-17 17:43:33,087 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
1893 Removed: 2019-10-17 17:43:33,088 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
1894 Removed: 2019-10-17 17:43:33,088 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1895 Removed: 2019-10-17 17:43:33,089 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
1896 Removed: 2019-10-17 17:43:33,089 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
1897 Removed: 2019-10-17 17:43:33,089 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
1898 Removed: 2019-10-17 17:43:33,090 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
1899 Removed: 2019-10-17 17:43:33,090 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
1900 Removed: 2019-10-17 17:43:33,091 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
1901 Removed: 2019-10-17 17:43:33,091 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
1902 Removed: 2019-10-17 17:43:33,092 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
1903 Removed: 2019-10-17 17:43:33,092 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
1904 Removed: 2019-10-17 17:43:33,092 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
1905 Removed: 2019-10-17 17:43:33,093 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
1906 Removed: 2019-10-17 17:43:33,093 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
1907 Removed: 2019-10-17 17:43:33,094 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
1908 Removed: 2019-10-17 17:43:33,094 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
1909 Removed: 2019-10-17 17:43:33,094 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
1910 Removed: 2019-10-17 17:43:33,095 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
1911 Removed: 2019-10-17 17:43:33,095 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
1912 Removed: 2019-10-17 17:43:33,096 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
1913 Removed: 2019-10-17 17:43:33,096 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
1914 Removed: 2019-10-17 17:43:33,097 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
1915 Removed: 2019-10-17 17:43:33,097 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
1916 Removed: 2019-10-17 17:43:33,097 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
1917 Removed: 2019-10-17 17:43:33,098 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
1918 Removed: 2019-10-17 17:43:33,098 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
1919 Removed: 2019-10-17 17:43:33,099 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1920 Removed: 2019-10-17 17:43:33,099 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
1921 Removed: 2019-10-17 17:43:33,099 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
1922 Removed: 2019-10-17 17:43:33,100 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
1923 Removed: 2019-10-17 17:43:33,100 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
1924 Removed: 2019-10-17 17:43:33,101 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
1925 Removed: 2019-10-17 17:43:33,101 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
1926 Removed: 2019-10-17 17:43:33,101 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
1927 Removed: 2019-10-17 17:43:33,102 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
1928 Removed: 2019-10-17 17:43:33,102 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
1929 Removed: 2019-10-17 17:43:33,103 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
1930 Removed: 2019-10-17 17:43:33,103 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
1931 Removed: 2019-10-17 17:43:33,103 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
1932 Removed: 2019-10-17 17:43:33,104 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
1933 Removed: 2019-10-17 17:43:33,104 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
1934 Removed: 2019-10-17 17:43:33,105 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
1935 Removed: 2019-10-17 17:43:33,105 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
1936 Removed: 2019-10-17 17:43:33,105 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
1937 Removed: 2019-10-17 17:43:33,106 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
1938 Removed: 2019-10-17 17:43:33,106 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
1939 Removed: 2019-10-17 17:43:33,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
1940 Removed: 2019-10-17 17:43:33,107 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
1941 Removed: 2019-10-17 17:43:33,108 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
1942 Removed: 2019-10-17 17:43:33,108 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
1943 Removed: 2019-10-17 17:43:33,108 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
1944 Removed: 2019-10-17 17:43:33,109 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
1945 Removed: 2019-10-17 17:43:33,109 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
1946 Removed: 2019-10-17 17:43:33,110 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
1947 Removed: 2019-10-17 17:43:33,110 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
1948 Removed: 2019-10-17 17:43:33,110 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
1949 Removed: 2019-10-17 17:43:33,111 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
1950 Removed: 2019-10-17 17:43:33,111 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
1951 Removed: 2019-10-17 17:43:33,112 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
1952 Removed: 2019-10-17 17:43:33,112 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
1953 Removed: 2019-10-17 17:43:33,112 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
1954 Removed: 2019-10-17 17:43:33,113 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
1955 Removed: 2019-10-17 17:43:33,113 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
1956 Removed: 2019-10-17 17:43:33,114 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
1957 Removed: 2019-10-17 17:43:33,114 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
1958 Removed: 2019-10-17 17:43:33,114 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
1959 Removed: 2019-10-17 17:43:33,115 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
1960 Removed: 2019-10-17 17:43:33,115 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
1961 Removed: 2019-10-17 17:43:33,116 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
1962 Removed: 2019-10-17 17:43:33,116 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
1963 Removed: 2019-10-17 17:43:33,116 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
1964 Removed: 2019-10-17 17:43:33,117 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
1965 Removed: 2019-10-17 17:43:33,117 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
1966 Removed: 2019-10-17 17:43:33,118 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
1967 Removed: 2019-10-17 17:43:33,118 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
1968 Removed: 2019-10-17 17:43:33,119 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
1969 Removed: 2019-10-17 17:43:33,119 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
1970 Removed: 2019-10-17 17:43:33,119 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
1971 Removed: 2019-10-17 17:43:33,120 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
1972 Removed: 2019-10-17 17:43:33,120 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
1973 Removed: 2019-10-17 17:43:33,120 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
1974 Removed: 2019-10-17 17:43:33,121 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
1975 Removed: 2019-10-17 17:43:33,121 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
1976 Removed: 2019-10-17 17:43:33,122 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
1977 Removed: 2019-10-17 17:43:33,122 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
1978 Removed: 2019-10-17 17:43:33,123 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
1979 Removed: 2019-10-17 17:43:33,123 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
1980 Removed: 2019-10-17 17:43:33,123 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
1981 Removed: 2019-10-17 17:43:33,124 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
1982 Removed: 2019-10-17 17:43:33,124 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
1983 Removed: 2019-10-17 17:43:33,125 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
1984 Removed: 2019-10-17 17:43:33,125 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
1985 Removed: 2019-10-17 17:43:33,125 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
1986 Removed: 2019-10-17 17:43:33,126 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
1987 Removed: 2019-10-17 17:43:33,126 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
1988 Removed: 2019-10-17 17:43:33,127 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
1989 Removed: 2019-10-17 17:43:33,127 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
1990 Removed: 2019-10-17 17:43:33,127 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
1991 Removed: 2019-10-17 17:43:33,128 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
1992 Removed: 2019-10-17 17:43:33,128 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
1993 Removed: 2019-10-17 17:43:33,129 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
1994 Removed: 2019-10-17 17:43:33,129 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
1995 Removed: 2019-10-17 17:43:33,129 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
1996 Removed: 2019-10-17 17:43:33,130 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
1997 Removed: 2019-10-17 17:43:33,130 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
1998 Removed: 2019-10-17 17:43:33,131 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
1999 Removed: 2019-10-17 17:43:33,131 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2000 Removed: 2019-10-17 17:43:33,131 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2001 Removed: 2019-10-17 17:43:33,132 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2002 Removed: 2019-10-17 17:43:33,132 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2003 Removed: 2019-10-17 17:43:33,133 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2004 Removed: 2019-10-17 17:43:33,133 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2005 Removed: 2019-10-17 17:43:33,133 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2006 Removed: 2019-10-17 17:43:33,134 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2007 Removed: 2019-10-17 17:43:33,134 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2008 Removed: 2019-10-17 17:48:00,506 - DEBUG - $HOME=/home/blendux
2009 Removed: 2019-10-17 17:48:00,508 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2010 Removed: 2019-10-17 17:48:00,508 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2011 Removed: 2019-10-17 17:48:00,543 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2012 Removed: 2019-10-17 17:48:00,555 - DEBUG - matplotlib version 3.1.1
2013 Removed: 2019-10-17 17:48:00,556 - DEBUG - interactive is False
2014 Removed: 2019-10-17 17:48:00,556 - DEBUG - platform is linux
2015 Removed: 2019-10-17 17:48:00,556 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2016 Removed: 2019-10-17 17:48:00,808 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2017 Removed: 2019-10-17 17:48:00,817 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2018 Removed: 2019-10-17 17:48:01,507 - DEBUG - Loaded backend qt5agg version unknown.
2019 Removed: 2019-10-17 17:48:01,580 - DEBUG - Loaded backend tkagg version unknown.
2020 Removed: 2019-10-17 17:48:01,582 - DEBUG - Loaded backend TkAgg version unknown.
2021 Removed: 2019-10-17 17:48:01,880 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2022 Removed: 2019-10-17 17:48:01,883 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2023 Removed: 2019-10-17 17:48:01,886 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2024 Removed: 2019-10-17 17:48:01,887 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2025 Removed: 2019-10-17 17:48:02,417 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
2026 Removed: 2019-10-17 17:48:02,418 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2027 Removed: 2019-10-17 17:48:02,419 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2028 Removed: 2019-10-17 17:48:02,419 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2029 Removed: 2019-10-17 17:48:02,420 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2030 Removed: 2019-10-17 17:48:02,420 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2031 Removed: 2019-10-17 17:48:02,421 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2032 Removed: 2019-10-17 17:48:02,421 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2033 Removed: 2019-10-17 17:48:02,422 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2034 Removed: 2019-10-17 17:48:02,422 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2035 Removed: 2019-10-17 17:48:02,422 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2036 Removed: 2019-10-17 17:48:02,423 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2037 Removed: 2019-10-17 17:48:02,423 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2038 Removed: 2019-10-17 17:48:02,424 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2039 Removed: 2019-10-17 17:48:02,424 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2040 Removed: 2019-10-17 17:48:02,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2041 Removed: 2019-10-17 17:48:02,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2042 Removed: 2019-10-17 17:48:02,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2043 Removed: 2019-10-17 17:48:02,426 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2044 Removed: 2019-10-17 17:48:02,426 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2045 Removed: 2019-10-17 17:48:02,427 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2046 Removed: 2019-10-17 17:48:02,427 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2047 Removed: 2019-10-17 17:48:02,427 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2048 Removed: 2019-10-17 17:48:02,428 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2049 Removed: 2019-10-17 17:48:02,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2050 Removed: 2019-10-17 17:48:02,429 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2051 Removed: 2019-10-17 17:48:02,429 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2052 Removed: 2019-10-17 17:48:02,429 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2053 Removed: 2019-10-17 17:48:02,430 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2054 Removed: 2019-10-17 17:48:02,430 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2055 Removed: 2019-10-17 17:48:02,431 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2056 Removed: 2019-10-17 17:48:02,431 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2057 Removed: 2019-10-17 17:48:02,431 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2058 Removed: 2019-10-17 17:48:02,432 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2059 Removed: 2019-10-17 17:48:02,432 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2060 Removed: 2019-10-17 17:48:02,433 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2061 Removed: 2019-10-17 17:48:02,433 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2062 Removed: 2019-10-17 17:48:02,433 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2063 Removed: 2019-10-17 17:48:02,434 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2064 Removed: 2019-10-17 17:48:02,434 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2065 Removed: 2019-10-17 17:48:02,435 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2066 Removed: 2019-10-17 17:48:02,435 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2067 Removed: 2019-10-17 17:48:02,435 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2068 Removed: 2019-10-17 17:48:02,436 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2069 Removed: 2019-10-17 17:48:02,436 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2070 Removed: 2019-10-17 17:48:02,437 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2071 Removed: 2019-10-17 17:48:02,437 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2072 Removed: 2019-10-17 17:48:02,437 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2073 Removed: 2019-10-17 17:48:02,438 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2074 Removed: 2019-10-17 17:48:02,438 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2075 Removed: 2019-10-17 17:48:02,439 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2076 Removed: 2019-10-17 17:48:02,439 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2077 Removed: 2019-10-17 17:48:02,439 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2078 Removed: 2019-10-17 17:48:02,440 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2079 Removed: 2019-10-17 17:48:02,440 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2080 Removed: 2019-10-17 17:48:02,441 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2081 Removed: 2019-10-17 17:48:02,441 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2082 Removed: 2019-10-17 17:48:02,441 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2083 Removed: 2019-10-17 17:48:02,442 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2084 Removed: 2019-10-17 17:48:02,442 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2085 Removed: 2019-10-17 17:48:02,443 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2086 Removed: 2019-10-17 17:48:02,443 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2087 Removed: 2019-10-17 17:48:02,443 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2088 Removed: 2019-10-17 17:48:02,444 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2089 Removed: 2019-10-17 17:48:02,444 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2090 Removed: 2019-10-17 17:48:02,445 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2091 Removed: 2019-10-17 17:48:02,445 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2092 Removed: 2019-10-17 17:48:02,445 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2093 Removed: 2019-10-17 17:48:02,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2094 Removed: 2019-10-17 17:48:02,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2095 Removed: 2019-10-17 17:48:02,447 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2096 Removed: 2019-10-17 17:48:02,447 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2097 Removed: 2019-10-17 17:48:02,447 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2098 Removed: 2019-10-17 17:48:02,448 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2099 Removed: 2019-10-17 17:48:02,448 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2100 Removed: 2019-10-17 17:48:02,449 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2101 Removed: 2019-10-17 17:48:02,449 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2102 Removed: 2019-10-17 17:48:02,449 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2103 Removed: 2019-10-17 17:48:02,450 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2104 Removed: 2019-10-17 17:48:02,450 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2105 Removed: 2019-10-17 17:48:02,451 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2106 Removed: 2019-10-17 17:48:02,451 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2107 Removed: 2019-10-17 17:48:02,452 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2108 Removed: 2019-10-17 17:48:02,452 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2109 Removed: 2019-10-17 17:48:02,452 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2110 Removed: 2019-10-17 17:48:02,453 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2111 Removed: 2019-10-17 17:48:02,453 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2112 Removed: 2019-10-17 17:48:02,453 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2113 Removed: 2019-10-17 17:48:02,454 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2114 Removed: 2019-10-17 17:48:02,454 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
2115 Removed: 2019-10-17 17:48:02,455 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2116 Removed: 2019-10-17 17:48:02,455 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2117 Removed: 2019-10-17 17:48:02,455 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2118 Removed: 2019-10-17 17:48:02,456 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2119 Removed: 2019-10-17 17:48:02,456 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2120 Removed: 2019-10-17 17:48:02,457 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2121 Removed: 2019-10-17 17:48:02,457 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2122 Removed: 2019-10-17 17:48:02,458 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2123 Removed: 2019-10-17 17:48:02,458 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2124 Removed: 2019-10-17 17:48:02,458 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2125 Removed: 2019-10-17 17:48:02,459 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2126 Removed: 2019-10-17 17:48:02,459 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2127 Removed: 2019-10-17 17:48:02,460 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2128 Removed: 2019-10-17 17:48:02,460 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2129 Removed: 2019-10-17 17:48:02,460 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2130 Removed: 2019-10-17 17:48:02,461 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2131 Removed: 2019-10-17 17:48:02,461 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2132 Removed: 2019-10-17 17:48:02,462 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2133 Removed: 2019-10-17 17:48:02,462 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2134 Removed: 2019-10-17 17:48:02,462 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2135 Removed: 2019-10-17 17:48:02,463 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2136 Removed: 2019-10-17 17:48:02,463 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2137 Removed: 2019-10-17 17:48:02,464 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
2138 Removed: 2019-10-17 17:48:02,464 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2139 Removed: 2019-10-17 17:48:02,464 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2140 Removed: 2019-10-17 17:48:02,465 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2141 Removed: 2019-10-17 17:48:02,465 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2142 Removed: 2019-10-17 17:48:02,466 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2143 Removed: 2019-10-17 17:48:02,466 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2144 Removed: 2019-10-17 17:48:02,466 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2145 Removed: 2019-10-17 17:48:02,467 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2146 Removed: 2019-10-17 17:48:02,467 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2147 Removed: 2019-10-17 17:48:02,468 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2148 Removed: 2019-10-17 17:48:02,468 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2149 Removed: 2019-10-17 17:48:02,468 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2150 Removed: 2019-10-17 17:48:02,469 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2151 Removed: 2019-10-17 17:48:02,469 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2152 Removed: 2019-10-17 17:48:02,470 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2153 Removed: 2019-10-17 17:48:02,470 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2154 Removed: 2019-10-17 17:48:02,470 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2155 Removed: 2019-10-17 17:48:02,471 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2156 Removed: 2019-10-17 17:48:02,471 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2157 Removed: 2019-10-17 17:48:02,472 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2158 Removed: 2019-10-17 17:48:02,472 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2159 Removed: 2019-10-17 17:48:02,472 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2160 Removed: 2019-10-17 17:48:02,473 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2161 Removed: 2019-10-17 17:48:02,473 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2162 Removed: 2019-10-17 17:48:02,474 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2163 Removed: 2019-10-17 17:48:02,474 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2164 Removed: 2019-10-17 17:48:02,474 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2165 Removed: 2019-10-17 17:48:02,475 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2166 Removed: 2019-10-17 17:48:02,475 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2167 Removed: 2019-10-17 17:48:02,476 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
2168 Removed: 2019-10-17 17:48:02,476 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2169 Removed: 2019-10-17 17:48:02,476 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
2170 Removed: 2019-10-17 17:48:02,477 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2171 Removed: 2019-10-17 17:48:02,477 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2172 Removed: 2019-10-17 17:48:02,478 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2173 Removed: 2019-10-17 17:48:02,478 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2174 Removed: 2019-10-17 17:48:02,478 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2175 Removed: 2019-10-17 17:48:02,479 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2176 Removed: 2019-10-17 17:48:02,479 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2177 Removed: 2019-10-17 17:48:02,480 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2178 Removed: 2019-10-17 17:48:02,480 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2179 Removed: 2019-10-17 17:48:02,480 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2180 Removed: 2019-10-17 17:48:13,214 - DEBUG - $HOME=/home/blendux
2181 Removed: 2019-10-17 17:48:13,215 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2182 Removed: 2019-10-17 17:48:13,216 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2183 Removed: 2019-10-17 17:48:13,252 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2184 Removed: 2019-10-17 17:48:13,263 - DEBUG - matplotlib version 3.1.1
2185 Removed: 2019-10-17 17:48:13,264 - DEBUG - interactive is False
2186 Removed: 2019-10-17 17:48:13,264 - DEBUG - platform is linux
2187 Removed: 2019-10-17 17:48:13,265 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2188 Removed: 2019-10-17 17:48:13,516 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2189 Removed: 2019-10-17 17:48:13,525 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2190 Removed: 2019-10-17 17:48:14,246 - DEBUG - Loaded backend qt5agg version unknown.
2191 Removed: 2019-10-17 17:48:14,318 - DEBUG - Loaded backend tkagg version unknown.
2192 Removed: 2019-10-17 17:48:14,321 - DEBUG - Loaded backend TkAgg version unknown.
2193 Removed: 2019-10-17 17:48:14,576 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2194 Removed: 2019-10-17 17:48:14,579 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2195 Removed: 2019-10-17 17:48:14,582 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2196 Removed: 2019-10-17 17:48:14,584 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2197 Removed: 2019-10-17 17:56:24,560 - DEBUG - $HOME=/home/blendux
2198 Removed: 2019-10-17 17:56:24,562 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2199 Removed: 2019-10-17 17:56:24,562 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2200 Removed: 2019-10-17 17:56:24,597 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2201 Removed: 2019-10-17 17:56:24,609 - DEBUG - matplotlib version 3.1.1
2202 Removed: 2019-10-17 17:56:24,609 - DEBUG - interactive is False
2203 Removed: 2019-10-17 17:56:24,610 - DEBUG - platform is linux
2204 Removed: 2019-10-17 17:56:24,610 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2205 Removed: 2019-10-17 17:56:24,860 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2206 Removed: 2019-10-17 17:56:24,869 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2207 Removed: 2019-10-17 17:56:25,551 - DEBUG - Loaded backend qt5agg version unknown.
2208 Removed: 2019-10-17 17:56:25,623 - DEBUG - Loaded backend tkagg version unknown.
2209 Removed: 2019-10-17 17:56:25,625 - DEBUG - Loaded backend TkAgg version unknown.
2210 Removed: 2019-10-17 17:56:25,878 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2211 Removed: 2019-10-17 17:56:25,882 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2212 Removed: 2019-10-17 17:56:25,885 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2213 Removed: 2019-10-17 17:56:25,888 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2214 Removed: 2019-10-17 17:56:36,300 - DEBUG - $HOME=/home/blendux
2215 Removed: 2019-10-17 17:56:36,301 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2216 Removed: 2019-10-17 17:56:36,302 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2217 Removed: 2019-10-17 17:56:36,337 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2218 Removed: 2019-10-17 17:56:36,349 - DEBUG - matplotlib version 3.1.1
2219 Removed: 2019-10-17 17:56:36,349 - DEBUG - interactive is False
2220 Removed: 2019-10-17 17:56:36,350 - DEBUG - platform is linux
2221 Removed: 2019-10-17 17:56:36,350 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2222 Removed: 2019-10-17 17:56:36,599 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2223 Removed: 2019-10-17 17:56:36,608 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2224 Removed: 2019-10-17 17:56:37,283 - DEBUG - Loaded backend qt5agg version unknown.
2225 Removed: 2019-10-17 17:56:37,355 - DEBUG - Loaded backend tkagg version unknown.
2226 Removed: 2019-10-17 17:56:37,358 - DEBUG - Loaded backend TkAgg version unknown.
2227 Removed: 2019-10-17 17:56:37,611 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2228 Removed: 2019-10-17 17:56:37,615 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2229 Removed: 2019-10-17 17:56:37,617 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2230 Removed: 2019-10-17 17:56:37,619 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2231 Removed: 2019-10-17 17:57:06,924 - DEBUG - $HOME=/home/blendux
2232 Removed: 2019-10-17 17:57:06,926 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2233 Removed: 2019-10-17 17:57:06,927 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2234 Removed: 2019-10-17 17:57:06,961 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2235 Removed: 2019-10-17 17:57:06,973 - DEBUG - matplotlib version 3.1.1
2236 Removed: 2019-10-17 17:57:06,974 - DEBUG - interactive is False
2237 Removed: 2019-10-17 17:57:06,974 - DEBUG - platform is linux
2238 Removed: 2019-10-17 17:57:06,974 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2239 Removed: 2019-10-17 17:57:07,224 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2240 Removed: 2019-10-17 17:57:07,233 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2241 Removed: 2019-10-17 17:57:07,948 - DEBUG - Loaded backend qt5agg version unknown.
2242 Removed: 2019-10-17 17:57:08,020 - DEBUG - Loaded backend tkagg version unknown.
2243 Removed: 2019-10-17 17:57:08,023 - DEBUG - Loaded backend TkAgg version unknown.
2244 Removed: 2019-10-17 17:57:08,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2245 Removed: 2019-10-17 17:57:08,275 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2246 Removed: 2019-10-17 17:57:08,278 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2247 Removed: 2019-10-17 17:57:08,279 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2248 Removed: 2019-10-17 21:09:31,743 - DEBUG - $HOME=/home/blendux
2249 Removed: 2019-10-17 21:09:31,744 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2250 Removed: 2019-10-17 21:09:31,744 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2251 Removed: 2019-10-17 21:09:31,749 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2252 Removed: 2019-10-17 21:09:31,751 - DEBUG - matplotlib version 3.1.1
2253 Removed: 2019-10-17 21:09:31,751 - DEBUG - interactive is False
2254 Removed: 2019-10-17 21:09:31,751 - DEBUG - platform is linux
2255 Removed: 2019-10-17 21:09:31,751 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2256 Removed: 2019-10-17 21:09:31,801 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2257 Removed: 2019-10-17 21:09:31,803 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2258 Removed: 2019-10-17 21:09:31,982 - DEBUG - Loaded backend qt5agg version unknown.
2259 Removed: 2019-10-17 21:09:32,005 - DEBUG - Loaded backend tkagg version unknown.
2260 Removed: 2019-10-17 21:09:32,006 - DEBUG - Loaded backend TkAgg version unknown.
2261 Removed: 2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2262 Removed: 2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2263 Removed: 2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2264 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
2265 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2266 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2267 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2268 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2269 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2270 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2271 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2272 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2273 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2274 Removed: 2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2275 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2276 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2277 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2278 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2279 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2280 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2281 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2282 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2283 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2284 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2285 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2286 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2287 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2288 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2289 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2290 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2291 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2292 Removed: 2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2293 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2294 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2295 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2296 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2297 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2298 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2299 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2300 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2301 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2302 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2303 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2304 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2305 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2306 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2307 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2308 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2309 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2310 Removed: 2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2311 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2312 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2313 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2314 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2315 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2316 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2317 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2318 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2319 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2320 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2321 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2322 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2323 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2324 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2325 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2326 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2327 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2328 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2329 Removed: 2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2330 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2331 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2332 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2333 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2334 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2335 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2336 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2337 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2338 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2339 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2340 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2341 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2342 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2343 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2344 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2345 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2346 Removed: 2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2347 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2348 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2349 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2350 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2351 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2352 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2353 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
2354 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2355 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2356 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2357 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2358 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2359 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2360 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2361 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2362 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2363 Removed: 2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2364 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2365 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2366 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2367 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2368 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2369 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2370 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2371 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2372 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2373 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2374 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2375 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2376 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
2377 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2378 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2379 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2380 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2381 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2382 Removed: 2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2383 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2384 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2385 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2386 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2387 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2388 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2389 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2390 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2391 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2392 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2393 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2394 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2395 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2396 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2397 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2398 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2399 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2400 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2401 Removed: 2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2402 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2403 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2404 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2405 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2406 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
2407 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2408 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
2409 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2410 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2411 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2412 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2413 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2414 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2415 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2416 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2417 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2418 Removed: 2019-10-17 21:09:32,206 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2419 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
2420 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2421 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2422 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2423 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2424 Removed: 2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2425 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2426 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2427 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2428 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2429 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2430 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2431 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2432 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2433 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2434 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2435 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2436 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2437 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2438 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2439 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2440 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2441 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2442 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2443 Removed: 2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2444 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2445 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2446 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2447 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2448 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2449 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2450 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2451 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2452 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2453 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2454 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2455 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2456 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2457 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2458 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2459 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2460 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2461 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2462 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2463 Removed: 2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2464 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2465 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2466 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2467 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2468 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2469 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2470 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2471 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2472 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2473 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2474 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2475 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2476 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2477 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2478 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2479 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2480 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2481 Removed: 2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2482 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2483 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2484 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2485 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2486 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2487 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2488 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2489 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2490 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2491 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2492 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2493 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2494 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2495 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2496 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2497 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2498 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2499 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2500 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2501 Removed: 2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2502 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2503 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2504 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2505 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2506 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2507 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2508 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
2509 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2510 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2511 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2512 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2513 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2514 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2515 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2516 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2517 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2518 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2519 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2520 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2521 Removed: 2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2522 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2523 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2524 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2525 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2526 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2527 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2528 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2529 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2530 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2531 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
2532 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2533 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2534 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2535 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2536 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2537 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2538 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2539 Removed: 2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2540 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2541 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2542 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2543 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2544 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2545 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2546 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2547 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2548 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2549 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2550 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2551 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2552 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2553 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2554 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2555 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2556 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2557 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2558 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2559 Removed: 2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2560 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2561 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
2562 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2563 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
2564 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2565 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2566 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2567 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2568 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2569 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2570 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2571 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2572 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2573 Removed: 2019-10-17 21:09:32,227 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2574 Removed: 2019-10-17 21:09:38,159 - DEBUG - $HOME=/home/blendux
2575 Removed: 2019-10-17 21:09:38,159 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2576 Removed: 2019-10-17 21:09:38,159 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2577 Removed: 2019-10-17 21:09:38,164 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2578 Removed: 2019-10-17 21:09:38,166 - DEBUG - matplotlib version 3.1.1
2579 Removed: 2019-10-17 21:09:38,166 - DEBUG - interactive is False
2580 Removed: 2019-10-17 21:09:38,166 - DEBUG - platform is linux
2581 Removed: 2019-10-17 21:09:38,166 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2582 Removed: 2019-10-17 21:09:38,198 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2583 Removed: 2019-10-17 21:09:38,199 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2584 Removed: 2019-10-17 21:09:38,291 - DEBUG - Loaded backend qt5agg version unknown.
2585 Removed: 2019-10-17 21:09:38,301 - DEBUG - Loaded backend tkagg version unknown.
2586 Removed: 2019-10-17 21:09:38,301 - DEBUG - Loaded backend TkAgg version unknown.
2587 Removed: 2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2588 Removed: 2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2589 Removed: 2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2590 Removed: 2019-10-17 21:09:38,423 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
2591 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2592 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2593 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2594 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2595 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2596 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2597 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2598 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2599 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2600 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2601 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2602 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2603 Removed: 2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2604 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2605 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2606 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2607 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2608 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2609 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2610 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2611 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2612 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2613 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2614 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2615 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2616 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2617 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2618 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2619 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2620 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2621 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2622 Removed: 2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2623 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2624 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2625 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2626 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2627 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2628 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2629 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2630 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2631 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2632 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2633 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2634 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2635 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2636 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2637 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2638 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2639 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2640 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2641 Removed: 2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2642 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2643 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2644 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2645 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2646 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2647 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2648 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2649 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2650 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2651 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2652 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2653 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2654 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2655 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2656 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2657 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2658 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2659 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2660 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2661 Removed: 2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2662 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2663 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2664 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2665 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2666 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2667 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2668 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2669 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2670 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2671 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2672 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2673 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2674 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2675 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2676 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2677 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2678 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2679 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
2680 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2681 Removed: 2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2682 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2683 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2684 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2685 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2686 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2687 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2688 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2689 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2690 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2691 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2692 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2693 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2694 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2695 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2696 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2697 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2698 Removed: 2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2699 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2700 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2701 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2702 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
2703 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2704 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2705 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2706 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2707 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2708 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2709 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2710 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2711 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2712 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2713 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2714 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2715 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2716 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2717 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2718 Removed: 2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2719 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2720 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2721 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2722 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2723 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2724 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2725 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2726 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2727 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2728 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2729 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2730 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2731 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2732 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
2733 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2734 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
2735 Removed: 2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2736 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2737 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2738 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2739 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2740 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2741 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2742 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2743 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2744 Removed: 2019-10-17 21:09:38,432 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2745 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
2746 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2747 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2748 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2749 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2750 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2751 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2752 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2753 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2754 Removed: 2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2755 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2756 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2757 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2758 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2759 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2760 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2761 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2762 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2763 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2764 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2765 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2766 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2767 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2768 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2769 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2770 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2771 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2772 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2773 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2774 Removed: 2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2775 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2776 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2777 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2778 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2779 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2780 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2781 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2782 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2783 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2784 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2785 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2786 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2787 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2788 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2789 Removed: 2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2790 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2791 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2792 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2793 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2794 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2795 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2796 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2797 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2798 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2799 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2800 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2801 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2802 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2803 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2804 Removed: 2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2805 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2806 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2807 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2808 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2809 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2810 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2811 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2812 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2813 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2814 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2815 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2816 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2817 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2818 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2819 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2820 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2821 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2822 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2823 Removed: 2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2824 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2825 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2826 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2827 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2828 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2829 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2830 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2831 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2832 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2833 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2834 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
2835 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2836 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2837 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2838 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2839 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2840 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2841 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2842 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2843 Removed: 2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2844 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2845 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2846 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2847 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2848 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2849 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2850 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2851 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2852 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2853 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2854 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2855 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2856 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2857 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
2858 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2859 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2860 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2861 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2862 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2863 Removed: 2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2864 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2865 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2866 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2867 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2868 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2869 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2870 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2871 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2872 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2873 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2874 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2875 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2876 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2877 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2878 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2879 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2880 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2881 Removed: 2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2882 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2883 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2884 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2885 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2886 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2887 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
2888 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2889 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
2890 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2891 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2892 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
2893 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2894 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2895 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2896 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
2897 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2898 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2899 Removed: 2019-10-17 21:09:38,450 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
2900 Removed: 2019-10-17 21:11:53,839 - DEBUG - $HOME=/home/blendux
2901 Removed: 2019-10-17 21:11:53,839 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2902 Removed: 2019-10-17 21:11:53,839 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2903 Removed: 2019-10-17 21:11:53,844 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2904 Removed: 2019-10-17 21:11:53,845 - DEBUG - matplotlib version 3.1.1
2905 Removed: 2019-10-17 21:11:53,845 - DEBUG - interactive is False
2906 Removed: 2019-10-17 21:11:53,846 - DEBUG - platform is linux
2907 Removed: 2019-10-17 21:11:53,846 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
2908 Removed: 2019-10-17 21:11:53,879 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2909 Removed: 2019-10-17 21:11:53,880 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2910 Removed: 2019-10-17 21:11:53,972 - DEBUG - Loaded backend qt5agg version unknown.
2911 Removed: 2019-10-17 21:11:53,981 - DEBUG - Loaded backend tkagg version unknown.
2912 Removed: 2019-10-17 21:11:53,981 - DEBUG - Loaded backend TkAgg version unknown.
2913 Removed: 2019-10-17 21:11:54,012 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2914 Removed: 2019-10-17 21:11:54,013 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2915 Removed: 2019-10-17 21:11:54,013 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2916 Removed: 2019-10-17 21:11:54,101 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
2917 Removed: 2019-10-17 21:11:54,101 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2918 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2919 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2920 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2921 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2922 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2923 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2924 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2925 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2926 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2927 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2928 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2929 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2930 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2931 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2932 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2933 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2934 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2935 Removed: 2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2936 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2937 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2938 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2939 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2940 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2941 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2942 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2943 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2944 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2945 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2946 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2947 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2948 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2949 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2950 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2951 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2952 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2953 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2954 Removed: 2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2955 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2956 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2957 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2958 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2959 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2960 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2961 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2962 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2963 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2964 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2965 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2966 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2967 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
2968 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2969 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2970 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2971 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2972 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2973 Removed: 2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2974 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2975 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
2976 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2977 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2978 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2979 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2980 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2981 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2982 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2983 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2984 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2985 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2986 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2987 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2988 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2989 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2990 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2991 Removed: 2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2992 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2993 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2994 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2995 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2996 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2997 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2998 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2999 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3000 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3001 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3002 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3003 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3004 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3005 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3006 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3007 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3008 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3009 Removed: 2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3010 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3011 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3012 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3013 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3014 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3015 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3016 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3017 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3018 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3019 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3020 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3021 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3022 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3023 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3024 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3025 Removed: 2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3026 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3027 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3028 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3029 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3030 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3031 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3032 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3033 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3034 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3035 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3036 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3037 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3038 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3039 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3040 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3041 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3042 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3043 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3044 Removed: 2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3045 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3046 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3047 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3048 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3049 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3050 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3051 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3052 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3053 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3054 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3055 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3056 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3057 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3058 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3059 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3060 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3061 Removed: 2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3062 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3063 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3064 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3065 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3066 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3067 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3068 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3069 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3070 Removed: 2019-10-17 21:11:54,110 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3071 Removed: 2019-10-17 21:11:54,120 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
3072 Removed: 2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3073 Removed: 2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3074 Removed: 2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3075 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3076 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3077 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3078 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3079 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3080 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3081 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3082 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3083 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3084 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3085 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3086 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3087 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3088 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3089 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3090 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3091 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3092 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3093 Removed: 2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3094 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3095 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3096 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3097 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3098 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3099 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3100 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3101 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3102 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3103 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3104 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3105 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3106 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3107 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3108 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3109 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3110 Removed: 2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3111 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3112 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3113 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3114 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3115 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3116 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3117 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3118 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3119 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3120 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3121 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3122 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
3123 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3124 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3125 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3126 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3127 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3128 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3129 Removed: 2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3130 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
3131 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3132 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3133 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3134 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3135 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3136 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3137 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3138 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3139 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3140 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3141 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3142 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3143 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3144 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3145 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3146 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3147 Removed: 2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3148 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3149 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3150 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3151 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3152 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3153 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3154 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3155 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3156 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3157 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3158 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3159 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3160 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3161 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3162 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3163 Removed: 2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3164 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3165 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3166 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3167 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3168 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3169 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3170 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3171 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3172 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3173 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3174 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3175 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3176 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3177 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3178 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3179 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3180 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3181 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3182 Removed: 2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3183 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3184 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3185 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3186 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3187 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3188 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3189 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3190 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3191 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3192 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3193 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3194 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3195 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3196 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3197 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3198 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3199 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3200 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3201 Removed: 2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3202 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3203 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3204 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3205 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3206 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3207 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3208 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3209 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3210 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3211 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3212 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3213 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3214 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3215 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3216 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3217 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3218 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3219 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3220 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3221 Removed: 2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3222 Removed: 2019-10-17 21:11:54,129 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3223 Removed: 2019-10-17 21:11:54,129 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3224 Removed: 2019-10-17 21:11:54,129 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3225 Removed: 2019-10-17 21:11:54,129 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3226 Removed: 2019-10-17 21:12:19,903 - DEBUG - $HOME=/home/blendux
3227 Removed: 2019-10-17 21:12:19,903 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3228 Removed: 2019-10-17 21:12:19,904 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3229 Removed: 2019-10-17 21:12:19,909 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3230 Removed: 2019-10-17 21:12:19,910 - DEBUG - matplotlib version 3.1.1
3231 Removed: 2019-10-17 21:12:19,910 - DEBUG - interactive is False
3232 Removed: 2019-10-17 21:12:19,910 - DEBUG - platform is linux
3233 Removed: 2019-10-17 21:12:19,910 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3234 Removed: 2019-10-17 21:12:19,944 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3235 Removed: 2019-10-17 21:12:19,946 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3236 Removed: 2019-10-17 21:12:20,036 - DEBUG - Loaded backend qt5agg version unknown.
3237 Removed: 2019-10-17 21:12:20,046 - DEBUG - Loaded backend tkagg version unknown.
3238 Removed: 2019-10-17 21:12:20,046 - DEBUG - Loaded backend TkAgg version unknown.
3239 Removed: 2019-10-17 21:12:20,077 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3240 Removed: 2019-10-17 21:12:20,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3241 Removed: 2019-10-17 21:12:20,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3242 Removed: 2019-10-17 21:12:20,145 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
3243 Removed: 2019-10-17 21:12:20,145 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3244 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3245 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3246 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3247 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3248 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3249 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3250 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3251 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3252 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3253 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3254 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3255 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3256 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3257 Removed: 2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3258 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3259 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3260 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3261 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3262 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3263 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3264 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3265 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3266 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3267 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3268 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3269 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3270 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3271 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3272 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3273 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3274 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3275 Removed: 2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3276 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3277 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3278 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3279 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3280 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3281 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3282 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3283 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3284 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3285 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3286 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3287 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3288 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3289 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3290 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3291 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3292 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3293 Removed: 2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
3294 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3295 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3296 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3297 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3298 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3299 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3300 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3301 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
3302 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3303 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3304 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3305 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3306 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3307 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3308 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3309 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3310 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3311 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3312 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3313 Removed: 2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3314 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3315 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3316 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3317 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3318 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3319 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3320 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3321 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3322 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3323 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3324 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3325 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3326 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3327 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3328 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3329 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3330 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3331 Removed: 2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3332 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3333 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3334 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3335 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3336 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3337 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3338 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3339 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3340 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3341 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3342 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3343 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3344 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3345 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3346 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3347 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3348 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3349 Removed: 2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3350 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3351 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3352 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3353 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3354 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3355 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3356 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3357 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3358 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3359 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3360 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3361 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3362 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3363 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3364 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3365 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3366 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3367 Removed: 2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3368 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3369 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3370 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3371 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3372 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3373 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3374 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3375 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3376 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3377 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3378 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3379 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3380 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3381 Removed: 2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3382 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3383 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3384 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3385 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3386 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3387 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3388 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3389 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3390 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3391 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3392 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3393 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3394 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3395 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3396 Removed: 2019-10-17 21:12:20,154 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3397 Removed: 2019-10-17 21:12:20,164 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
3398 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3399 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3400 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3401 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3402 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3403 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3404 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3405 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3406 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3407 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3408 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3409 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3410 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3411 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3412 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3413 Removed: 2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3414 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3415 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3416 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3417 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3418 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3419 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3420 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3421 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3422 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3423 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3424 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3425 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3426 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3427 Removed: 2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3428 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3429 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3430 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3431 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3432 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3433 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3434 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3435 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3436 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3437 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3438 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3439 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3440 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3441 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3442 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3443 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3444 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3445 Removed: 2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3446 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3447 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3448 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
3449 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3450 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3451 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3452 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3453 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3454 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3455 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3456 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
3457 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3458 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3459 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3460 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3461 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3462 Removed: 2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3463 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3464 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3465 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3466 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3467 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3468 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3469 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3470 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3471 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3472 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3473 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3474 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3475 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3476 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3477 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3478 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3479 Removed: 2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3480 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3481 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3482 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3483 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3484 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3485 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3486 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3487 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3488 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3489 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3490 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3491 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3492 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3493 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3494 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3495 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3496 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3497 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3498 Removed: 2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3499 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3500 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3501 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3502 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3503 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3504 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3505 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3506 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3507 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3508 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3509 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3510 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3511 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3512 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3513 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3514 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3515 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3516 Removed: 2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3517 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3518 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3519 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3520 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3521 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3522 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3523 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3524 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3525 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3526 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3527 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3528 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3529 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3530 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3531 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3532 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3533 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3534 Removed: 2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3535 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3536 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3537 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3538 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3539 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3540 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3541 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3542 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3543 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3544 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3545 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3546 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3547 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3548 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3549 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3550 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3551 Removed: 2019-10-17 21:12:20,173 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3552 Removed: 2019-10-17 21:17:38,042 - DEBUG - $HOME=/home/blendux
3553 Removed: 2019-10-17 21:17:38,042 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3554 Removed: 2019-10-17 21:17:38,043 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3555 Removed: 2019-10-17 21:17:38,047 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3556 Removed: 2019-10-17 21:17:38,049 - DEBUG - matplotlib version 3.1.1
3557 Removed: 2019-10-17 21:17:38,049 - DEBUG - interactive is False
3558 Removed: 2019-10-17 21:17:38,049 - DEBUG - platform is linux
3559 Removed: 2019-10-17 21:17:38,049 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3560 Removed: 2019-10-17 21:17:38,083 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3561 Removed: 2019-10-17 21:17:38,084 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3562 Removed: 2019-10-17 21:17:38,174 - DEBUG - Loaded backend qt5agg version unknown.
3563 Removed: 2019-10-17 21:17:38,183 - DEBUG - Loaded backend tkagg version unknown.
3564 Removed: 2019-10-17 21:17:38,183 - DEBUG - Loaded backend TkAgg version unknown.
3565 Removed: 2019-10-17 21:17:38,213 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3566 Removed: 2019-10-17 21:17:38,213 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3567 Removed: 2019-10-17 21:17:38,214 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3568 Removed: 2019-10-17 21:17:38,279 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
3569 Removed: 2019-10-17 21:17:38,279 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3570 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3571 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3572 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3573 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3574 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3575 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3576 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3577 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3578 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3579 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3580 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3581 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3582 Removed: 2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3583 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3584 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3585 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3586 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3587 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3588 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3589 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3590 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3591 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3592 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3593 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3594 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3595 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3596 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3597 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3598 Removed: 2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3599 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3600 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3601 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3602 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3603 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3604 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3605 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3606 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3607 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3608 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3609 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3610 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3611 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3612 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3613 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3614 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3615 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3616 Removed: 2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3617 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3618 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3619 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
3620 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3621 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3622 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3623 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3624 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3625 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3626 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3627 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
3628 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3629 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3630 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3631 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3632 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3633 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3634 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3635 Removed: 2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3636 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3637 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3638 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3639 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3640 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3641 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3642 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3643 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3644 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3645 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3646 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3647 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3648 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3649 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3650 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3651 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3652 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3653 Removed: 2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3654 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3655 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3656 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3657 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3658 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3659 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3660 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3661 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3662 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3663 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3664 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3665 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3666 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3667 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3668 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3669 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3670 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3671 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3672 Removed: 2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3673 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3674 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3675 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3676 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3677 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3678 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3679 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3680 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3681 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3682 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3683 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3684 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3685 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3686 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3687 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3688 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3689 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3690 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3691 Removed: 2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3692 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3693 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3694 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3695 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3696 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3697 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3698 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3699 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3700 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3701 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3702 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3703 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3704 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3705 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3706 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3707 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3708 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3709 Removed: 2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3710 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3711 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3712 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3713 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3714 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3715 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3716 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3717 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3718 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3719 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3720 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3721 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3722 Removed: 2019-10-17 21:17:38,288 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3723 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
3724 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3725 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3726 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3727 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3728 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3729 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3730 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3731 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3732 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3733 Removed: 2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3734 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3735 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3736 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3737 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3738 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3739 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3740 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3741 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3742 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3743 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3744 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3745 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3746 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3747 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3748 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3749 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3750 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3751 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3752 Removed: 2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3753 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3754 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3755 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3756 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3757 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3758 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3759 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3760 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3761 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3762 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3763 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3764 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3765 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3766 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3767 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3768 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3769 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3770 Removed: 2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3771 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3772 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3773 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3774 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
3775 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3776 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3777 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3778 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3779 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3780 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3781 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3782 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
3783 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3784 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3785 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3786 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3787 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3788 Removed: 2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3789 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3790 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3791 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3792 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3793 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3794 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3795 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3796 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3797 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3798 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3799 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3800 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3801 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3802 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3803 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3804 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3805 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3806 Removed: 2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3807 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3808 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3809 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3810 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3811 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3812 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
3813 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3814 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3815 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3816 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3817 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3818 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3819 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3820 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3821 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3822 Removed: 2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3823 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3824 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3825 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3826 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3827 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3828 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3829 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3830 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3831 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3832 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3833 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3834 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3835 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
3836 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3837 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3838 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3839 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3840 Removed: 2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3841 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3842 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3843 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3844 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3845 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3846 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3847 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3848 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3849 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3850 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3851 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3852 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3853 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3854 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3855 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3856 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3857 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3858 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3859 Removed: 2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3860 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3861 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3862 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3863 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3864 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3865 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
3866 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3867 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
3868 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3869 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3870 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
3871 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3872 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3873 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3874 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
3875 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3876 Removed: 2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3877 Removed: 2019-10-17 21:17:38,307 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
3878 Removed: 2019-10-17 21:18:14,977 - DEBUG - $HOME=/home/blendux
3879 Removed: 2019-10-17 21:18:14,978 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3880 Removed: 2019-10-17 21:18:14,978 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3881 Removed: 2019-10-17 21:18:14,982 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3882 Removed: 2019-10-17 21:18:14,984 - DEBUG - matplotlib version 3.1.1
3883 Removed: 2019-10-17 21:18:14,984 - DEBUG - interactive is False
3884 Removed: 2019-10-17 21:18:14,984 - DEBUG - platform is linux
3885 Removed: 2019-10-17 21:18:14,984 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3886 Removed: 2019-10-17 21:18:15,017 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3887 Removed: 2019-10-17 21:18:15,018 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3888 Removed: 2019-10-17 21:18:15,135 - DEBUG - Loaded backend qt5agg version unknown.
3889 Removed: 2019-10-17 21:18:15,145 - DEBUG - Loaded backend tkagg version unknown.
3890 Removed: 2019-10-17 21:18:15,146 - DEBUG - Loaded backend TkAgg version unknown.
3891 Removed: 2019-10-17 21:18:15,178 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3892 Removed: 2019-10-17 21:18:15,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3893 Removed: 2019-10-17 21:18:15,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3894 Removed: 2019-10-17 21:18:21,421 - DEBUG - $HOME=/home/blendux
3895 Removed: 2019-10-17 21:18:21,422 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3896 Removed: 2019-10-17 21:18:21,422 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3897 Removed: 2019-10-17 21:18:21,427 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3898 Removed: 2019-10-17 21:18:21,428 - DEBUG - matplotlib version 3.1.1
3899 Removed: 2019-10-17 21:18:21,428 - DEBUG - interactive is False
3900 Removed: 2019-10-17 21:18:21,429 - DEBUG - platform is linux
3901 Removed: 2019-10-17 21:18:21,429 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3902 Removed: 2019-10-17 21:18:21,461 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3903 Removed: 2019-10-17 21:18:21,462 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3904 Removed: 2019-10-17 21:18:21,550 - DEBUG - Loaded backend qt5agg version unknown.
3905 Removed: 2019-10-17 21:18:21,560 - DEBUG - Loaded backend tkagg version unknown.
3906 Removed: 2019-10-17 21:18:21,560 - DEBUG - Loaded backend TkAgg version unknown.
3907 Removed: 2019-10-17 21:18:21,591 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3908 Removed: 2019-10-17 21:18:21,592 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3909 Removed: 2019-10-17 21:18:21,592 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3910 Removed: 2019-10-17 21:18:29,840 - DEBUG - $HOME=/home/blendux
3911 Removed: 2019-10-17 21:18:29,841 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3912 Removed: 2019-10-17 21:18:29,841 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3913 Removed: 2019-10-17 21:18:29,846 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3914 Removed: 2019-10-17 21:18:29,847 - DEBUG - matplotlib version 3.1.1
3915 Removed: 2019-10-17 21:18:29,847 - DEBUG - interactive is False
3916 Removed: 2019-10-17 21:18:29,847 - DEBUG - platform is linux
3917 Removed: 2019-10-17 21:18:29,848 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3918 Removed: 2019-10-17 21:18:29,878 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3919 Removed: 2019-10-17 21:18:29,880 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3920 Removed: 2019-10-17 21:18:29,968 - DEBUG - Loaded backend qt5agg version unknown.
3921 Removed: 2019-10-17 21:18:29,978 - DEBUG - Loaded backend tkagg version unknown.
3922 Removed: 2019-10-17 21:18:29,979 - DEBUG - Loaded backend TkAgg version unknown.
3923 Removed: 2019-10-17 21:18:30,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3924 Removed: 2019-10-17 21:18:30,011 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3925 Removed: 2019-10-17 21:18:30,011 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3926 Removed: 2019-10-17 21:38:52,869 - DEBUG - $HOME=/home/blendux
3927 Removed: 2019-10-17 21:38:52,869 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3928 Removed: 2019-10-17 21:38:52,869 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3929 Removed: 2019-10-17 21:38:52,875 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3930 Removed: 2019-10-17 21:38:52,876 - DEBUG - matplotlib version 3.1.1
3931 Removed: 2019-10-17 21:38:52,877 - DEBUG - interactive is False
3932 Removed: 2019-10-17 21:38:52,877 - DEBUG - platform is linux
3933 Removed: 2019-10-17 21:38:52,877 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3934 Removed: 2019-10-17 21:38:52,910 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3935 Removed: 2019-10-17 21:38:52,911 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3936 Removed: 2019-10-17 21:38:53,000 - DEBUG - Loaded backend qt5agg version unknown.
3937 Removed: 2019-10-17 21:38:53,009 - DEBUG - Loaded backend tkagg version unknown.
3938 Removed: 2019-10-17 21:38:53,010 - DEBUG - Loaded backend TkAgg version unknown.
3939 Removed: 2019-10-17 21:38:53,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3940 Removed: 2019-10-17 21:38:53,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3941 Removed: 2019-10-17 21:38:53,054 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3942 Removed: 2019-10-17 21:39:04,182 - DEBUG - $HOME=/home/blendux
3943 Removed: 2019-10-17 21:39:04,183 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3944 Removed: 2019-10-17 21:39:04,183 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3945 Removed: 2019-10-17 21:39:04,188 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3946 Removed: 2019-10-17 21:39:04,190 - DEBUG - matplotlib version 3.1.1
3947 Removed: 2019-10-17 21:39:04,190 - DEBUG - interactive is False
3948 Removed: 2019-10-17 21:39:04,190 - DEBUG - platform is linux
3949 Removed: 2019-10-17 21:39:04,190 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3950 Removed: 2019-10-17 21:39:04,223 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3951 Removed: 2019-10-17 21:39:04,224 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3952 Removed: 2019-10-17 21:39:04,319 - DEBUG - Loaded backend qt5agg version unknown.
3953 Removed: 2019-10-17 21:39:04,329 - DEBUG - Loaded backend tkagg version unknown.
3954 Removed: 2019-10-17 21:39:04,329 - DEBUG - Loaded backend TkAgg version unknown.
3955 Removed: 2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3956 Removed: 2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3957 Removed: 2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3958 Removed: 2019-10-17 21:39:07,317 - DEBUG - $HOME=/home/blendux
3959 Removed: 2019-10-17 21:39:07,317 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3960 Removed: 2019-10-17 21:39:07,317 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3961 Removed: 2019-10-17 21:39:07,322 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3962 Removed: 2019-10-17 21:39:07,324 - DEBUG - matplotlib version 3.1.1
3963 Removed: 2019-10-17 21:39:07,324 - DEBUG - interactive is False
3964 Removed: 2019-10-17 21:39:07,324 - DEBUG - platform is linux
3965 Removed: 2019-10-17 21:39:07,324 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3966 Removed: 2019-10-17 21:39:07,358 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3967 Removed: 2019-10-17 21:39:07,359 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3968 Removed: 2019-10-17 21:39:07,451 - DEBUG - Loaded backend qt5agg version unknown.
3969 Removed: 2019-10-17 21:39:07,461 - DEBUG - Loaded backend tkagg version unknown.
3970 Removed: 2019-10-17 21:39:07,462 - DEBUG - Loaded backend TkAgg version unknown.
3971 Removed: 2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3972 Removed: 2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3973 Removed: 2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3974 Removed: 2019-10-17 21:48:24,076 - DEBUG - $HOME=/home/blendux
3975 Removed: 2019-10-17 21:48:24,076 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3976 Removed: 2019-10-17 21:48:24,076 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3977 Removed: 2019-10-17 21:48:24,081 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3978 Removed: 2019-10-17 21:48:24,083 - DEBUG - matplotlib version 3.1.1
3979 Removed: 2019-10-17 21:48:24,083 - DEBUG - interactive is False
3980 Removed: 2019-10-17 21:48:24,083 - DEBUG - platform is linux
3981 Removed: 2019-10-17 21:48:24,083 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3982 Removed: 2019-10-17 21:48:24,115 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3983 Removed: 2019-10-17 21:48:24,117 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3984 Removed: 2019-10-17 21:48:24,208 - DEBUG - Loaded backend qt5agg version unknown.
3985 Removed: 2019-10-17 21:48:24,218 - DEBUG - Loaded backend tkagg version unknown.
3986 Removed: 2019-10-17 21:48:24,218 - DEBUG - Loaded backend TkAgg version unknown.
3987 Removed: 2019-10-17 21:48:24,253 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3988 Removed: 2019-10-17 21:48:24,254 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3989 Removed: 2019-10-17 21:48:24,254 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3990 Removed: 2019-10-17 21:48:59,401 - DEBUG - $HOME=/home/blendux
3991 Removed: 2019-10-17 21:48:59,401 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3992 Removed: 2019-10-17 21:48:59,402 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3993 Removed: 2019-10-17 21:48:59,407 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3994 Removed: 2019-10-17 21:48:59,408 - DEBUG - matplotlib version 3.1.1
3995 Removed: 2019-10-17 21:48:59,408 - DEBUG - interactive is False
3996 Removed: 2019-10-17 21:48:59,408 - DEBUG - platform is linux
3997 Removed: 2019-10-17 21:48:59,408 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
3998 Removed: 2019-10-17 21:48:59,442 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3999 Removed: 2019-10-17 21:48:59,443 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4000 Removed: 2019-10-17 21:48:59,538 - DEBUG - Loaded backend qt5agg version unknown.
4001 Removed: 2019-10-17 21:48:59,548 - DEBUG - Loaded backend tkagg version unknown.
4002 Removed: 2019-10-17 21:48:59,548 - DEBUG - Loaded backend TkAgg version unknown.
4003 Removed: 2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4004 Removed: 2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4005 Removed: 2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4006 Removed: 2019-10-17 21:50:14,930 - DEBUG - $HOME=/home/blendux
4007 Removed: 2019-10-17 21:50:14,930 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4008 Removed: 2019-10-17 21:50:14,930 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4009 Removed: 2019-10-17 21:50:14,935 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4010 Removed: 2019-10-17 21:50:14,937 - DEBUG - matplotlib version 3.1.1
4011 Removed: 2019-10-17 21:50:14,937 - DEBUG - interactive is False
4012 Removed: 2019-10-17 21:50:14,937 - DEBUG - platform is linux
4013 Removed: 2019-10-17 21:50:14,937 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4014 Removed: 2019-10-17 21:50:14,974 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4015 Removed: 2019-10-17 21:50:14,975 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4016 Removed: 2019-10-17 21:50:15,077 - DEBUG - Loaded backend qt5agg version unknown.
4017 Removed: 2019-10-17 21:50:15,087 - DEBUG - Loaded backend tkagg version unknown.
4018 Removed: 2019-10-17 21:50:15,087 - DEBUG - Loaded backend TkAgg version unknown.
4019 Removed: 2019-10-17 21:55:29,362 - DEBUG - $HOME=/home/blendux
4020 Removed: 2019-10-17 21:55:29,362 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4021 Removed: 2019-10-17 21:55:29,362 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4022 Removed: 2019-10-17 21:55:29,367 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4023 Removed: 2019-10-17 21:55:29,369 - DEBUG - matplotlib version 3.1.1
4024 Removed: 2019-10-17 21:55:29,369 - DEBUG - interactive is False
4025 Removed: 2019-10-17 21:55:29,369 - DEBUG - platform is linux
4026 Removed: 2019-10-17 21:55:29,369 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4027 Removed: 2019-10-17 21:55:29,405 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4028 Removed: 2019-10-17 21:55:29,406 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4029 Removed: 2019-10-17 21:55:29,508 - DEBUG - Loaded backend qt5agg version unknown.
4030 Removed: 2019-10-17 21:55:29,519 - DEBUG - Loaded backend tkagg version unknown.
4031 Removed: 2019-10-17 21:55:29,520 - DEBUG - Loaded backend TkAgg version unknown.
4032 Removed: 2019-10-17 21:57:14,251 - DEBUG - $HOME=/home/blendux
4033 Removed: 2019-10-17 21:57:14,251 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4034 Removed: 2019-10-17 21:57:14,251 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4035 Removed: 2019-10-17 21:57:14,257 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4036 Removed: 2019-10-17 21:57:14,259 - DEBUG - matplotlib version 3.1.1
4037 Removed: 2019-10-17 21:57:14,259 - DEBUG - interactive is False
4038 Removed: 2019-10-17 21:57:14,259 - DEBUG - platform is linux
4039 Removed: 2019-10-17 21:57:14,259 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4040 Removed: 2019-10-17 21:57:14,295 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4041 Removed: 2019-10-17 21:57:14,296 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4042 Removed: 2019-10-17 21:57:14,398 - DEBUG - Loaded backend qt5agg version unknown.
4043 Removed: 2019-10-17 21:57:14,409 - DEBUG - Loaded backend tkagg version unknown.
4044 Removed: 2019-10-17 21:57:14,410 - DEBUG - Loaded backend TkAgg version unknown.
4045 Removed: 2019-10-17 22:01:48,553 - DEBUG - $HOME=/home/blendux
4046 Removed: 2019-10-17 22:01:48,553 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4047 Removed: 2019-10-17 22:01:48,553 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4048 Removed: 2019-10-17 22:01:48,558 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4049 Removed: 2019-10-17 22:01:48,560 - DEBUG - matplotlib version 3.1.1
4050 Removed: 2019-10-17 22:01:48,560 - DEBUG - interactive is False
4051 Removed: 2019-10-17 22:01:48,560 - DEBUG - platform is linux
4052 Removed: 2019-10-17 22:01:48,560 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4053 Removed: 2019-10-17 22:01:48,597 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4054 Removed: 2019-10-17 22:01:48,598 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4055 Removed: 2019-10-17 22:01:48,698 - DEBUG - Loaded backend qt5agg version unknown.
4056 Removed: 2019-10-17 22:01:48,709 - DEBUG - Loaded backend tkagg version unknown.
4057 Removed: 2019-10-17 22:01:48,709 - DEBUG - Loaded backend TkAgg version unknown.
4058 Removed: 2019-10-17 22:04:00,077 - DEBUG - $HOME=/home/blendux
4059 Removed: 2019-10-17 22:04:00,078 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4060 Removed: 2019-10-17 22:04:00,078 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4061 Removed: 2019-10-17 22:04:00,083 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4062 Removed: 2019-10-17 22:04:00,085 - DEBUG - matplotlib version 3.1.1
4063 Removed: 2019-10-17 22:04:00,085 - DEBUG - interactive is False
4064 Removed: 2019-10-17 22:04:00,085 - DEBUG - platform is linux
4065 Removed: 2019-10-17 22:04:00,085 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4066 Removed: 2019-10-17 22:04:00,124 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4067 Removed: 2019-10-17 22:04:00,125 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4068 Removed: 2019-10-17 22:04:00,226 - DEBUG - Loaded backend qt5agg version unknown.
4069 Removed: 2019-10-17 22:04:00,236 - DEBUG - Loaded backend tkagg version unknown.
4070 Removed: 2019-10-17 22:04:00,237 - DEBUG - Loaded backend TkAgg version unknown.
4071 Removed: 2019-10-17 22:05:02,006 - DEBUG - $HOME=/home/blendux
4072 Removed: 2019-10-17 22:05:02,007 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4073 Removed: 2019-10-17 22:05:02,007 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4074 Removed: 2019-10-17 22:05:02,012 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4075 Removed: 2019-10-17 22:05:02,014 - DEBUG - matplotlib version 3.1.1
4076 Removed: 2019-10-17 22:05:02,014 - DEBUG - interactive is False
4077 Removed: 2019-10-17 22:05:02,014 - DEBUG - platform is linux
4078 Removed: 2019-10-17 22:05:02,014 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4079 Removed: 2019-10-17 22:05:02,051 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4080 Removed: 2019-10-17 22:05:02,052 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4081 Removed: 2019-10-17 22:05:02,154 - DEBUG - Loaded backend qt5agg version unknown.
4082 Removed: 2019-10-17 22:05:02,166 - DEBUG - Loaded backend tkagg version unknown.
4083 Removed: 2019-10-17 22:05:02,167 - DEBUG - Loaded backend TkAgg version unknown.
4084 Removed: 2019-10-17 22:05:15,838 - DEBUG - $HOME=/home/blendux
4085 Removed: 2019-10-17 22:05:15,838 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4086 Removed: 2019-10-17 22:05:15,838 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4087 Removed: 2019-10-17 22:05:15,843 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4088 Removed: 2019-10-17 22:05:15,845 - DEBUG - matplotlib version 3.1.1
4089 Removed: 2019-10-17 22:05:15,846 - DEBUG - interactive is False
4090 Removed: 2019-10-17 22:05:15,846 - DEBUG - platform is linux
4091 Removed: 2019-10-17 22:05:15,846 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4092 Removed: 2019-10-17 22:05:15,884 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4093 Removed: 2019-10-17 22:05:15,885 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4094 Removed: 2019-10-17 22:05:15,990 - DEBUG - Loaded backend qt5agg version unknown.
4095 Removed: 2019-10-17 22:05:16,002 - DEBUG - Loaded backend tkagg version unknown.
4096 Removed: 2019-10-17 22:05:16,002 - DEBUG - Loaded backend TkAgg version unknown.
4097 Removed: 2019-10-17 22:05:50,656 - DEBUG - $HOME=/home/blendux
4098 Removed: 2019-10-17 22:05:50,657 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4099 Removed: 2019-10-17 22:05:50,657 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4100 Removed: 2019-10-17 22:05:50,662 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4101 Removed: 2019-10-17 22:05:50,664 - DEBUG - matplotlib version 3.1.1
4102 Removed: 2019-10-17 22:05:50,664 - DEBUG - interactive is False
4103 Removed: 2019-10-17 22:05:50,664 - DEBUG - platform is linux
4104 Removed: 2019-10-17 22:05:50,664 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4105 Removed: 2019-10-17 22:05:50,701 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4106 Removed: 2019-10-17 22:05:50,703 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4107 Removed: 2019-10-17 22:05:50,805 - DEBUG - Loaded backend qt5agg version unknown.
4108 Removed: 2019-10-17 22:05:50,817 - DEBUG - Loaded backend tkagg version unknown.
4109 Removed: 2019-10-17 22:05:50,817 - DEBUG - Loaded backend TkAgg version unknown.
4110 Removed: 2019-10-17 22:07:07,579 - DEBUG - $HOME=/home/blendux
4111 Removed: 2019-10-17 22:07:07,579 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4112 Removed: 2019-10-17 22:07:07,579 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4113 Removed: 2019-10-17 22:07:07,585 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4114 Removed: 2019-10-17 22:07:07,587 - DEBUG - matplotlib version 3.1.1
4115 Removed: 2019-10-17 22:07:07,587 - DEBUG - interactive is False
4116 Removed: 2019-10-17 22:07:07,587 - DEBUG - platform is linux
4117 Removed: 2019-10-17 22:07:07,587 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4118 Removed: 2019-10-17 22:07:07,623 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4119 Removed: 2019-10-17 22:07:07,624 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4120 Removed: 2019-10-17 22:07:07,725 - DEBUG - Loaded backend qt5agg version unknown.
4121 Removed: 2019-10-17 22:07:07,735 - DEBUG - Loaded backend tkagg version unknown.
4122 Removed: 2019-10-17 22:07:07,736 - DEBUG - Loaded backend TkAgg version unknown.
4123 Removed: 2019-10-17 22:07:25,429 - DEBUG - $HOME=/home/blendux
4124 Removed: 2019-10-17 22:07:25,430 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4125 Removed: 2019-10-17 22:07:25,430 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4126 Removed: 2019-10-17 22:07:25,435 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4127 Removed: 2019-10-17 22:07:25,437 - DEBUG - matplotlib version 3.1.1
4128 Removed: 2019-10-17 22:07:25,437 - DEBUG - interactive is False
4129 Removed: 2019-10-17 22:07:25,437 - DEBUG - platform is linux
4130 Removed: 2019-10-17 22:07:25,437 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4131 Removed: 2019-10-17 22:07:25,474 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4132 Removed: 2019-10-17 22:07:25,475 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4133 Removed: 2019-10-17 22:07:25,578 - DEBUG - Loaded backend qt5agg version unknown.
4134 Removed: 2019-10-17 22:07:25,590 - DEBUG - Loaded backend tkagg version unknown.
4135 Removed: 2019-10-17 22:07:25,590 - DEBUG - Loaded backend TkAgg version unknown.
4136 Removed: 2019-10-17 22:08:34,755 - DEBUG - $HOME=/home/blendux
4137 Removed: 2019-10-17 22:08:34,755 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4138 Removed: 2019-10-17 22:08:34,756 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4139 Removed: 2019-10-17 22:08:34,761 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4140 Removed: 2019-10-17 22:08:34,762 - DEBUG - matplotlib version 3.1.1
4141 Removed: 2019-10-17 22:08:34,763 - DEBUG - interactive is False
4142 Removed: 2019-10-17 22:08:34,763 - DEBUG - platform is linux
4143 Removed: 2019-10-17 22:08:34,763 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4144 Removed: 2019-10-17 22:08:34,800 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4145 Removed: 2019-10-17 22:08:34,801 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4146 Removed: 2019-10-17 22:08:34,902 - DEBUG - Loaded backend qt5agg version unknown.
4147 Removed: 2019-10-17 22:08:34,913 - DEBUG - Loaded backend tkagg version unknown.
4148 Removed: 2019-10-17 22:08:34,914 - DEBUG - Loaded backend TkAgg version unknown.
4149 Removed: 2019-10-17 22:09:23,577 - DEBUG - $HOME=/home/blendux
4150 Removed: 2019-10-17 22:09:23,578 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4151 Removed: 2019-10-17 22:09:23,578 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4152 Removed: 2019-10-17 22:09:23,583 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4153 Removed: 2019-10-17 22:09:23,585 - DEBUG - matplotlib version 3.1.1
4154 Removed: 2019-10-17 22:09:23,585 - DEBUG - interactive is False
4155 Removed: 2019-10-17 22:09:23,585 - DEBUG - platform is linux
4156 Removed: 2019-10-17 22:09:23,585 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4157 Removed: 2019-10-17 22:09:23,623 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4158 Removed: 2019-10-17 22:09:23,624 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4159 Removed: 2019-10-17 22:09:23,726 - DEBUG - Loaded backend qt5agg version unknown.
4160 Removed: 2019-10-17 22:09:23,736 - DEBUG - Loaded backend tkagg version unknown.
4161 Removed: 2019-10-17 22:09:23,737 - DEBUG - Loaded backend TkAgg version unknown.
4162 Removed: 2019-10-17 22:10:21,188 - DEBUG - $HOME=/home/blendux
4163 Removed: 2019-10-17 22:10:21,188 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4164 Removed: 2019-10-17 22:10:21,189 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4165 Removed: 2019-10-17 22:10:21,194 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4166 Removed: 2019-10-17 22:10:21,195 - DEBUG - matplotlib version 3.1.1
4167 Removed: 2019-10-17 22:10:21,195 - DEBUG - interactive is False
4168 Removed: 2019-10-17 22:10:21,196 - DEBUG - platform is linux
4169 Removed: 2019-10-17 22:10:21,196 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4170 Removed: 2019-10-17 22:10:21,231 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4171 Removed: 2019-10-17 22:10:21,233 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4172 Removed: 2019-10-17 22:10:21,333 - DEBUG - Loaded backend qt5agg version unknown.
4173 Removed: 2019-10-17 22:10:21,343 - DEBUG - Loaded backend tkagg version unknown.
4174 Removed: 2019-10-17 22:10:21,343 - DEBUG - Loaded backend TkAgg version unknown.
4175 Removed: 2019-10-17 22:10:21,361 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4176 Removed: 2019-10-17 22:10:21,407 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4177 Removed: 2019-10-17 22:10:21,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4178 Removed: 2019-10-17 22:10:21,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4179 Removed: 2019-10-17 22:11:40,910 - DEBUG - $HOME=/home/blendux
4180 Removed: 2019-10-17 22:11:40,911 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4181 Removed: 2019-10-17 22:11:40,911 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4182 Removed: 2019-10-17 22:11:40,916 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4183 Removed: 2019-10-17 22:11:40,918 - DEBUG - matplotlib version 3.1.1
4184 Removed: 2019-10-17 22:11:40,918 - DEBUG - interactive is False
4185 Removed: 2019-10-17 22:11:40,918 - DEBUG - platform is linux
4186 Removed: 2019-10-17 22:11:40,918 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4187 Removed: 2019-10-17 22:11:40,954 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4188 Removed: 2019-10-17 22:11:40,956 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4189 Removed: 2019-10-17 22:11:41,058 - DEBUG - Loaded backend qt5agg version unknown.
4190 Removed: 2019-10-17 22:11:41,069 - DEBUG - Loaded backend tkagg version unknown.
4191 Removed: 2019-10-17 22:11:41,069 - DEBUG - Loaded backend TkAgg version unknown.
4192 Removed: 2019-10-17 22:11:41,086 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4193 Removed: 2019-10-17 22:11:41,107 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4194 Removed: 2019-10-17 22:11:41,108 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4195 Removed: 2019-10-17 22:11:41,109 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4196 Removed: 2019-10-17 22:11:41,213 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
4197 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4198 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4199 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4200 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4201 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4202 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4203 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4204 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4205 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4206 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4207 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4208 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4209 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4210 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4211 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4212 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4213 Removed: 2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4214 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4215 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4216 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4217 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4218 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4219 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4220 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4221 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4222 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4223 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4224 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4225 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4226 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4227 Removed: 2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4228 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4229 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4230 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4231 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4232 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4233 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4234 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4235 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4236 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4237 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4238 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4239 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4240 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4241 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4242 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4243 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4244 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4245 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4246 Removed: 2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4247 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
4248 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4249 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4250 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4251 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4252 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4253 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4254 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4255 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
4256 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4257 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4258 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4259 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4260 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4261 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4262 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4263 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4264 Removed: 2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4265 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4266 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4267 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4268 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4269 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4270 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4271 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4272 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4273 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4274 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4275 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4276 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4277 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4278 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4279 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4280 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4281 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4282 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4283 Removed: 2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4284 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4285 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
4286 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4287 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4288 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4289 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4290 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4291 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4292 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4293 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4294 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4295 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4296 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4297 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4298 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4299 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4300 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4301 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4302 Removed: 2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4303 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4304 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4305 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4306 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4307 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4308 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
4309 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4310 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4311 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4312 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4313 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4314 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4315 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4316 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4317 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4318 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4319 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4320 Removed: 2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4321 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4322 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4323 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4324 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4325 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4326 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4327 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4328 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4329 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4330 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4331 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4332 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4333 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4334 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4335 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4336 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4337 Removed: 2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4338 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
4339 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4340 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
4341 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4342 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4343 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
4344 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4345 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4346 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4347 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
4348 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4349 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4350 Removed: 2019-10-17 22:11:41,222 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
4351 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
4352 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4353 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4354 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4355 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4356 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4357 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4358 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4359 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4360 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4361 Removed: 2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4362 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4363 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4364 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4365 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4366 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4367 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4368 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4369 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4370 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4371 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4372 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4373 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4374 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4375 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4376 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4377 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4378 Removed: 2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4379 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4380 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4381 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4382 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4383 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4384 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4385 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4386 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4387 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4388 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4389 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4390 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4391 Removed: 2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4392 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4393 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4394 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4395 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4396 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4397 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4398 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4399 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4400 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4401 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4402 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
4403 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4404 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4405 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4406 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4407 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4408 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4409 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4410 Removed: 2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
4411 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4412 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4413 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4414 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4415 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4416 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4417 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4418 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4419 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4420 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4421 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4422 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4423 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4424 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4425 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4426 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4427 Removed: 2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4428 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4429 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4430 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4431 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4432 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4433 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4434 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4435 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4436 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4437 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4438 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4439 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4440 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
4441 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4442 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4443 Removed: 2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4444 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4445 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4446 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4447 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4448 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4449 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4450 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4451 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4452 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4453 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4454 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4455 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4456 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4457 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4458 Removed: 2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4459 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4460 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4461 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4462 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4463 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
4464 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4465 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4466 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4467 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4468 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4469 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4470 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4471 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4472 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4473 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4474 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4475 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4476 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4477 Removed: 2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4478 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4479 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4480 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4481 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4482 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4483 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4484 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4485 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4486 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4487 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4488 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4489 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4490 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4491 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4492 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4493 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
4494 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4495 Removed: 2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
4496 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4497 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4498 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
4499 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4500 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4501 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4502 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
4503 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4504 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4505 Removed: 2019-10-17 22:11:41,242 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
4506 Removed: 2019-10-17 22:12:28,105 - DEBUG - $HOME=/home/blendux
4507 Removed: 2019-10-17 22:12:28,105 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4508 Removed: 2019-10-17 22:12:28,105 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4509 Removed: 2019-10-17 22:12:28,110 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4510 Removed: 2019-10-17 22:12:28,112 - DEBUG - matplotlib version 3.1.1
4511 Removed: 2019-10-17 22:12:28,112 - DEBUG - interactive is False
4512 Removed: 2019-10-17 22:12:28,112 - DEBUG - platform is linux
4513 Removed: 2019-10-17 22:12:28,112 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4514 Removed: 2019-10-17 22:12:28,149 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4515 Removed: 2019-10-17 22:12:28,151 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4516 Removed: 2019-10-17 22:12:28,252 - DEBUG - Loaded backend qt5agg version unknown.
4517 Removed: 2019-10-17 22:12:28,263 - DEBUG - Loaded backend tkagg version unknown.
4518 Removed: 2019-10-17 22:12:28,263 - DEBUG - Loaded backend TkAgg version unknown.
4519 Removed: 2019-10-17 22:12:28,280 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4520 Removed: 2019-10-17 22:12:28,303 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4521 Removed: 2019-10-17 22:12:28,303 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4522 Removed: 2019-10-17 22:12:28,304 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4523 Removed: 2019-10-17 22:12:28,408 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
4524 Removed: 2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4525 Removed: 2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4526 Removed: 2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4527 Removed: 2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4528 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4529 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4530 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4531 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4532 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4533 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4534 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4535 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4536 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4537 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4538 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4539 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4540 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4541 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4542 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4543 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4544 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4545 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4546 Removed: 2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4547 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4548 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4549 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4550 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4551 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4552 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4553 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4554 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4555 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4556 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4557 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4558 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4559 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4560 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4561 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4562 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4563 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4564 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4565 Removed: 2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4566 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4567 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4568 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4569 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4570 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4571 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4572 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4573 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4574 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
4575 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4576 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4577 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4578 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4579 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4580 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4581 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4582 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
4583 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4584 Removed: 2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4585 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4586 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4587 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4588 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4589 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4590 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4591 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4592 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4593 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4594 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4595 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4596 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4597 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4598 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4599 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4600 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4601 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4602 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4603 Removed: 2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4604 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4605 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4606 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4607 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4608 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4609 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4610 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4611 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4612 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
4613 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4614 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4615 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4616 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4617 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4618 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4619 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4620 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4621 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4622 Removed: 2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4623 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4624 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4625 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4626 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4627 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4628 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4629 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4630 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4631 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4632 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4633 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4634 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4635 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
4636 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4637 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4638 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4639 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4640 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4641 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4642 Removed: 2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4643 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4644 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4645 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4646 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4647 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4648 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4649 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4650 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4651 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4652 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4653 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4654 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4655 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4656 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4657 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4658 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4659 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4660 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4661 Removed: 2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4662 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4663 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4664 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4665 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
4666 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4667 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
4668 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4669 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4670 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
4671 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4672 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4673 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4674 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
4675 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4676 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4677 Removed: 2019-10-17 22:12:28,416 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
4678 Removed: 2019-10-17 22:12:28,426 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
4679 Removed: 2019-10-17 22:12:28,426 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4680 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4681 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4682 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4683 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4684 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4685 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4686 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4687 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4688 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4689 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4690 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4691 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4692 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4693 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4694 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4695 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4696 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4697 Removed: 2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4698 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4699 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4700 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4701 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4702 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4703 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4704 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4705 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4706 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4707 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4708 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4709 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4710 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4711 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4712 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4713 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4714 Removed: 2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4715 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4716 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4717 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4718 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4719 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4720 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4721 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4722 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4723 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4724 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4725 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4726 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4727 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4728 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4729 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
4730 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4731 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4732 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4733 Removed: 2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4734 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4735 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4736 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4737 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
4738 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4739 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4740 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4741 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4742 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4743 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4744 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4745 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4746 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4747 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4748 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4749 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4750 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4751 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4752 Removed: 2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4753 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4754 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4755 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4756 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4757 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4758 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4759 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4760 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4761 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4762 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4763 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4764 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4765 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4766 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4767 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
4768 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4769 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4770 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4771 Removed: 2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4772 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4773 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4774 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4775 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4776 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4777 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4778 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4779 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4780 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4781 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4782 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4783 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4784 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4785 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4786 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4787 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4788 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4789 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4790 Removed: 2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
4791 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4792 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4793 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4794 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4795 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4796 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4797 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4798 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4799 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4800 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4801 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4802 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4803 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4804 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4805 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4806 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4807 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4808 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4809 Removed: 2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4810 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4811 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4812 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4813 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4814 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4815 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4816 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4817 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4818 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4819 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4820 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
4821 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4822 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
4823 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4824 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4825 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
4826 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4827 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4828 Removed: 2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4829 Removed: 2019-10-17 22:12:28,435 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
4830 Removed: 2019-10-17 22:12:28,435 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4831 Removed: 2019-10-17 22:12:28,435 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4832 Removed: 2019-10-17 22:12:28,435 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
4833 Removed: 2019-10-17 22:12:38,031 - DEBUG - $HOME=/home/blendux
4834 Removed: 2019-10-17 22:12:38,031 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4835 Removed: 2019-10-17 22:12:38,031 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4836 Removed: 2019-10-17 22:12:38,037 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4837 Removed: 2019-10-17 22:12:38,039 - DEBUG - matplotlib version 3.1.1
4838 Removed: 2019-10-17 22:12:38,039 - DEBUG - interactive is False
4839 Removed: 2019-10-17 22:12:38,039 - DEBUG - platform is linux
4840 Removed: 2019-10-17 22:12:38,039 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
4841 Removed: 2019-10-17 22:12:38,075 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4842 Removed: 2019-10-17 22:12:38,076 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4843 Removed: 2019-10-17 22:12:38,177 - DEBUG - Loaded backend qt5agg version unknown.
4844 Removed: 2019-10-17 22:12:38,188 - DEBUG - Loaded backend tkagg version unknown.
4845 Removed: 2019-10-17 22:12:38,188 - DEBUG - Loaded backend TkAgg version unknown.
4846 Removed: 2019-10-17 22:12:38,206 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4847 Removed: 2019-10-17 22:12:38,228 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4848 Removed: 2019-10-17 22:12:38,228 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4849 Removed: 2019-10-17 22:12:38,229 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4850 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
4851 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4852 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4853 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4854 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4855 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4856 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4857 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4858 Removed: 2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4859 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4860 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4861 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4862 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4863 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4864 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4865 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4866 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4867 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4868 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4869 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4870 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4871 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4872 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4873 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4874 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4875 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4876 Removed: 2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4877 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4878 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4879 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4880 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4881 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4882 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4883 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4884 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4885 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4886 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4887 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4888 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4889 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4890 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4891 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4892 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4893 Removed: 2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4894 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4895 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4896 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4897 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4898 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4899 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4900 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4901 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
4902 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4903 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4904 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4905 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4906 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4907 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4908 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4909 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
4910 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4911 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4912 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4913 Removed: 2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4914 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4915 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4916 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4917 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4918 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4919 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4920 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4921 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4922 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4923 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4924 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4925 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4926 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4927 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4928 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4929 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4930 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4931 Removed: 2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4932 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4933 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4934 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4935 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4936 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4937 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4938 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4939 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
4940 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4941 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4942 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4943 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4944 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4945 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4946 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4947 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4948 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4949 Removed: 2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4950 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4951 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4952 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4953 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4954 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4955 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4956 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4957 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4958 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4959 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4960 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4961 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4962 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
4963 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4964 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4965 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4966 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4967 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4968 Removed: 2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4969 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4970 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4971 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4972 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4973 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4974 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4975 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4976 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4977 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4978 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4979 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4980 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4981 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4982 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4983 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4984 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4985 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4986 Removed: 2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4987 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4988 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4989 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4990 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4991 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4992 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
4993 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4994 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
4995 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4996 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4997 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
4998 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4999 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5000 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5001 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5002 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5003 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5004 Removed: 2019-10-17 22:12:38,319 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5005 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
5006 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5007 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5008 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5009 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5010 Removed: 2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5011 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5012 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5013 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5014 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5015 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5016 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5017 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5018 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5019 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5020 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5021 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5022 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5023 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5024 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5025 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5026 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5027 Removed: 2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5028 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5029 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5030 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5031 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5032 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5033 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5034 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5035 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5036 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5037 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5038 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5039 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5040 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5041 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5042 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5043 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5044 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5045 Removed: 2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5046 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5047 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5048 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5049 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5050 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5051 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5052 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5053 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5054 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5055 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5056 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5057 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5058 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5059 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5060 Removed: 2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5061 Removed: 2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5062 Removed: 2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5063 Removed: 2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5064 Removed: 2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5065 Removed: 2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5066 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5067 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5068 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5069 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5070 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5071 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5072 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5073 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5074 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5075 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5076 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5077 Removed: 2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5078 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5079 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5080 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5081 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5082 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5083 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5084 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5085 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5086 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5087 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5088 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5089 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5090 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5091 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5092 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5093 Removed: 2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5094 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5095 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5096 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5097 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5098 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5099 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5100 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5101 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5102 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5103 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5104 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5105 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5106 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5107 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5108 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5109 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5110 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5111 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5112 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5113 Removed: 2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5114 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5115 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5116 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5117 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5118 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5119 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5120 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5121 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5122 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5123 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5124 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5125 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5126 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5127 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5128 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5129 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5130 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5131 Removed: 2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5132 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5133 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5134 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5135 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5136 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5137 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5138 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5139 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5140 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5141 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5142 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5143 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5144 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5145 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5146 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5147 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5148 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5149 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5150 Removed: 2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5151 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5152 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5153 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5154 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5155 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5156 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5157 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5158 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5159 Removed: 2019-10-17 22:12:38,340 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5160 Removed: 2019-10-17 22:12:56,712 - DEBUG - $HOME=/home/blendux
5161 Removed: 2019-10-17 22:12:56,712 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5162 Removed: 2019-10-17 22:12:56,712 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5163 Removed: 2019-10-17 22:12:56,717 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5164 Removed: 2019-10-17 22:12:56,718 - DEBUG - matplotlib version 3.1.1
5165 Removed: 2019-10-17 22:12:56,719 - DEBUG - interactive is False
5166 Removed: 2019-10-17 22:12:56,719 - DEBUG - platform is linux
5167 Removed: 2019-10-17 22:12:56,719 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
5168 Removed: 2019-10-17 22:12:56,754 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5169 Removed: 2019-10-17 22:12:56,756 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5170 Removed: 2019-10-17 22:12:56,858 - DEBUG - Loaded backend qt5agg version unknown.
5171 Removed: 2019-10-17 22:12:56,870 - DEBUG - Loaded backend tkagg version unknown.
5172 Removed: 2019-10-17 22:12:56,870 - DEBUG - Loaded backend TkAgg version unknown.
5173 Removed: 2019-10-17 22:12:56,887 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5174 Removed: 2019-10-17 22:12:56,908 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5175 Removed: 2019-10-17 22:12:56,909 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5176 Removed: 2019-10-17 22:12:56,909 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5177 Removed: 2019-10-17 22:12:56,973 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
5178 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5179 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5180 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5181 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5182 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5183 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5184 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5185 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5186 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5187 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5188 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5189 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5190 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5191 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5192 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5193 Removed: 2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5194 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5195 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5196 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5197 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5198 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5199 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5200 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5201 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5202 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5203 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5204 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5205 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5206 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5207 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5208 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5209 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5210 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5211 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5212 Removed: 2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5213 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5214 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5215 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5216 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5217 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5218 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5219 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5220 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5221 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5222 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5223 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5224 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5225 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5226 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5227 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5228 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5229 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5230 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5231 Removed: 2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5232 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5233 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5234 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5235 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5236 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5237 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5238 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5239 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5240 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5241 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5242 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5243 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5244 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5245 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5246 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5247 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5248 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5249 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5250 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5251 Removed: 2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5252 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5253 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5254 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5255 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5256 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5257 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5258 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5259 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5260 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5261 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5262 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5263 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5264 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5265 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5266 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5267 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5268 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5269 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5270 Removed: 2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5271 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5272 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5273 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5274 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5275 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5276 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5277 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5278 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5279 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5280 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5281 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5282 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5283 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5284 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5285 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5286 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5287 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5288 Removed: 2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5289 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5290 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5291 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5292 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5293 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5294 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5295 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5296 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5297 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5298 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5299 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5300 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5301 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5302 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5303 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5304 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5305 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5306 Removed: 2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5307 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5308 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5309 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5310 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5311 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5312 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5313 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5314 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5315 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5316 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5317 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5318 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5319 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5320 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5321 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5322 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5323 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5324 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5325 Removed: 2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5326 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5327 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5328 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5329 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5330 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5331 Removed: 2019-10-17 22:12:56,982 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5332 Removed: 2019-10-17 22:12:56,991 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
5333 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5334 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5335 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5336 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5337 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5338 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5339 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5340 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5341 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5342 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5343 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5344 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5345 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5346 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5347 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5348 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5349 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5350 Removed: 2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5351 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5352 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5353 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5354 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5355 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5356 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5357 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5358 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5359 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5360 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5361 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5362 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5363 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5364 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5365 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5366 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5367 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5368 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5369 Removed: 2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5370 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5371 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5372 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5373 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5374 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5375 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5376 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5377 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5378 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5379 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5380 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5381 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5382 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5383 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5384 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5385 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5386 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5387 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5388 Removed: 2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5389 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5390 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5391 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5392 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5393 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5394 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5395 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5396 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5397 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5398 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5399 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5400 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5401 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5402 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5403 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5404 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5405 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5406 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5407 Removed: 2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5408 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5409 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5410 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5411 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5412 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5413 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5414 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5415 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5416 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5417 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5418 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5419 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5420 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5421 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5422 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5423 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5424 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5425 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5426 Removed: 2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5427 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5428 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5429 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5430 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5431 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5432 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5433 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5434 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5435 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5436 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5437 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5438 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5439 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5440 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5441 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5442 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5443 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5444 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5445 Removed: 2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5446 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5447 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5448 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5449 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5450 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5451 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5452 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5453 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5454 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5455 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5456 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5457 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5458 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5459 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5460 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5461 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5462 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5463 Removed: 2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5464 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5465 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5466 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5467 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5468 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5469 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5470 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5471 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5472 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5473 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5474 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5475 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5476 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5477 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5478 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5479 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5480 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5481 Removed: 2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5482 Removed: 2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5483 Removed: 2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5484 Removed: 2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5485 Removed: 2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5486 Removed: 2019-10-17 22:12:57,000 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5487 Removed: 2019-10-17 22:13:01,699 - DEBUG - $HOME=/home/blendux
5488 Removed: 2019-10-17 22:13:01,699 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5489 Removed: 2019-10-17 22:13:01,699 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5490 Removed: 2019-10-17 22:13:01,705 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5491 Removed: 2019-10-17 22:13:01,707 - DEBUG - matplotlib version 3.1.1
5492 Removed: 2019-10-17 22:13:01,707 - DEBUG - interactive is False
5493 Removed: 2019-10-17 22:13:01,707 - DEBUG - platform is linux
5494 Removed: 2019-10-17 22:13:01,707 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
5495 Removed: 2019-10-17 22:13:01,742 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5496 Removed: 2019-10-17 22:13:01,743 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5497 Removed: 2019-10-17 22:13:01,844 - DEBUG - Loaded backend qt5agg version unknown.
5498 Removed: 2019-10-17 22:13:01,854 - DEBUG - Loaded backend tkagg version unknown.
5499 Removed: 2019-10-17 22:13:01,855 - DEBUG - Loaded backend TkAgg version unknown.
5500 Removed: 2019-10-17 22:13:01,871 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5501 Removed: 2019-10-17 22:13:01,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5502 Removed: 2019-10-17 22:13:01,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5503 Removed: 2019-10-17 22:13:01,894 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5504 Removed: 2019-10-17 22:13:01,958 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
5505 Removed: 2019-10-17 22:13:01,958 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5506 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5507 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5508 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5509 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5510 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5511 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5512 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5513 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5514 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5515 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5516 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5517 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5518 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5519 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5520 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5521 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5522 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5523 Removed: 2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5524 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5525 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5526 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5527 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5528 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5529 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5530 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5531 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5532 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5533 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5534 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5535 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5536 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5537 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5538 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5539 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5540 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5541 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5542 Removed: 2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5543 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5544 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5545 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5546 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5547 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5548 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5549 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5550 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5551 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5552 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5553 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5554 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5555 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5556 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5557 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5558 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5559 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5560 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5561 Removed: 2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5562 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5563 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5564 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5565 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5566 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5567 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5568 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5569 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5570 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5571 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5572 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5573 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5574 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5575 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5576 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5577 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5578 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5579 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5580 Removed: 2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5581 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5582 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5583 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5584 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5585 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5586 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5587 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5588 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5589 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5590 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5591 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5592 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5593 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5594 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5595 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5596 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5597 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5598 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5599 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5600 Removed: 2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5601 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5602 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5603 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5604 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5605 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5606 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5607 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5608 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5609 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5610 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5611 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5612 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5613 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5614 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5615 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5616 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5617 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5618 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5619 Removed: 2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5620 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5621 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5622 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5623 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5624 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5625 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5626 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5627 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5628 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5629 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5630 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5631 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5632 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5633 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5634 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5635 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5636 Removed: 2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5637 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5638 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5639 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5640 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5641 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5642 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5643 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5644 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5645 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5646 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5647 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5648 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5649 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5650 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5651 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5652 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5653 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5654 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5655 Removed: 2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5656 Removed: 2019-10-17 22:13:01,967 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5657 Removed: 2019-10-17 22:13:01,967 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5658 Removed: 2019-10-17 22:13:01,967 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5659 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
5660 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5661 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5662 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5663 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5664 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5665 Removed: 2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5666 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5667 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5668 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5669 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5670 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5671 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5672 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5673 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5674 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5675 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5676 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5677 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5678 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5679 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5680 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5681 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5682 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5683 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5684 Removed: 2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5685 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5686 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5687 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5688 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5689 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5690 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5691 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5692 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5693 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5694 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5695 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5696 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5697 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5698 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5699 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5700 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5701 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5702 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5703 Removed: 2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5704 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5705 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5706 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5707 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5708 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5709 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5710 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5711 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5712 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5713 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5714 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5715 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5716 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5717 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5718 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5719 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5720 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5721 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5722 Removed: 2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5723 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5724 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5725 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5726 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5727 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5728 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5729 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5730 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5731 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5732 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5733 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5734 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5735 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5736 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5737 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5738 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5739 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5740 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5741 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5742 Removed: 2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5743 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5744 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5745 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5746 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5747 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5748 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5749 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5750 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5751 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5752 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5753 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5754 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5755 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5756 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5757 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5758 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5759 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5760 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5761 Removed: 2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5762 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5763 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5764 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5765 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5766 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5767 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5768 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5769 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5770 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5771 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5772 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5773 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5774 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5775 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5776 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5777 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5778 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5779 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5780 Removed: 2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5781 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5782 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5783 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5784 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5785 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5786 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5787 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5788 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5789 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5790 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5791 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5792 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5793 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5794 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5795 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5796 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5797 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5798 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5799 Removed: 2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5800 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5801 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5802 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5803 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5804 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5805 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5806 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5807 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5808 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5809 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5810 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5811 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5812 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5813 Removed: 2019-10-17 22:13:01,986 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5814 Removed: 2019-10-17 22:14:09,618 - DEBUG - $HOME=/home/blendux
5815 Removed: 2019-10-17 22:14:09,618 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5816 Removed: 2019-10-17 22:14:09,618 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5817 Removed: 2019-10-17 22:14:09,623 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5818 Removed: 2019-10-17 22:14:09,625 - DEBUG - matplotlib version 3.1.1
5819 Removed: 2019-10-17 22:14:09,625 - DEBUG - interactive is False
5820 Removed: 2019-10-17 22:14:09,625 - DEBUG - platform is linux
5821 Removed: 2019-10-17 22:14:09,625 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
5822 Removed: 2019-10-17 22:14:09,662 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5823 Removed: 2019-10-17 22:14:09,663 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5824 Removed: 2019-10-17 22:14:09,766 - DEBUG - Loaded backend qt5agg version unknown.
5825 Removed: 2019-10-17 22:14:09,777 - DEBUG - Loaded backend tkagg version unknown.
5826 Removed: 2019-10-17 22:14:09,778 - DEBUG - Loaded backend TkAgg version unknown.
5827 Removed: 2019-10-17 22:14:09,794 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5828 Removed: 2019-10-17 22:14:09,815 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5829 Removed: 2019-10-17 22:14:09,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5830 Removed: 2019-10-17 22:14:09,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5831 Removed: 2019-10-17 22:14:09,913 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
5832 Removed: 2019-10-17 22:14:09,913 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5833 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5834 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5835 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5836 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5837 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5838 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5839 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5840 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5841 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5842 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5843 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5844 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5845 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5846 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5847 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5848 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5849 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5850 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5851 Removed: 2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5852 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5853 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5854 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5855 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5856 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5857 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5858 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5859 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5860 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5861 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5862 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5863 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5864 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5865 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5866 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5867 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5868 Removed: 2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5869 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5870 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5871 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5872 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5873 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5874 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5875 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5876 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5877 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5878 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5879 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5880 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5881 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5882 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
5883 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5884 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5885 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5886 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5887 Removed: 2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5888 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5889 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5890 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
5891 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5892 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5893 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5894 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5895 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5896 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5897 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5898 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5899 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5900 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5901 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5902 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5903 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5904 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5905 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5906 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5907 Removed: 2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5908 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5909 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5910 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5911 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5912 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5913 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5914 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5915 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5916 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5917 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5918 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5919 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5920 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
5921 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5922 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5923 Removed: 2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5924 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5925 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5926 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5927 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5928 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5929 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5930 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5931 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5932 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5933 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5934 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5935 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5936 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5937 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5938 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5939 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5940 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5941 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5942 Removed: 2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5943 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
5944 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5945 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5946 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5947 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5948 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5949 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5950 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5951 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5952 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5953 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5954 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5955 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5956 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5957 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5958 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5959 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5960 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5961 Removed: 2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5962 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5963 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5964 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5965 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5966 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5967 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5968 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5969 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5970 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5971 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5972 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5973 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
5974 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5975 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
5976 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5977 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5978 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
5979 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5980 Removed: 2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5981 Removed: 2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5982 Removed: 2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
5983 Removed: 2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5984 Removed: 2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5985 Removed: 2019-10-17 22:14:09,922 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
5986 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
5987 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5988 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5989 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5990 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5991 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5992 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5993 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5994 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5995 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5996 Removed: 2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5997 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5998 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5999 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6000 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6001 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6002 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6003 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6004 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6005 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6006 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6007 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6008 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6009 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6010 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6011 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6012 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6013 Removed: 2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6014 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6015 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6016 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6017 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6018 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6019 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6020 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6021 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6022 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6023 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6024 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6025 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6026 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6027 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6028 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6029 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6030 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6031 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6032 Removed: 2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6033 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6034 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6035 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6036 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6037 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6038 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6039 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6040 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6041 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6042 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6043 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6044 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6045 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6046 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6047 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6048 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6049 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6050 Removed: 2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6051 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6052 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6053 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6054 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6055 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6056 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6057 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6058 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6059 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6060 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6061 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6062 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6063 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6064 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6065 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6066 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6067 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6068 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6069 Removed: 2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6070 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6071 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6072 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6073 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6074 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6075 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6076 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6077 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6078 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6079 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6080 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6081 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6082 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6083 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6084 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6085 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6086 Removed: 2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6087 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6088 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6089 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6090 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6091 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6092 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6093 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6094 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6095 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6096 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6097 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6098 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6099 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6100 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6101 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6102 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6103 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6104 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6105 Removed: 2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6106 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6107 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6108 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6109 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6110 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6111 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6112 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6113 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6114 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6115 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6116 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6117 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6118 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6119 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6120 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6121 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6122 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6123 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6124 Removed: 2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6125 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6126 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6127 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6128 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6129 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6130 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6131 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6132 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6133 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6134 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6135 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6136 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6137 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6138 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6139 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6140 Removed: 2019-10-17 22:14:09,941 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6141 Removed: 2019-10-17 22:14:13,057 - DEBUG - $HOME=/home/blendux
6142 Removed: 2019-10-17 22:14:13,058 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6143 Removed: 2019-10-17 22:14:13,058 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6144 Removed: 2019-10-17 22:14:13,063 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6145 Removed: 2019-10-17 22:14:13,065 - DEBUG - matplotlib version 3.1.1
6146 Removed: 2019-10-17 22:14:13,065 - DEBUG - interactive is False
6147 Removed: 2019-10-17 22:14:13,065 - DEBUG - platform is linux
6148 Removed: 2019-10-17 22:14:13,065 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
6149 Removed: 2019-10-17 22:14:13,102 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6150 Removed: 2019-10-17 22:14:13,103 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6151 Removed: 2019-10-17 22:14:13,207 - DEBUG - Loaded backend qt5agg version unknown.
6152 Removed: 2019-10-17 22:14:13,219 - DEBUG - Loaded backend tkagg version unknown.
6153 Removed: 2019-10-17 22:14:13,219 - DEBUG - Loaded backend TkAgg version unknown.
6154 Removed: 2019-10-17 22:14:13,235 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6155 Removed: 2019-10-17 22:14:13,258 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6156 Removed: 2019-10-17 22:14:13,258 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6157 Removed: 2019-10-17 22:14:13,259 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6158 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
6159 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6160 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6161 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6162 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6163 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6164 Removed: 2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6165 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6166 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6167 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6168 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6169 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6170 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6171 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6172 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6173 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6174 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6175 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6176 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6177 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6178 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6179 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6180 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6181 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6182 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6183 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6184 Removed: 2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6185 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6186 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6187 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6188 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6189 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6190 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6191 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6192 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6193 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6194 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6195 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6196 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6197 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6198 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6199 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6200 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6201 Removed: 2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6202 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6203 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6204 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6205 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6206 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6207 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6208 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6209 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6210 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6211 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6212 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6213 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6214 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6215 Removed: 2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6216 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6217 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6218 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6219 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6220 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6221 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6222 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6223 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6224 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6225 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6226 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6227 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6228 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6229 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6230 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6231 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6232 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6233 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6234 Removed: 2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6235 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6236 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6237 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6238 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6239 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6240 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6241 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6242 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6243 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6244 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6245 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6246 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6247 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6248 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6249 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6250 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6251 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6252 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6253 Removed: 2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6254 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6255 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6256 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6257 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6258 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6259 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6260 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6261 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6262 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6263 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6264 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6265 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6266 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6267 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6268 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6269 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6270 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6271 Removed: 2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6272 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6273 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6274 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6275 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6276 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6277 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6278 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6279 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6280 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6281 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6282 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6283 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6284 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6285 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6286 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6287 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6288 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6289 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6290 Removed: 2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6291 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6292 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6293 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6294 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6295 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6296 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6297 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6298 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6299 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6300 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6301 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6302 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6303 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6304 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6305 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6306 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6307 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6308 Removed: 2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6309 Removed: 2019-10-17 22:14:13,359 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6310 Removed: 2019-10-17 22:14:13,359 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6311 Removed: 2019-10-17 22:14:13,359 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6312 Removed: 2019-10-17 22:14:13,359 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6313 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
6314 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6315 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6316 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6317 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6318 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6319 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6320 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6321 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6322 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6323 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6324 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6325 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6326 Removed: 2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6327 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6328 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6329 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6330 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6331 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6332 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6333 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6334 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6335 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6336 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6337 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6338 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6339 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6340 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6341 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6342 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6343 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6344 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6345 Removed: 2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6346 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6347 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6348 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6349 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6350 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6351 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6352 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6353 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6354 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6355 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6356 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6357 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6358 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6359 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6360 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6361 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6362 Removed: 2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6363 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6364 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6365 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6366 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6367 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6368 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6369 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6370 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6371 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6372 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6373 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6374 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6375 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6376 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6377 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6378 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6379 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6380 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6381 Removed: 2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6382 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6383 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6384 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6385 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6386 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6387 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6388 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6389 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6390 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6391 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6392 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6393 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6394 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6395 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6396 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6397 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6398 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6399 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6400 Removed: 2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6401 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6402 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6403 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6404 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6405 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6406 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6407 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6408 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6409 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6410 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6411 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6412 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6413 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6414 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6415 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6416 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6417 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6418 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6419 Removed: 2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6420 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6421 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6422 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6423 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6424 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6425 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6426 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6427 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6428 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6429 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6430 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6431 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6432 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6433 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6434 Removed: 2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6435 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6436 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6437 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6438 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6439 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6440 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6441 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6442 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6443 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6444 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6445 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6446 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6447 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6448 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6449 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6450 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6451 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6452 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6453 Removed: 2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6454 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6455 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6456 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6457 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6458 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6459 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6460 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6461 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6462 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6463 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6464 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6465 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6466 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6467 Removed: 2019-10-17 22:14:13,378 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6468 Removed: 2019-10-17 22:14:24,643 - DEBUG - $HOME=/home/blendux
6469 Removed: 2019-10-17 22:14:24,643 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6470 Removed: 2019-10-17 22:14:24,643 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6471 Removed: 2019-10-17 22:14:24,648 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6472 Removed: 2019-10-17 22:14:24,650 - DEBUG - matplotlib version 3.1.1
6473 Removed: 2019-10-17 22:14:24,650 - DEBUG - interactive is False
6474 Removed: 2019-10-17 22:14:24,650 - DEBUG - platform is linux
6475 Removed: 2019-10-17 22:14:24,650 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
6476 Removed: 2019-10-17 22:14:24,686 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6477 Removed: 2019-10-17 22:14:24,687 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6478 Removed: 2019-10-17 22:14:24,788 - DEBUG - Loaded backend qt5agg version unknown.
6479 Removed: 2019-10-17 22:14:24,798 - DEBUG - Loaded backend tkagg version unknown.
6480 Removed: 2019-10-17 22:14:24,798 - DEBUG - Loaded backend TkAgg version unknown.
6481 Removed: 2019-10-17 22:14:24,815 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6482 Removed: 2019-10-17 22:14:24,837 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6483 Removed: 2019-10-17 22:14:24,837 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6484 Removed: 2019-10-17 22:14:24,838 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6485 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
6486 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6487 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6488 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6489 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6490 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6491 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6492 Removed: 2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6493 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6494 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6495 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6496 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6497 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6498 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6499 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6500 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6501 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6502 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6503 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6504 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6505 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6506 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6507 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6508 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6509 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6510 Removed: 2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6511 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6512 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6513 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6514 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6515 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6516 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6517 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6518 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6519 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6520 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6521 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6522 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6523 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6524 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6525 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6526 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6527 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6528 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6529 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6530 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6531 Removed: 2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6532 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6533 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6534 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6535 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6536 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6537 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6538 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6539 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6540 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6541 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6542 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6543 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6544 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6545 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6546 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6547 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6548 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6549 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6550 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6551 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6552 Removed: 2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6553 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6554 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6555 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6556 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6557 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6558 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6559 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6560 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6561 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6562 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6563 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6564 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6565 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6566 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6567 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6568 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6569 Removed: 2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6570 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6571 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6572 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6573 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6574 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6575 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6576 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6577 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6578 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6579 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6580 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6581 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6582 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6583 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6584 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6585 Removed: 2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6586 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6587 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6588 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6589 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6590 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6591 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6592 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6593 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6594 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6595 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6596 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6597 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6598 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6599 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6600 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6601 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6602 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6603 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6604 Removed: 2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6605 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6606 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6607 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6608 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6609 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6610 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6611 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6612 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6613 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6614 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6615 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6616 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6617 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6618 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6619 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6620 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6621 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6622 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6623 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6624 Removed: 2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6625 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6626 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6627 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6628 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6629 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6630 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6631 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6632 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6633 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6634 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6635 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6636 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6637 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6638 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6639 Removed: 2019-10-17 22:14:24,932 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6640 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
6641 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6642 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6643 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6644 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6645 Removed: 2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6646 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6647 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6648 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6649 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6650 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6651 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6652 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6653 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6654 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6655 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6656 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6657 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6658 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6659 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6660 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6661 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6662 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6663 Removed: 2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6664 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6665 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6666 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6667 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6668 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6669 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6670 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6671 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6672 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6673 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6674 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6675 Removed: 2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6676 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6677 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6678 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6679 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6680 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6681 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6682 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6683 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6684 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6685 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6686 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6687 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6688 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6689 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6690 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6691 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6692 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6693 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6694 Removed: 2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6695 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6696 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6697 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6698 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6699 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6700 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6701 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6702 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6703 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6704 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6705 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6706 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6707 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6708 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6709 Removed: 2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6710 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6711 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6712 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6713 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6714 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6715 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6716 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6717 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6718 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6719 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6720 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6721 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6722 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6723 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6724 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6725 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6726 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6727 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6728 Removed: 2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6729 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6730 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6731 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6732 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6733 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6734 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6735 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6736 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6737 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6738 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6739 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6740 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6741 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6742 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6743 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6744 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6745 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6746 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6747 Removed: 2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6748 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6749 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6750 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6751 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6752 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6753 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6754 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6755 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6756 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6757 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6758 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6759 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6760 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6761 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6762 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6763 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6764 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6765 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6766 Removed: 2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6767 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6768 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6769 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6770 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6771 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6772 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6773 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6774 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6775 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6776 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6777 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6778 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6779 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6780 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6781 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6782 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6783 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6784 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6785 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6786 Removed: 2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6787 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6788 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6789 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6790 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6791 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6792 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6793 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6794 Removed: 2019-10-17 22:14:24,952 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6795 Removed: 2019-10-17 22:14:34,287 - DEBUG - $HOME=/home/blendux
6796 Removed: 2019-10-17 22:14:34,287 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6797 Removed: 2019-10-17 22:14:34,287 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6798 Removed: 2019-10-17 22:14:34,292 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6799 Removed: 2019-10-17 22:14:34,294 - DEBUG - matplotlib version 3.1.1
6800 Removed: 2019-10-17 22:14:34,294 - DEBUG - interactive is False
6801 Removed: 2019-10-17 22:14:34,294 - DEBUG - platform is linux
6802 Removed: 2019-10-17 22:14:34,294 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
6803 Removed: 2019-10-17 22:14:34,331 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6804 Removed: 2019-10-17 22:14:34,332 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6805 Removed: 2019-10-17 22:14:34,435 - DEBUG - Loaded backend qt5agg version unknown.
6806 Removed: 2019-10-17 22:14:34,447 - DEBUG - Loaded backend tkagg version unknown.
6807 Removed: 2019-10-17 22:14:34,447 - DEBUG - Loaded backend TkAgg version unknown.
6808 Removed: 2019-10-17 22:14:34,464 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6809 Removed: 2019-10-17 22:14:34,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6810 Removed: 2019-10-17 22:14:34,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6811 Removed: 2019-10-17 22:14:34,487 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6812 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
6813 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6814 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6815 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6816 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6817 Removed: 2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6818 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6819 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6820 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6821 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6822 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6823 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6824 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6825 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6826 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6827 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6828 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6829 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6830 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6831 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6832 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6833 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6834 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6835 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6836 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6837 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6838 Removed: 2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6839 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6840 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6841 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6842 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6843 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6844 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6845 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6846 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6847 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6848 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6849 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6850 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6851 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6852 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6853 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6854 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6855 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6856 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6857 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6858 Removed: 2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6859 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6860 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6861 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6862 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6863 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
6864 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6865 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6866 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6867 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6868 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6869 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6870 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6871 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
6872 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6873 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6874 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6875 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6876 Removed: 2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6877 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6878 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6879 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6880 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6881 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6882 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6883 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6884 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6885 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6886 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6887 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6888 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6889 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6890 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6891 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6892 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6893 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6894 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6895 Removed: 2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6896 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6897 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6898 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6899 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6900 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6901 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
6902 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6903 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6904 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6905 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6906 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6907 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6908 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6909 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6910 Removed: 2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6911 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6912 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6913 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6914 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6915 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6916 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6917 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6918 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6919 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6920 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6921 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6922 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6923 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6924 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
6925 Removed: 2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6926 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6927 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6928 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6929 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6930 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6931 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6932 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6933 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6934 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6935 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6936 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6937 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6938 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6939 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6940 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6941 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6942 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6943 Removed: 2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6944 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6945 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6946 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6947 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6948 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6949 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6950 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6951 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6952 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6953 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6954 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
6955 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6956 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
6957 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6958 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6959 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
6960 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6961 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6962 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6963 Removed: 2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
6964 Removed: 2019-10-17 22:14:34,584 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6965 Removed: 2019-10-17 22:14:34,584 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6966 Removed: 2019-10-17 22:14:34,584 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
6967 Removed: 2019-10-17 22:14:34,594 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
6968 Removed: 2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6969 Removed: 2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6970 Removed: 2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6971 Removed: 2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6972 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6973 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6974 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6975 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6976 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6977 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6978 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6979 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6980 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6981 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6982 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6983 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6984 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6985 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6986 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6987 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6988 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6989 Removed: 2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6990 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6991 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6992 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6993 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6994 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6995 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6996 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6997 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6998 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6999 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7000 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7001 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7002 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7003 Removed: 2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7004 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7005 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7006 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7007 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7008 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7009 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7010 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7011 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7012 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7013 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7014 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7015 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7016 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7017 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7018 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7019 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7020 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7021 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7022 Removed: 2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7023 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7024 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7025 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7026 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7027 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7028 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7029 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7030 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7031 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7032 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7033 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7034 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7035 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7036 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7037 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7038 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7039 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7040 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7041 Removed: 2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7042 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7043 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7044 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7045 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7046 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7047 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7048 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7049 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7050 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7051 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7052 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7053 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7054 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7055 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7056 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7057 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7058 Removed: 2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7059 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7060 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7061 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7062 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7063 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7064 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7065 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7066 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7067 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7068 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7069 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7070 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7071 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7072 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7073 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7074 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7075 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7076 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7077 Removed: 2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7078 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7079 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7080 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7081 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7082 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7083 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7084 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7085 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7086 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7087 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7088 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7089 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7090 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7091 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7092 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7093 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7094 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7095 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7096 Removed: 2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7097 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7098 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7099 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7100 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7101 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7102 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7103 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7104 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7105 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7106 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7107 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7108 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7109 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7110 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7111 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7112 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7113 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7114 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7115 Removed: 2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7116 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7117 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7118 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7119 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7120 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7121 Removed: 2019-10-17 22:14:34,603 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7122 Removed: 2019-10-17 22:15:23,920 - DEBUG - $HOME=/home/blendux
7123 Removed: 2019-10-17 22:15:23,920 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7124 Removed: 2019-10-17 22:15:23,920 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7125 Removed: 2019-10-17 22:15:23,925 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7126 Removed: 2019-10-17 22:15:23,927 - DEBUG - matplotlib version 3.1.1
7127 Removed: 2019-10-17 22:15:23,927 - DEBUG - interactive is False
7128 Removed: 2019-10-17 22:15:23,927 - DEBUG - platform is linux
7129 Removed: 2019-10-17 22:15:23,927 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
7130 Removed: 2019-10-17 22:15:23,962 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7131 Removed: 2019-10-17 22:15:23,964 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7132 Removed: 2019-10-17 22:15:24,065 - DEBUG - Loaded backend qt5agg version unknown.
7133 Removed: 2019-10-17 22:15:24,077 - DEBUG - Loaded backend tkagg version unknown.
7134 Removed: 2019-10-17 22:15:24,077 - DEBUG - Loaded backend TkAgg version unknown.
7135 Removed: 2019-10-17 22:15:24,094 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7136 Removed: 2019-10-17 22:15:24,115 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7137 Removed: 2019-10-17 22:15:24,116 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7138 Removed: 2019-10-17 22:15:24,117 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7139 Removed: 2019-10-17 22:15:24,206 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
7140 Removed: 2019-10-17 22:15:24,206 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7141 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7142 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7143 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7144 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7145 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7146 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7147 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7148 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7149 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7150 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7151 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7152 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7153 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7154 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7155 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7156 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7157 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7158 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7159 Removed: 2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7160 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7161 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7162 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7163 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7164 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7165 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7166 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7167 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7168 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7169 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7170 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7171 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7172 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7173 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7174 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7175 Removed: 2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7176 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7177 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7178 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7179 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7180 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7181 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7182 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7183 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7184 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7185 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7186 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7187 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7188 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7189 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7190 Removed: 2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7191 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7192 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7193 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7194 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7195 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7196 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7197 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7198 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7199 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7200 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7201 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7202 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7203 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7204 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7205 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7206 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7207 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7208 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7209 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7210 Removed: 2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7211 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7212 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7213 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7214 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7215 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7216 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7217 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7218 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7219 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7220 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7221 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7222 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7223 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7224 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7225 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7226 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7227 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7228 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7229 Removed: 2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7230 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7231 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7232 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7233 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7234 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7235 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7236 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7237 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7238 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7239 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7240 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7241 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7242 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7243 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7244 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7245 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7246 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7247 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7248 Removed: 2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7249 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7250 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7251 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7252 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7253 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7254 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7255 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7256 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7257 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7258 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7259 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7260 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7261 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7262 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7263 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7264 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7265 Removed: 2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7266 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7267 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7268 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7269 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7270 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7271 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7272 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7273 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7274 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7275 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7276 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7277 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7278 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7279 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7280 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7281 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7282 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7283 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7284 Removed: 2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7285 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7286 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7287 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7288 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7289 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7290 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7291 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7292 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7293 Removed: 2019-10-17 22:15:24,215 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7294 Removed: 2019-10-17 22:15:24,226 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
7295 Removed: 2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7296 Removed: 2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7297 Removed: 2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7298 Removed: 2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7299 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7300 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7301 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7302 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7303 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7304 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7305 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7306 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7307 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7308 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7309 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7310 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7311 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7312 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7313 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7314 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7315 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7316 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7317 Removed: 2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7318 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7319 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7320 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7321 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7322 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7323 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7324 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7325 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7326 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7327 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7328 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7329 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7330 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7331 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7332 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7333 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7334 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7335 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7336 Removed: 2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7337 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7338 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7339 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7340 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7341 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7342 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7343 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7344 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7345 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7346 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7347 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7348 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7349 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7350 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7351 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7352 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7353 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7354 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7355 Removed: 2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7356 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7357 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7358 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7359 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7360 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7361 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7362 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7363 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7364 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7365 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7366 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7367 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7368 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7369 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7370 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7371 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7372 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7373 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7374 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7375 Removed: 2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7376 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7377 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7378 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7379 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7380 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7381 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7382 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7383 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7384 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7385 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7386 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7387 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7388 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7389 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7390 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7391 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7392 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7393 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7394 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7395 Removed: 2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7396 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7397 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7398 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7399 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7400 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7401 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7402 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7403 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7404 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7405 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7406 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7407 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7408 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7409 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7410 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7411 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7412 Removed: 2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7413 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7414 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7415 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7416 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7417 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7418 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7419 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7420 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7421 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7422 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7423 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7424 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7425 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7426 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7427 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7428 Removed: 2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7429 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7430 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7431 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7432 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7433 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7434 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7435 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7436 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7437 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7438 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7439 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7440 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7441 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7442 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7443 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7444 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7445 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7446 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7447 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7448 Removed: 2019-10-17 22:15:24,234 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7449 Removed: 2019-10-17 22:15:51,767 - DEBUG - $HOME=/home/blendux
7450 Removed: 2019-10-17 22:15:51,767 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7451 Removed: 2019-10-17 22:15:51,767 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7452 Removed: 2019-10-17 22:15:51,772 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7453 Removed: 2019-10-17 22:15:51,774 - DEBUG - matplotlib version 3.1.1
7454 Removed: 2019-10-17 22:15:51,774 - DEBUG - interactive is False
7455 Removed: 2019-10-17 22:15:51,774 - DEBUG - platform is linux
7456 Removed: 2019-10-17 22:15:51,774 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
7457 Removed: 2019-10-17 22:15:51,810 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7458 Removed: 2019-10-17 22:15:51,811 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7459 Removed: 2019-10-17 22:15:51,913 - DEBUG - Loaded backend qt5agg version unknown.
7460 Removed: 2019-10-17 22:15:51,924 - DEBUG - Loaded backend tkagg version unknown.
7461 Removed: 2019-10-17 22:15:51,925 - DEBUG - Loaded backend TkAgg version unknown.
7462 Removed: 2019-10-17 22:15:51,942 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7463 Removed: 2019-10-17 22:15:51,964 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7464 Removed: 2019-10-17 22:15:51,964 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7465 Removed: 2019-10-17 22:15:51,965 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7466 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
7467 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7468 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7469 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7470 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7471 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7472 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7473 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7474 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7475 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7476 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7477 Removed: 2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7478 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7479 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7480 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7481 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7482 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7483 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7484 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7485 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7486 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7487 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7488 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7489 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7490 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7491 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7492 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7493 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7494 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7495 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7496 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7497 Removed: 2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7498 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7499 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7500 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7501 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7502 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7503 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7504 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7505 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7506 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7507 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7508 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7509 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7510 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7511 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7512 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7513 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7514 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7515 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7516 Removed: 2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7517 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7518 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7519 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7520 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7521 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7522 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7523 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7524 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7525 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7526 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7527 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7528 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7529 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7530 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7531 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7532 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7533 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7534 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7535 Removed: 2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7536 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7537 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7538 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7539 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7540 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7541 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7542 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7543 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7544 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7545 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7546 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7547 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7548 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7549 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7550 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7551 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7552 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7553 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7554 Removed: 2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7555 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7556 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7557 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7558 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7559 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7560 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7561 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7562 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7563 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7564 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7565 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7566 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7567 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7568 Removed: 2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7569 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7570 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7571 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7572 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7573 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7574 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7575 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7576 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7577 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7578 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7579 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7580 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7581 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7582 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7583 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7584 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7585 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7586 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7587 Removed: 2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7588 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7589 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7590 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7591 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7592 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7593 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7594 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7595 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7596 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7597 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7598 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7599 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7600 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7601 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7602 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7603 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7604 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7605 Removed: 2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7606 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7607 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7608 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7609 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7610 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7611 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7612 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7613 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7614 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7615 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7616 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7617 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7618 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7619 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7620 Removed: 2019-10-17 22:15:52,064 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7621 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
7622 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7623 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7624 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7625 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7626 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7627 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7628 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7629 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7630 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7631 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7632 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7633 Removed: 2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7634 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7635 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7636 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7637 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7638 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7639 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7640 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7641 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7642 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7643 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7644 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7645 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7646 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7647 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7648 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7649 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7650 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7651 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7652 Removed: 2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7653 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7654 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7655 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7656 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7657 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7658 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7659 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7660 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7661 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7662 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7663 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7664 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7665 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7666 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7667 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7668 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7669 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7670 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7671 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7672 Removed: 2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7673 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7674 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7675 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7676 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7677 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7678 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7679 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7680 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7681 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7682 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7683 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7684 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7685 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7686 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7687 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7688 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7689 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7690 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7691 Removed: 2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7692 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7693 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7694 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7695 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7696 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7697 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7698 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7699 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7700 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7701 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7702 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7703 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7704 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7705 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7706 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7707 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7708 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7709 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7710 Removed: 2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7711 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7712 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7713 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7714 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7715 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7716 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7717 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7718 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7719 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7720 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7721 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7722 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7723 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7724 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7725 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7726 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7727 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7728 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7729 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7730 Removed: 2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7731 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7732 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7733 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7734 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7735 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7736 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7737 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7738 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7739 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7740 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7741 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7742 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7743 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7744 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7745 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7746 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7747 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7748 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7749 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7750 Removed: 2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7751 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7752 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7753 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7754 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7755 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7756 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7757 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7758 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7759 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7760 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7761 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7762 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7763 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7764 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7765 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7766 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7767 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7768 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7769 Removed: 2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7770 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7771 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7772 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7773 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7774 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7775 Removed: 2019-10-17 22:15:52,083 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7776 Removed: 2019-10-17 22:16:09,622 - DEBUG - $HOME=/home/blendux
7777 Removed: 2019-10-17 22:16:09,622 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7778 Removed: 2019-10-17 22:16:09,622 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7779 Removed: 2019-10-17 22:16:09,627 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7780 Removed: 2019-10-17 22:16:09,629 - DEBUG - matplotlib version 3.1.1
7781 Removed: 2019-10-17 22:16:09,629 - DEBUG - interactive is False
7782 Removed: 2019-10-17 22:16:09,629 - DEBUG - platform is linux
7783 Removed: 2019-10-17 22:16:09,629 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
7784 Removed: 2019-10-17 22:16:09,665 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7785 Removed: 2019-10-17 22:16:09,666 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7786 Removed: 2019-10-17 22:16:09,768 - DEBUG - Loaded backend qt5agg version unknown.
7787 Removed: 2019-10-17 22:16:09,779 - DEBUG - Loaded backend tkagg version unknown.
7788 Removed: 2019-10-17 22:16:09,780 - DEBUG - Loaded backend TkAgg version unknown.
7789 Removed: 2019-10-17 22:16:09,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7790 Removed: 2019-10-17 22:16:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7791 Removed: 2019-10-17 22:16:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7792 Removed: 2019-10-17 22:16:09,819 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7793 Removed: 2019-10-17 22:16:09,909 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
7794 Removed: 2019-10-17 22:16:09,909 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7795 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7796 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7797 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7798 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7799 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7800 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7801 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7802 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7803 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7804 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7805 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7806 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7807 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7808 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7809 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7810 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7811 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7812 Removed: 2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7813 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7814 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7815 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7816 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7817 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7818 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7819 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7820 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7821 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7822 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7823 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7824 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7825 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7826 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7827 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7828 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7829 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7830 Removed: 2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7831 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7832 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7833 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7834 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7835 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7836 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7837 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7838 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7839 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7840 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7841 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7842 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7843 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7844 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
7845 Removed: 2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7846 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7847 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7848 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7849 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7850 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7851 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7852 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
7853 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7854 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7855 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7856 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7857 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7858 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7859 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7860 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7861 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7862 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7863 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7864 Removed: 2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7865 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7866 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7867 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7868 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7869 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7870 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7871 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7872 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7873 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7874 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7875 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7876 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7877 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7878 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7879 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7880 Removed: 2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7881 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7882 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
7883 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7884 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7885 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7886 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7887 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7888 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7889 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7890 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7891 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7892 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7893 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7894 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7895 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7896 Removed: 2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7897 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7898 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7899 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7900 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7901 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7902 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7903 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7904 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7905 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
7906 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7907 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7908 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7909 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7910 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7911 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7912 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7913 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7914 Removed: 2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7915 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7916 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7917 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7918 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7919 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7920 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7921 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7922 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7923 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7924 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7925 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7926 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7927 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7928 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7929 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7930 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7931 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7932 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7933 Removed: 2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7934 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7935 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
7936 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7937 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
7938 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7939 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7940 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
7941 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7942 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7943 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7944 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
7945 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7946 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7947 Removed: 2019-10-17 22:16:09,918 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
7948 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
7949 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7950 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7951 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7952 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7953 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7954 Removed: 2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7955 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7956 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7957 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7958 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7959 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7960 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7961 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7962 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7963 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7964 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7965 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7966 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7967 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7968 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7969 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7970 Removed: 2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7971 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7972 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7973 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7974 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7975 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7976 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7977 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7978 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7979 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7980 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7981 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7982 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7983 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7984 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7985 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7986 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7987 Removed: 2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7988 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7989 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7990 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7991 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7992 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7993 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7994 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7995 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7996 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7997 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7998 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7999 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8000 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8001 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8002 Removed: 2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8003 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8004 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8005 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8006 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8007 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8008 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8009 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8010 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8011 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8012 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8013 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8014 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8015 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8016 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8017 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8018 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8019 Removed: 2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8020 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8021 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8022 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8023 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8024 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8025 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8026 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8027 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8028 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8029 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8030 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8031 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8032 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8033 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8034 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8035 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8036 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8037 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8038 Removed: 2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8039 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8040 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8041 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8042 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8043 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8044 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8045 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8046 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8047 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8048 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8049 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8050 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8051 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8052 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8053 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8054 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8055 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8056 Removed: 2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8057 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8058 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8059 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8060 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8061 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8062 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8063 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8064 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8065 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8066 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8067 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8068 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8069 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8070 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8071 Removed: 2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8072 Removed: 2019-10-17 22:16:09,937 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8073 Removed: 2019-10-17 22:16:09,937 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8074 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8075 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8076 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8077 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8078 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8079 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8080 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8081 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8082 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8083 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8084 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8085 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8086 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8087 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8088 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8089 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8090 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8091 Removed: 2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8092 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8093 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8094 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8095 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8096 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8097 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8098 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8099 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8100 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8101 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8102 Removed: 2019-10-17 22:16:09,939 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8103 Removed: 2019-10-17 22:17:04,215 - DEBUG - $HOME=/home/blendux
8104 Removed: 2019-10-17 22:17:04,216 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8105 Removed: 2019-10-17 22:17:04,216 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8106 Removed: 2019-10-17 22:17:04,221 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8107 Removed: 2019-10-17 22:17:04,223 - DEBUG - matplotlib version 3.1.1
8108 Removed: 2019-10-17 22:17:04,223 - DEBUG - interactive is False
8109 Removed: 2019-10-17 22:17:04,223 - DEBUG - platform is linux
8110 Removed: 2019-10-17 22:17:04,223 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
8111 Removed: 2019-10-17 22:17:04,259 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8112 Removed: 2019-10-17 22:17:04,260 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8113 Removed: 2019-10-17 22:17:04,363 - DEBUG - Loaded backend qt5agg version unknown.
8114 Removed: 2019-10-17 22:17:04,375 - DEBUG - Loaded backend tkagg version unknown.
8115 Removed: 2019-10-17 22:17:04,375 - DEBUG - Loaded backend TkAgg version unknown.
8116 Removed: 2019-10-17 22:17:04,391 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8117 Removed: 2019-10-17 22:17:04,414 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8118 Removed: 2019-10-17 22:17:04,414 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
8119 Removed: 2019-10-17 22:17:04,415 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
8120 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
8121 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8122 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8123 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8124 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8125 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8126 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8127 Removed: 2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8128 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8129 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8130 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8131 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8132 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8133 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8134 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8135 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8136 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8137 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8138 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8139 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8140 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8141 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8142 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8143 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8144 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8145 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8146 Removed: 2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8147 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8148 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8149 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8150 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8151 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8152 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8153 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8154 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8155 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8156 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8157 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8158 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8159 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8160 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8161 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8162 Removed: 2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8163 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8164 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8165 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8166 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8167 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8168 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8169 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8170 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8171 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8172 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8173 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8174 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8175 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8176 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8177 Removed: 2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8178 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8179 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8180 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8181 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8182 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8183 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8184 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8185 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8186 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8187 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8188 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8189 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8190 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8191 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8192 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8193 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8194 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8195 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8196 Removed: 2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8197 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8198 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8199 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8200 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8201 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8202 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8203 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8204 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8205 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8206 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8207 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8208 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8209 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8210 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8211 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8212 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8213 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8214 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8215 Removed: 2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8216 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8217 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8218 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8219 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8220 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8221 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8222 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8223 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8224 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8225 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8226 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8227 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8228 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8229 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8230 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8231 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8232 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8233 Removed: 2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8234 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8235 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8236 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8237 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8238 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8239 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8240 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8241 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8242 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8243 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8244 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8245 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8246 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8247 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8248 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8249 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8250 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8251 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8252 Removed: 2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8253 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8254 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8255 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8256 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8257 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8258 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8259 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8260 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8261 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8262 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8263 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8264 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8265 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8266 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8267 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8268 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8269 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8270 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8271 Removed: 2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8272 Removed: 2019-10-17 22:17:04,515 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8273 Removed: 2019-10-17 22:17:04,515 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8274 Removed: 2019-10-17 22:17:04,515 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8275 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
8276 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8277 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8278 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8279 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8280 Removed: 2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8281 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8282 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8283 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8284 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8285 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8286 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8287 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8288 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8289 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8290 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8291 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8292 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8293 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8294 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8295 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8296 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8297 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8298 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8299 Removed: 2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8300 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8301 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8302 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8303 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8304 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8305 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8306 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8307 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8308 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8309 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8310 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8311 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8312 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8313 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8314 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8315 Removed: 2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8316 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8317 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8318 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8319 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8320 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8321 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8322 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8323 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8324 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8325 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8326 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8327 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8328 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8329 Removed: 2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8330 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8331 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8332 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8333 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8334 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8335 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8336 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8337 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8338 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8339 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8340 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8341 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8342 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8343 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8344 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8345 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8346 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8347 Removed: 2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8348 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8349 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8350 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8351 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8352 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8353 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8354 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8355 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8356 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8357 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8358 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8359 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8360 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8361 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8362 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8363 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8364 Removed: 2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8365 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8366 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8367 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8368 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8369 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8370 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8371 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8372 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8373 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8374 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8375 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8376 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8377 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8378 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8379 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8380 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8381 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8382 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8383 Removed: 2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8384 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8385 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8386 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8387 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8388 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8389 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8390 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8391 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8392 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8393 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8394 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8395 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8396 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8397 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8398 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8399 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8400 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8401 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8402 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8403 Removed: 2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8404 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8405 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8406 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8407 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8408 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8409 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8410 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8411 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8412 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8413 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8414 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8415 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8416 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8417 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8418 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8419 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8420 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8421 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8422 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8423 Removed: 2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8424 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8425 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8426 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8427 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8428 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8429 Removed: 2019-10-17 22:17:04,535 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8430 Removed: 2019-10-17 22:18:13,019 - DEBUG - $HOME=/home/blendux
8431 Removed: 2019-10-17 22:18:13,020 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8432 Removed: 2019-10-17 22:18:13,020 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8433 Removed: 2019-10-17 22:18:13,025 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8434 Removed: 2019-10-17 22:18:13,026 - DEBUG - matplotlib version 3.1.1
8435 Removed: 2019-10-17 22:18:13,026 - DEBUG - interactive is False
8436 Removed: 2019-10-17 22:18:13,027 - DEBUG - platform is linux
8437 Removed: 2019-10-17 22:18:13,027 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
8438 Removed: 2019-10-17 22:18:13,061 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8439 Removed: 2019-10-17 22:18:13,062 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8440 Removed: 2019-10-17 22:18:13,157 - DEBUG - Loaded backend qt5agg version unknown.
8441 Removed: 2019-10-17 22:18:13,167 - DEBUG - Loaded backend tkagg version unknown.
8442 Removed: 2019-10-17 22:18:13,167 - DEBUG - Loaded backend TkAgg version unknown.
8443 Removed: 2019-10-17 22:18:13,182 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8444 Removed: 2019-10-17 22:18:13,203 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8445 Removed: 2019-10-17 22:18:13,204 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
8446 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
8447 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8448 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8449 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8450 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8451 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8452 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8453 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8454 Removed: 2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8455 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8456 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8457 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8458 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8459 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8460 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8461 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8462 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8463 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8464 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8465 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8466 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8467 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8468 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8469 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8470 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8471 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8472 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8473 Removed: 2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8474 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8475 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8476 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8477 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8478 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8479 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8480 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8481 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8482 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8483 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8484 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8485 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8486 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8487 Removed: 2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8488 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8489 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8490 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8491 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8492 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8493 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8494 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8495 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8496 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8497 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8498 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8499 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8500 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8501 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8502 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8503 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8504 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8505 Removed: 2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8506 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8507 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8508 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8509 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8510 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8511 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8512 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8513 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8514 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8515 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8516 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8517 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8518 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8519 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8520 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8521 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8522 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8523 Removed: 2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8524 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8525 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8526 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8527 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8528 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8529 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8530 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8531 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8532 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8533 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8534 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8535 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8536 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8537 Removed: 2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8538 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8539 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8540 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8541 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8542 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8543 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8544 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8545 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8546 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8547 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8548 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8549 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8550 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8551 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8552 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8553 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8554 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8555 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8556 Removed: 2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8557 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8558 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8559 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8560 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8561 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8562 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8563 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8564 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8565 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8566 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8567 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8568 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8569 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8570 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8571 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8572 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8573 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8574 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8575 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8576 Removed: 2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8577 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8578 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8579 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8580 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8581 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8582 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8583 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8584 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8585 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8586 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8587 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8588 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8589 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8590 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8591 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8592 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8593 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8594 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8595 Removed: 2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8596 Removed: 2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8597 Removed: 2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8598 Removed: 2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8599 Removed: 2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8600 Removed: 2019-10-17 22:18:13,294 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8601 Removed: 2019-10-17 22:18:13,304 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
8602 Removed: 2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8603 Removed: 2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8604 Removed: 2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8605 Removed: 2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8606 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8607 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8608 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8609 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8610 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8611 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8612 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8613 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8614 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8615 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8616 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8617 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8618 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8619 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8620 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8621 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8622 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8623 Removed: 2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8624 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8625 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8626 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8627 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8628 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8629 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8630 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8631 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8632 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8633 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8634 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8635 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8636 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8637 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8638 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8639 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8640 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8641 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8642 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8643 Removed: 2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8644 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8645 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8646 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8647 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8648 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8649 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8650 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8651 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8652 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8653 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8654 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8655 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8656 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8657 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8658 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8659 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8660 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8661 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8662 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8663 Removed: 2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8664 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8665 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8666 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8667 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8668 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8669 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8670 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8671 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8672 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8673 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8674 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8675 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8676 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8677 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8678 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8679 Removed: 2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8680 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8681 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8682 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8683 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8684 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8685 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8686 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8687 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8688 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8689 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8690 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8691 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8692 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8693 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8694 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8695 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8696 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8697 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8698 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8699 Removed: 2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8700 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8701 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8702 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8703 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8704 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8705 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8706 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8707 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8708 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8709 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8710 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8711 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8712 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8713 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8714 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8715 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8716 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8717 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8718 Removed: 2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8719 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8720 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8721 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8722 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8723 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8724 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8725 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8726 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8727 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8728 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8729 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8730 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8731 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8732 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8733 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8734 Removed: 2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8735 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8736 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8737 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8738 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8739 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8740 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8741 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8742 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8743 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8744 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8745 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8746 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8747 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8748 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8749 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8750 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8751 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8752 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8753 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8754 Removed: 2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8755 Removed: 2019-10-17 22:18:13,313 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8756 Removed: 2019-10-17 22:19:04,391 - DEBUG - $HOME=/home/blendux
8757 Removed: 2019-10-17 22:19:04,391 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8758 Removed: 2019-10-17 22:19:04,391 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8759 Removed: 2019-10-17 22:19:04,396 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8760 Removed: 2019-10-17 22:19:04,398 - DEBUG - matplotlib version 3.1.1
8761 Removed: 2019-10-17 22:19:04,398 - DEBUG - interactive is False
8762 Removed: 2019-10-17 22:19:04,398 - DEBUG - platform is linux
8763 Removed: 2019-10-17 22:19:04,398 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
8764 Removed: 2019-10-17 22:19:04,432 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8765 Removed: 2019-10-17 22:19:04,433 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8766 Removed: 2019-10-17 22:19:04,529 - DEBUG - Loaded backend qt5agg version unknown.
8767 Removed: 2019-10-17 22:19:04,539 - DEBUG - Loaded backend tkagg version unknown.
8768 Removed: 2019-10-17 22:19:04,539 - DEBUG - Loaded backend TkAgg version unknown.
8769 Removed: 2019-10-17 22:19:04,554 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8770 Removed: 2019-10-17 22:19:04,575 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8771 Removed: 2019-10-17 22:19:04,576 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
8772 Removed: 2019-10-17 22:19:04,655 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
8773 Removed: 2019-10-17 22:19:04,655 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8774 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8775 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8776 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8777 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8778 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8779 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8780 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8781 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8782 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8783 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8784 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8785 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8786 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8787 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8788 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8789 Removed: 2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8790 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8791 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8792 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8793 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8794 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8795 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8796 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8797 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8798 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8799 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8800 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8801 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8802 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8803 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8804 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8805 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8806 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8807 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8808 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8809 Removed: 2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8810 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8811 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8812 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8813 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8814 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8815 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8816 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8817 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8818 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8819 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8820 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8821 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8822 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8823 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8824 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8825 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8826 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8827 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8828 Removed: 2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8829 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8830 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8831 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8832 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8833 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8834 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8835 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8836 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8837 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8838 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8839 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8840 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8841 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8842 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8843 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8844 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8845 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8846 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8847 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8848 Removed: 2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8849 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8850 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8851 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8852 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8853 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8854 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8855 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8856 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8857 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8858 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8859 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8860 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8861 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
8862 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8863 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8864 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8865 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8866 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8867 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8868 Removed: 2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8869 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8870 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8871 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8872 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8873 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8874 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8875 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8876 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8877 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8878 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8879 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8880 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8881 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8882 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8883 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8884 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
8885 Removed: 2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8886 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8887 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8888 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8889 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8890 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8891 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8892 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8893 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8894 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8895 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8896 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8897 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8898 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8899 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8900 Removed: 2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8901 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8902 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8903 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8904 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8905 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8906 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8907 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8908 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8909 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8910 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8911 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8912 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8913 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8914 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
8915 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8916 Removed: 2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
8917 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8918 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8919 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
8920 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8921 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8922 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8923 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
8924 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8925 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8926 Removed: 2019-10-17 22:19:04,664 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
8927 Removed: 2019-10-17 22:19:04,674 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
8928 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8929 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8930 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8931 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8932 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8933 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8934 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8935 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8936 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8937 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8938 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8939 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8940 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8941 Removed: 2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8942 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8943 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8944 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8945 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8946 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8947 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8948 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8949 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8950 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8951 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8952 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8953 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8954 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8955 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8956 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8957 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8958 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8959 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8960 Removed: 2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8961 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8962 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8963 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8964 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8965 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8966 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8967 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8968 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8969 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8970 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8971 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8972 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8973 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8974 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8975 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8976 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8977 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8978 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
8979 Removed: 2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8980 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8981 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8982 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8983 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8984 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8985 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8986 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
8987 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8988 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8989 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8990 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8991 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8992 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8993 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8994 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8995 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8996 Removed: 2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8997 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8998 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8999 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
9000 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
9001 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
9002 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
9003 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
9004 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
9005 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
9006 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
9007 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
9008 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
9009 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
9010 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
9011 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
9012 Removed: 2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
9013 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
9014 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
9015 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
9016 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
9017 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
9018 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
9019 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
9020 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
9021 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
9022 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
9023 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
9024 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
9025 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
9026 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
9027 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
9028 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
9029 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
9030 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
9031 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
9032 Removed: 2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
9033 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
9034 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
9035 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9036 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
9037 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
9038 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
9039 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
9040 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
9041 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
9042 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
9043 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
9044 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
9045 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
9046 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
9047 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
9048 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
9049 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
9050 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
9051 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
9052 Removed: 2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
9053 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
9054 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
9055 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
9056 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
9057 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
9058 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
9059 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
9060 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
9061 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
9062 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
9063 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
9064 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
9065 Removed: 2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
9066 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
9067 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
9068 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
9069 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
9070 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
9071 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
9072 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
9073 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
9074 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
9075 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
9076 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
9077 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
9078 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
9079 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
9080 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
9081 Removed: 2019-10-17 22:19:04,683 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
9082 Removed: 2019-10-17 22:19:11,874 - DEBUG - $HOME=/home/blendux
9083 Removed: 2019-10-17 22:19:11,875 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9084 Removed: 2019-10-17 22:19:11,875 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9085 Removed: 2019-10-17 22:19:11,880 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9086 Removed: 2019-10-17 22:19:11,882 - DEBUG - matplotlib version 3.1.1
9087 Removed: 2019-10-17 22:19:11,882 - DEBUG - interactive is False
9088 Removed: 2019-10-17 22:19:11,882 - DEBUG - platform is linux
9089 Removed: 2019-10-17 22:19:11,882 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9090 Removed: 2019-10-17 22:19:11,915 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9091 Removed: 2019-10-17 22:19:11,916 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9092 Removed: 2019-10-17 22:19:12,008 - DEBUG - Loaded backend qt5agg version unknown.
9093 Removed: 2019-10-17 22:19:12,019 - DEBUG - Loaded backend tkagg version unknown.
9094 Removed: 2019-10-17 22:19:12,019 - DEBUG - Loaded backend TkAgg version unknown.
9095 Removed: 2019-10-17 22:19:12,034 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9096 Removed: 2019-10-17 22:19:12,055 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9097 Removed: 2019-10-17 22:19:12,056 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9098 Removed: 2019-10-17 22:19:15,706 - DEBUG - $HOME=/home/blendux
9099 Removed: 2019-10-17 22:19:15,706 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9100 Removed: 2019-10-17 22:19:15,706 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9101 Removed: 2019-10-17 22:19:15,711 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9102 Removed: 2019-10-17 22:19:15,713 - DEBUG - matplotlib version 3.1.1
9103 Removed: 2019-10-17 22:19:15,713 - DEBUG - interactive is False
9104 Removed: 2019-10-17 22:19:15,713 - DEBUG - platform is linux
9105 Removed: 2019-10-17 22:19:15,713 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9106 Removed: 2019-10-17 22:19:15,746 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9107 Removed: 2019-10-17 22:19:15,747 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9108 Removed: 2019-10-17 22:19:15,841 - DEBUG - Loaded backend qt5agg version unknown.
9109 Removed: 2019-10-17 22:19:15,851 - DEBUG - Loaded backend tkagg version unknown.
9110 Removed: 2019-10-17 22:19:15,851 - DEBUG - Loaded backend TkAgg version unknown.
9111 Removed: 2019-10-17 22:19:15,867 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9112 Removed: 2019-10-17 22:19:15,886 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9113 Removed: 2019-10-17 22:19:15,887 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9114 Removed: 2019-10-17 22:20:54,646 - DEBUG - $HOME=/home/blendux
9115 Removed: 2019-10-17 22:20:54,646 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9116 Removed: 2019-10-17 22:20:54,646 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9117 Removed: 2019-10-17 22:20:54,651 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9118 Removed: 2019-10-17 22:20:54,653 - DEBUG - matplotlib version 3.1.1
9119 Removed: 2019-10-17 22:20:54,653 - DEBUG - interactive is False
9120 Removed: 2019-10-17 22:20:54,653 - DEBUG - platform is linux
9121 Removed: 2019-10-17 22:20:54,653 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9122 Removed: 2019-10-17 22:20:54,687 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9123 Removed: 2019-10-17 22:20:54,688 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9124 Removed: 2019-10-17 22:20:54,783 - DEBUG - Loaded backend qt5agg version unknown.
9125 Removed: 2019-10-17 22:20:54,793 - DEBUG - Loaded backend tkagg version unknown.
9126 Removed: 2019-10-17 22:20:54,794 - DEBUG - Loaded backend TkAgg version unknown.
9127 Removed: 2019-10-17 22:20:54,811 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9128 Removed: 2019-10-17 22:20:54,832 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9129 Removed: 2019-10-17 22:20:54,833 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9130 Removed: 2019-10-17 22:21:38,763 - DEBUG - $HOME=/home/blendux
9131 Removed: 2019-10-17 22:21:38,763 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9132 Removed: 2019-10-17 22:21:38,763 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9133 Removed: 2019-10-17 22:21:38,768 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9134 Removed: 2019-10-17 22:21:38,770 - DEBUG - matplotlib version 3.1.1
9135 Removed: 2019-10-17 22:21:38,770 - DEBUG - interactive is False
9136 Removed: 2019-10-17 22:21:38,770 - DEBUG - platform is linux
9137 Removed: 2019-10-17 22:21:38,770 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9138 Removed: 2019-10-17 22:21:38,803 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9139 Removed: 2019-10-17 22:21:38,804 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9140 Removed: 2019-10-17 22:21:38,898 - DEBUG - Loaded backend qt5agg version unknown.
9141 Removed: 2019-10-17 22:21:38,908 - DEBUG - Loaded backend tkagg version unknown.
9142 Removed: 2019-10-17 22:21:38,908 - DEBUG - Loaded backend TkAgg version unknown.
9143 Removed: 2019-10-17 22:21:38,927 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9144 Removed: 2019-10-17 22:21:38,947 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9145 Removed: 2019-10-17 22:21:38,948 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9146 Removed: 2019-10-17 22:22:10,978 - DEBUG - $HOME=/home/blendux
9147 Removed: 2019-10-17 22:22:10,978 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9148 Removed: 2019-10-17 22:22:10,979 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9149 Removed: 2019-10-17 22:22:10,984 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9150 Removed: 2019-10-17 22:22:10,985 - DEBUG - matplotlib version 3.1.1
9151 Removed: 2019-10-17 22:22:10,986 - DEBUG - interactive is False
9152 Removed: 2019-10-17 22:22:10,986 - DEBUG - platform is linux
9153 Removed: 2019-10-17 22:22:10,986 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9154 Removed: 2019-10-17 22:22:11,020 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9155 Removed: 2019-10-17 22:22:11,021 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9156 Removed: 2019-10-17 22:22:11,115 - DEBUG - Loaded backend qt5agg version unknown.
9157 Removed: 2019-10-17 22:22:11,124 - DEBUG - Loaded backend tkagg version unknown.
9158 Removed: 2019-10-17 22:22:11,125 - DEBUG - Loaded backend TkAgg version unknown.
9159 Removed: 2019-10-17 22:22:11,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9160 Removed: 2019-10-17 22:22:11,161 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9161 Removed: 2019-10-17 22:22:11,162 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9162 Removed: 2019-10-17 22:22:30,265 - DEBUG - $HOME=/home/blendux
9163 Removed: 2019-10-17 22:22:30,265 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9164 Removed: 2019-10-17 22:22:30,265 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9165 Removed: 2019-10-17 22:22:30,270 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9166 Removed: 2019-10-17 22:22:30,272 - DEBUG - matplotlib version 3.1.1
9167 Removed: 2019-10-17 22:22:30,272 - DEBUG - interactive is False
9168 Removed: 2019-10-17 22:22:30,272 - DEBUG - platform is linux
9169 Removed: 2019-10-17 22:22:30,272 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9170 Removed: 2019-10-17 22:22:30,305 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9171 Removed: 2019-10-17 22:22:30,307 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9172 Removed: 2019-10-17 22:22:30,399 - DEBUG - Loaded backend qt5agg version unknown.
9173 Removed: 2019-10-17 22:22:30,409 - DEBUG - Loaded backend tkagg version unknown.
9174 Removed: 2019-10-17 22:22:30,410 - DEBUG - Loaded backend TkAgg version unknown.
9175 Removed: 2019-10-17 22:22:30,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9176 Removed: 2019-10-17 22:22:30,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9177 Removed: 2019-10-17 22:22:30,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9178 Removed: 2019-10-17 22:24:00,604 - DEBUG - $HOME=/home/blendux
9179 Removed: 2019-10-17 22:24:00,604 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9180 Removed: 2019-10-17 22:24:00,605 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9181 Removed: 2019-10-17 22:24:00,610 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9182 Removed: 2019-10-17 22:24:00,611 - DEBUG - matplotlib version 3.1.1
9183 Removed: 2019-10-17 22:24:00,611 - DEBUG - interactive is False
9184 Removed: 2019-10-17 22:24:00,611 - DEBUG - platform is linux
9185 Removed: 2019-10-17 22:24:00,611 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9186 Removed: 2019-10-17 22:24:00,644 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9187 Removed: 2019-10-17 22:24:00,646 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9188 Removed: 2019-10-17 22:24:00,742 - DEBUG - Loaded backend qt5agg version unknown.
9189 Removed: 2019-10-17 22:24:00,752 - DEBUG - Loaded backend tkagg version unknown.
9190 Removed: 2019-10-17 22:24:00,752 - DEBUG - Loaded backend TkAgg version unknown.
9191 Removed: 2019-10-17 22:24:00,767 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9192 Removed: 2019-10-17 22:24:00,788 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9193 Removed: 2019-10-17 22:24:00,789 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9194 Removed: 2019-10-17 22:28:56,204 - DEBUG - $HOME=/home/blendux
9195 Removed: 2019-10-17 22:28:56,205 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9196 Removed: 2019-10-17 22:28:56,205 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9197 Removed: 2019-10-17 22:28:56,210 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9198 Removed: 2019-10-17 22:28:56,212 - DEBUG - matplotlib version 3.1.1
9199 Removed: 2019-10-17 22:28:56,212 - DEBUG - interactive is False
9200 Removed: 2019-10-17 22:28:56,212 - DEBUG - platform is linux
9201 Removed: 2019-10-17 22:28:56,212 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9202 Removed: 2019-10-17 22:28:56,245 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9203 Removed: 2019-10-17 22:28:56,247 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9204 Removed: 2019-10-17 22:28:56,342 - DEBUG - Loaded backend qt5agg version unknown.
9205 Removed: 2019-10-17 22:28:56,353 - DEBUG - Loaded backend tkagg version unknown.
9206 Removed: 2019-10-17 22:28:56,353 - DEBUG - Loaded backend TkAgg version unknown.
9207 Removed: 2019-10-17 22:28:56,368 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9208 Removed: 2019-10-17 22:28:56,390 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9209 Removed: 2019-10-17 22:28:56,391 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9210 Removed: 2019-10-19 13:27:24,516 - DEBUG - $HOME=/home/blendux
9211 Removed: 2019-10-19 13:27:24,516 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9212 Removed: 2019-10-19 13:27:24,517 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9213 Removed: 2019-10-19 13:27:24,522 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9214 Removed: 2019-10-19 13:27:24,524 - DEBUG - matplotlib version 3.1.1
9215 Removed: 2019-10-19 13:27:24,524 - DEBUG - interactive is False
9216 Removed: 2019-10-19 13:27:24,524 - DEBUG - platform is linux
9217 Removed: 2019-10-19 13:27:24,524 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9218 Removed: 2019-10-19 13:27:24,571 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9219 Removed: 2019-10-19 13:27:24,574 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9220 Removed: 2019-10-19 13:27:24,749 - DEBUG - Loaded backend qt5agg version unknown.
9221 Removed: 2019-10-19 13:27:24,774 - DEBUG - Loaded backend tkagg version unknown.
9222 Removed: 2019-10-19 13:27:24,774 - DEBUG - Loaded backend TkAgg version unknown.
9223 Removed: 2019-10-19 13:27:24,792 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9224 Removed: 2019-10-19 13:27:24,810 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9225 Removed: 2019-10-19 13:27:24,811 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9226 Removed: 2019-10-19 13:27:42,145 - DEBUG - $HOME=/home/blendux
9227 Removed: 2019-10-19 13:27:42,145 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9228 Removed: 2019-10-19 13:27:42,145 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9229 Removed: 2019-10-19 13:27:42,150 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9230 Removed: 2019-10-19 13:27:42,152 - DEBUG - matplotlib version 3.1.1
9231 Removed: 2019-10-19 13:27:42,152 - DEBUG - interactive is False
9232 Removed: 2019-10-19 13:27:42,152 - DEBUG - platform is linux
9233 Removed: 2019-10-19 13:27:42,153 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9234 Removed: 2019-10-19 13:27:42,183 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9235 Removed: 2019-10-19 13:27:42,185 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9236 Removed: 2019-10-19 13:27:42,272 - DEBUG - Loaded backend qt5agg version unknown.
9237 Removed: 2019-10-19 13:27:42,283 - DEBUG - Loaded backend tkagg version unknown.
9238 Removed: 2019-10-19 13:27:42,283 - DEBUG - Loaded backend TkAgg version unknown.
9239 Removed: 2019-10-19 13:27:42,298 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9240 Removed: 2019-10-19 13:27:42,317 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9241 Removed: 2019-10-19 13:27:42,318 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9242 Removed: 2019-10-19 13:30:06,313 - DEBUG - $HOME=/home/blendux
9243 Removed: 2019-10-19 13:30:06,313 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9244 Removed: 2019-10-19 13:30:06,313 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9245 Removed: 2019-10-19 13:30:06,318 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9246 Removed: 2019-10-19 13:30:06,320 - DEBUG - matplotlib version 3.1.1
9247 Removed: 2019-10-19 13:30:06,320 - DEBUG - interactive is False
9248 Removed: 2019-10-19 13:30:06,320 - DEBUG - platform is linux
9249 Removed: 2019-10-19 13:30:06,320 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9250 Removed: 2019-10-19 13:30:06,352 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9251 Removed: 2019-10-19 13:30:06,353 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9252 Removed: 2019-10-19 13:30:06,441 - DEBUG - Loaded backend qt5agg version unknown.
9253 Removed: 2019-10-19 13:30:06,451 - DEBUG - Loaded backend tkagg version unknown.
9254 Removed: 2019-10-19 13:30:06,452 - DEBUG - Loaded backend TkAgg version unknown.
9255 Removed: 2019-10-19 13:30:06,466 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9256 Removed: 2019-10-19 13:30:06,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9257 Removed: 2019-10-19 13:30:06,488 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9258 Removed: 2019-10-19 13:30:33,837 - DEBUG - $HOME=/home/blendux
9259 Removed: 2019-10-19 13:30:33,838 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9260 Removed: 2019-10-19 13:30:33,838 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9261 Removed: 2019-10-19 13:30:33,842 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9262 Removed: 2019-10-19 13:30:33,844 - DEBUG - matplotlib version 3.1.1
9263 Removed: 2019-10-19 13:30:33,844 - DEBUG - interactive is False
9264 Removed: 2019-10-19 13:30:33,844 - DEBUG - platform is linux
9265 Removed: 2019-10-19 13:30:33,844 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9266 Removed: 2019-10-19 13:30:33,876 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9267 Removed: 2019-10-19 13:30:33,877 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9268 Removed: 2019-10-19 13:30:33,966 - DEBUG - Loaded backend qt5agg version unknown.
9269 Removed: 2019-10-19 13:30:33,976 - DEBUG - Loaded backend tkagg version unknown.
9270 Removed: 2019-10-19 13:30:33,976 - DEBUG - Loaded backend TkAgg version unknown.
9271 Removed: 2019-10-19 13:30:33,990 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9272 Removed: 2019-10-19 13:30:34,034 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9273 Removed: 2019-10-19 13:30:34,035 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9274 Removed: 2019-10-19 13:31:04,434 - DEBUG - $HOME=/home/blendux
9275 Removed: 2019-10-19 13:31:04,435 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9276 Removed: 2019-10-19 13:31:04,435 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9277 Removed: 2019-10-19 13:31:04,440 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9278 Removed: 2019-10-19 13:31:04,441 - DEBUG - matplotlib version 3.1.1
9279 Removed: 2019-10-19 13:31:04,441 - DEBUG - interactive is False
9280 Removed: 2019-10-19 13:31:04,441 - DEBUG - platform is linux
9281 Removed: 2019-10-19 13:31:04,441 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9282 Removed: 2019-10-19 13:31:04,473 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9283 Removed: 2019-10-19 13:31:04,474 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9284 Removed: 2019-10-19 13:31:04,563 - DEBUG - Loaded backend qt5agg version unknown.
9285 Removed: 2019-10-19 13:31:04,572 - DEBUG - Loaded backend tkagg version unknown.
9286 Removed: 2019-10-19 13:31:04,573 - DEBUG - Loaded backend TkAgg version unknown.
9287 Removed: 2019-10-19 13:31:04,588 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9288 Removed: 2019-10-19 13:31:04,607 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9289 Removed: 2019-10-19 13:31:04,608 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9290 Removed: 2019-10-19 13:31:30,159 - DEBUG - $HOME=/home/blendux
9291 Removed: 2019-10-19 13:31:30,159 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9292 Removed: 2019-10-19 13:31:30,159 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9293 Removed: 2019-10-19 13:31:30,164 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9294 Removed: 2019-10-19 13:31:30,166 - DEBUG - matplotlib version 3.1.1
9295 Removed: 2019-10-19 13:31:30,166 - DEBUG - interactive is False
9296 Removed: 2019-10-19 13:31:30,166 - DEBUG - platform is linux
9297 Removed: 2019-10-19 13:31:30,166 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9298 Removed: 2019-10-19 13:31:30,198 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9299 Removed: 2019-10-19 13:31:30,199 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9300 Removed: 2019-10-19 13:31:30,287 - DEBUG - Loaded backend qt5agg version unknown.
9301 Removed: 2019-10-19 13:31:30,296 - DEBUG - Loaded backend tkagg version unknown.
9302 Removed: 2019-10-19 13:31:30,297 - DEBUG - Loaded backend TkAgg version unknown.
9303 Removed: 2019-10-19 13:31:30,312 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9304 Removed: 2019-10-19 13:31:30,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9305 Removed: 2019-10-19 13:31:30,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9306 Removed: 2019-10-19 13:31:48,578 - DEBUG - $HOME=/home/blendux
9307 Removed: 2019-10-19 13:31:48,579 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9308 Removed: 2019-10-19 13:31:48,579 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9309 Removed: 2019-10-19 13:31:48,584 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9310 Removed: 2019-10-19 13:31:48,585 - DEBUG - matplotlib version 3.1.1
9311 Removed: 2019-10-19 13:31:48,586 - DEBUG - interactive is False
9312 Removed: 2019-10-19 13:31:48,586 - DEBUG - platform is linux
9313 Removed: 2019-10-19 13:31:48,586 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9314 Removed: 2019-10-19 13:31:48,617 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9315 Removed: 2019-10-19 13:31:48,619 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9316 Removed: 2019-10-19 13:31:48,705 - DEBUG - Loaded backend qt5agg version unknown.
9317 Removed: 2019-10-19 13:31:48,715 - DEBUG - Loaded backend tkagg version unknown.
9318 Removed: 2019-10-19 13:31:48,715 - DEBUG - Loaded backend TkAgg version unknown.
9319 Removed: 2019-10-19 13:31:48,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9320 Removed: 2019-10-19 13:31:48,750 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9321 Removed: 2019-10-19 13:31:48,751 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9322 Removed: 2019-10-19 13:31:48,878 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
9323 Removed: 2019-10-19 13:31:48,878 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
9324 Removed: 2019-10-19 13:31:48,878 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
9325 Removed: 2019-10-19 13:31:48,878 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
9326 Removed: 2019-10-19 13:31:48,878 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
9327 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
9328 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9329 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
9330 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
9331 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
9332 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
9333 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
9334 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
9335 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
9336 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
9337 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
9338 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
9339 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
9340 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
9341 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
9342 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
9343 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
9344 Removed: 2019-10-19 13:31:48,879 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
9345 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
9346 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
9347 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
9348 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9349 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
9350 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
9351 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
9352 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
9353 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
9354 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
9355 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
9356 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
9357 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
9358 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
9359 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
9360 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
9361 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
9362 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
9363 Removed: 2019-10-19 13:31:48,880 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9364 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9365 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
9366 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
9367 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
9368 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
9369 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
9370 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
9371 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
9372 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
9373 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
9374 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
9375 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
9376 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
9377 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
9378 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
9379 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
9380 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
9381 Removed: 2019-10-19 13:31:48,881 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
9382 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
9383 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
9384 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
9385 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
9386 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
9387 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
9388 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9389 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
9390 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
9391 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
9392 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
9393 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
9394 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
9395 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
9396 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
9397 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
9398 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
9399 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
9400 Removed: 2019-10-19 13:31:48,882 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
9401 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
9402 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
9403 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
9404 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
9405 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
9406 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
9407 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
9408 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
9409 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
9410 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
9411 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
9412 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
9413 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
9414 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
9415 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
9416 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
9417 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
9418 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
9419 Removed: 2019-10-19 13:31:48,883 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
9420 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
9421 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
9422 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
9423 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
9424 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
9425 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
9426 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
9427 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
9428 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
9429 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
9430 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9431 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
9432 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
9433 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
9434 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
9435 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
9436 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
9437 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
9438 Removed: 2019-10-19 13:31:48,884 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
9439 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
9440 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
9441 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
9442 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
9443 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
9444 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
9445 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
9446 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
9447 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
9448 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
9449 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
9450 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
9451 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
9452 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
9453 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
9454 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
9455 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
9456 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
9457 Removed: 2019-10-19 13:31:48,885 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
9458 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
9459 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
9460 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
9461 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
9462 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
9463 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
9464 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
9465 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
9466 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
9467 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
9468 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
9469 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
9470 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
9471 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
9472 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
9473 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
9474 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
9475 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
9476 Removed: 2019-10-19 13:31:48,886 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
9477 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
9478 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
9479 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
9480 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
9481 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
9482 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
9483 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9484 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
9485 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
9486 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
9487 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
9488 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
9489 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
9490 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
9491 Removed: 2019-10-19 13:31:48,900 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
9492 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
9493 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
9494 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
9495 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
9496 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
9497 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
9498 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
9499 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
9500 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
9501 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
9502 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
9503 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9504 Removed: 2019-10-19 13:31:48,901 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
9505 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
9506 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
9507 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
9508 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
9509 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
9510 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
9511 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
9512 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
9513 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
9514 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
9515 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
9516 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
9517 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
9518 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9519 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
9520 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
9521 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
9522 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
9523 Removed: 2019-10-19 13:31:48,902 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
9524 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
9525 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
9526 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
9527 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
9528 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
9529 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
9530 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
9531 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
9532 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
9533 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
9534 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
9535 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
9536 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
9537 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
9538 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
9539 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
9540 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
9541 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
9542 Removed: 2019-10-19 13:31:48,903 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
9543 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9544 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
9545 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
9546 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
9547 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
9548 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
9549 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
9550 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
9551 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
9552 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
9553 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
9554 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
9555 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
9556 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
9557 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
9558 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
9559 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
9560 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
9561 Removed: 2019-10-19 13:31:48,904 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
9562 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
9563 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
9564 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
9565 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
9566 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
9567 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
9568 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
9569 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
9570 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
9571 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
9572 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
9573 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
9574 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
9575 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
9576 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
9577 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
9578 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
9579 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
9580 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
9581 Removed: 2019-10-19 13:31:48,905 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
9582 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
9583 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
9584 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
9585 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9586 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
9587 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
9588 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
9589 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
9590 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
9591 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
9592 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
9593 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
9594 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
9595 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
9596 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
9597 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
9598 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
9599 Removed: 2019-10-19 13:31:48,906 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
9600 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
9601 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
9602 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
9603 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
9604 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
9605 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
9606 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
9607 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
9608 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
9609 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
9610 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
9611 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
9612 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
9613 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
9614 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
9615 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
9616 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
9617 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
9618 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
9619 Removed: 2019-10-19 13:31:48,907 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
9620 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
9621 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
9622 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
9623 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
9624 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
9625 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
9626 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
9627 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
9628 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
9629 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
9630 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
9631 Removed: 2019-10-19 13:31:48,908 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
9632 Removed: 2019-10-19 13:32:56,610 - DEBUG - $HOME=/home/blendux
9633 Removed: 2019-10-19 13:32:56,610 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9634 Removed: 2019-10-19 13:32:56,611 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9635 Removed: 2019-10-19 13:32:56,615 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9636 Removed: 2019-10-19 13:32:56,617 - DEBUG - matplotlib version 3.1.1
9637 Removed: 2019-10-19 13:32:56,617 - DEBUG - interactive is False
9638 Removed: 2019-10-19 13:32:56,617 - DEBUG - platform is linux
9639 Removed: 2019-10-19 13:32:56,617 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9640 Removed: 2019-10-19 13:32:56,649 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9641 Removed: 2019-10-19 13:32:56,650 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9642 Removed: 2019-10-19 13:32:56,740 - DEBUG - Loaded backend qt5agg version unknown.
9643 Removed: 2019-10-19 13:32:56,750 - DEBUG - Loaded backend tkagg version unknown.
9644 Removed: 2019-10-19 13:32:56,750 - DEBUG - Loaded backend TkAgg version unknown.
9645 Removed: 2019-10-19 13:32:56,765 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9646 Removed: 2019-10-19 13:32:56,785 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9647 Removed: 2019-10-19 13:32:56,786 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9648 Removed: 2019-10-19 13:33:59,775 - DEBUG - $HOME=/home/blendux
9649 Removed: 2019-10-19 13:33:59,775 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9650 Removed: 2019-10-19 13:33:59,775 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9651 Removed: 2019-10-19 13:33:59,780 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9652 Removed: 2019-10-19 13:33:59,782 - DEBUG - matplotlib version 3.1.1
9653 Removed: 2019-10-19 13:33:59,782 - DEBUG - interactive is False
9654 Removed: 2019-10-19 13:33:59,782 - DEBUG - platform is linux
9655 Removed: 2019-10-19 13:33:59,782 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'resources', 'resources.materials', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', 'math', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', '_hashlib', 'hashlib', '_blake2', '_sha3', 'random', 'bisect', '_bisect', '_random', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9656 Removed: 2019-10-19 13:33:59,814 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9657 Removed: 2019-10-19 13:33:59,816 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9658 Removed: 2019-10-19 13:33:59,903 - DEBUG - Loaded backend qt5agg version unknown.
9659 Removed: 2019-10-19 13:33:59,913 - DEBUG - Loaded backend tkagg version unknown.
9660 Removed: 2019-10-19 13:33:59,913 - DEBUG - Loaded backend TkAgg version unknown.
9661 Removed: 2019-10-19 13:33:59,927 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9662 Removed: 2019-10-19 13:33:59,946 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9663 Removed: 2019-10-19 13:33:59,947 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9664 Removed: 2019-10-19 13:38:38,653 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9665 Removed: 2019-10-19 13:38:38,671 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9666 Removed: 2019-10-19 13:38:38,672 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9667 Removed: 2019-10-19 13:54:31,121 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9668 Removed: 2019-10-19 13:54:31,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9669 Removed: 2019-10-19 13:55:12,952 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9670 Removed: 2019-10-19 13:55:12,972 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9671 Removed: 2019-10-19 13:55:29,386 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9672 Removed: 2019-10-19 13:55:29,405 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9673 Removed: 2019-10-19 13:56:25,811 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9674 Removed: 2019-10-19 13:56:25,830 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9675 Removed: 2019-10-19 13:58:52,465 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9676 Removed: 2019-10-19 13:58:52,483 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9677 Removed: 2019-10-19 13:59:49,788 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9678 Removed: 2019-10-19 13:59:49,809 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9679 Removed: 2019-10-19 14:04:11,482 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9680 Removed: 2019-10-19 14:04:11,503 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9681 Removed: 2019-10-19 14:04:26,522 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9682 Removed: 2019-10-19 14:04:26,542 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9683 Removed: 2019-10-19 14:04:26,543 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9684 Removed: 2019-10-19 14:04:40,446 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9685 Removed: 2019-10-19 14:04:40,466 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9686 Removed: 2019-10-19 14:04:40,467 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9687 Removed: 2019-10-19 14:04:44,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9688 Removed: 2019-10-19 14:04:44,265 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9689 Removed: 2019-10-19 14:04:44,266 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9690 Removed: 2019-10-19 14:04:48,645 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9691 Removed: 2019-10-19 14:04:48,664 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9692 Removed: 2019-10-19 14:04:48,665 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9693 Removed: 2019-10-19 14:05:24,981 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9694 Removed: 2019-10-19 14:05:25,000 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9695 Removed: 2019-10-19 14:05:25,001 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9696 Removed: 2019-10-19 14:06:28,965 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9697 Removed: 2019-10-19 14:06:28,984 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9698 Removed: 2019-10-19 14:06:28,985 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9699 Removed: 2019-10-19 14:06:59,114 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9700 Removed: 2019-10-19 14:06:59,134 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9701 Removed: 2019-10-19 14:06:59,135 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9702 Removed: 2019-10-19 14:08:46,335 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9703 Removed: 2019-10-19 14:08:46,355 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9704 Removed: 2019-10-19 14:08:46,356 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9705 Removed: 2019-10-19 14:09:09,261 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9706 Removed: 2019-10-19 14:09:09,281 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9707 Removed: 2019-10-19 14:09:09,282 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9708 Removed: 2019-10-19 14:10:03,883 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9709 Removed: 2019-10-19 14:10:03,901 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9710 Removed: 2019-10-19 14:10:03,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9711 Removed: 2019-10-19 14:25:20,005 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9712 Removed: 2019-10-19 14:25:20,024 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9713 Removed: 2019-10-19 14:25:20,025 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9714 Removed: 2019-10-19 14:30:21,842 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9715 Removed: 2019-10-19 14:30:21,860 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9716 Removed: 2019-10-19 14:30:21,861 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9717 Removed: 2019-10-19 14:35:25,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9718 Removed: 2019-10-19 14:35:25,836 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9719 Removed: 2019-10-19 14:35:25,836 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9720 Removed: 2019-10-19 14:38:02,841 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9721 Removed: 2019-10-19 14:38:02,862 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9722 Removed: 2019-10-19 14:38:02,863 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9723 Removed: 2019-10-19 14:38:28,781 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9724 Removed: 2019-10-19 14:38:28,801 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9725 Removed: 2019-10-19 14:38:28,802 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9726 Removed: 2019-10-19 14:40:46,061 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9727 Removed: 2019-10-19 14:40:46,080 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9728 Removed: 2019-10-19 14:40:46,081 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9729 Removed: 2019-10-19 14:43:25,526 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9730 Removed: 2019-10-19 14:43:25,545 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9731 Removed: 2019-10-19 14:43:25,546 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9732 Removed: 2019-10-19 14:43:37,410 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9733 Removed: 2019-10-19 14:43:37,430 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9734 Removed: 2019-10-19 14:43:37,431 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9735 Removed: 2019-10-19 14:43:39,920 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9736 Removed: 2019-10-19 14:43:39,939 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9737 Removed: 2019-10-19 14:43:39,941 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9738 Removed: 2019-10-19 14:44:08,265 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9739 Removed: 2019-10-19 14:44:08,283 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9740 Removed: 2019-10-19 14:44:08,284 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9741 Removed: 2019-10-19 14:44:11,058 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9742 Removed: 2019-10-19 14:44:11,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9743 Removed: 2019-10-19 14:44:11,079 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9744 Removed: 2019-10-19 14:44:38,693 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9745 Removed: 2019-10-19 14:44:38,737 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9746 Removed: 2019-10-19 14:44:38,738 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9747 Removed: 2019-10-19 14:46:01,472 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9748 Removed: 2019-10-19 14:46:01,492 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9749 Removed: 2019-10-19 14:46:01,493 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9750 Removed: 2019-10-19 14:46:22,051 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9751 Removed: 2019-10-19 14:46:22,071 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9752 Removed: 2019-10-19 14:46:22,072 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9753 Removed: 2019-10-19 14:47:36,392 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9754 Removed: 2019-10-19 14:47:36,412 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9755 Removed: 2019-10-19 14:47:36,413 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9756 Removed: 2019-10-19 14:48:18,770 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9757 Removed: 2019-10-19 14:48:18,790 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9758 Removed: 2019-10-19 14:48:18,791 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9759 Removed: 2019-10-19 14:49:14,694 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9760 Removed: 2019-10-19 14:49:14,715 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9761 Removed: 2019-10-19 14:49:14,716 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9762 Removed: 2019-10-19 14:50:03,636 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9763 Removed: 2019-10-19 14:50:03,656 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9764 Removed: 2019-10-19 14:50:03,657 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9765 Removed: 2019-10-19 14:50:03,766 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9766 Removed: 2019-10-19 14:51:29,096 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9767 Removed: 2019-10-19 14:51:29,116 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9768 Removed: 2019-10-19 14:51:29,117 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9769 Removed: 2019-10-19 14:52:05,407 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9770 Removed: 2019-10-19 14:52:05,427 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9771 Removed: 2019-10-19 14:52:05,428 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9772 Removed: 2019-10-19 14:52:05,439 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9773 Removed: 2019-10-19 14:52:05,451 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9774 Removed: 2019-10-19 14:52:05,463 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9775 Removed: 2019-10-19 14:52:05,475 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9776 Removed: 2019-10-19 14:52:05,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9777 Removed: 2019-10-19 14:52:05,498 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9778 Removed: 2019-10-19 14:52:05,509 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9779 Removed: 2019-10-19 14:52:05,521 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9780 Removed: 2019-10-19 14:52:05,533 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9781 Removed: 2019-10-19 14:52:05,544 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9782 Removed: 2019-10-19 14:56:45,789 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9783 Removed: 2019-10-19 14:56:45,808 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9784 Removed: 2019-10-19 14:56:45,809 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9785 Removed: 2019-10-19 14:57:00,745 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9786 Removed: 2019-10-19 14:57:00,765 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9787 Removed: 2019-10-19 14:57:00,766 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9788 Removed: 2019-10-19 14:57:00,778 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9789 Removed: 2019-10-19 14:57:00,789 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9790 Removed: 2019-10-19 14:57:00,800 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9791 Removed: 2019-10-19 14:57:00,812 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9792 Removed: 2019-10-19 14:57:00,849 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9793 Removed: 2019-10-19 14:57:00,861 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9794 Removed: 2019-10-19 14:57:00,872 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9795 Removed: 2019-10-19 14:57:00,883 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9796 Removed: 2019-10-19 14:57:00,895 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9797 Removed: 2019-10-19 14:57:00,906 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
9798 Removed: 2019-10-19 14:58:09,048 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9799 Removed: 2019-10-19 14:58:09,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9800 Removed: 2019-10-19 14:58:09,070 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9801 Removed: 2019-10-19 14:58:09,082 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4854_tree.txt
9802 Removed: 2019-10-19 14:58:09,094 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1540_tree.txt
9803 Removed: 2019-10-19 14:58:09,106 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8092_tree.txt
9804 Removed: 2019-10-19 14:58:09,118 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2839_tree.txt
9805 Removed: 2019-10-19 14:58:09,130 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7512_tree.txt
9806 Removed: 2019-10-19 14:58:09,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8127_tree.txt
9807 Removed: 2019-10-19 14:58:09,153 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6052_tree.txt
9808 Removed: 2019-10-19 14:58:09,165 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1718_tree.txt
9809 Removed: 2019-10-19 14:58:09,177 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7208_tree.txt
9810 Removed: 2019-10-19 14:58:09,188 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1910_tree.txt
9811 Removed: 2019-10-19 15:00:35,777 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9812 Removed: 2019-10-19 15:00:35,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9813 Removed: 2019-10-19 15:00:35,798 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9814 Removed: 2019-10-19 15:00:35,809 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3406_tree.txt
9815 Removed: 2019-10-19 15:00:35,821 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3587_tree.txt
9816 Removed: 2019-10-19 15:00:35,833 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9420_tree.txt
9817 Removed: 2019-10-19 15:00:35,844 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1543_tree.txt
9818 Removed: 2019-10-19 15:00:35,856 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3870_tree.txt
9819 Removed: 2019-10-19 15:00:35,867 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6625_tree.txt
9820 Removed: 2019-10-19 15:00:35,879 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5532_tree.txt
9821 Removed: 2019-10-19 15:00:35,890 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5589_tree.txt
9822 Removed: 2019-10-19 15:00:35,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9706_tree.txt
9823 Removed: 2019-10-19 15:00:35,914 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6608_tree.txt
9824 Removed: 2019-10-19 15:05:24,019 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9825 Removed: 2019-10-19 15:05:24,037 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9826 Removed: 2019-10-19 15:05:24,038 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9827 Removed: 2019-10-19 15:05:24,048 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7382_tree.txt
9828 Removed: 2019-10-19 15:05:24,060 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3485_tree.txt
9829 Removed: 2019-10-19 15:05:24,071 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2016_tree.txt
9830 Removed: 2019-10-19 15:05:24,082 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1194_tree.txt
9831 Removed: 2019-10-19 15:05:24,094 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7938_tree.txt
9832 Removed: 2019-10-19 15:05:24,106 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9898_tree.txt
9833 Removed: 2019-10-19 15:05:24,117 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7760_tree.txt
9834 Removed: 2019-10-19 15:05:24,129 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5854_tree.txt
9835 Removed: 2019-10-19 15:05:24,140 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9291_tree.txt
9836 Removed: 2019-10-19 15:05:24,151 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7602_tree.txt
9837 Removed: 2019-10-19 15:05:43,074 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9838 Removed: 2019-10-19 15:05:43,094 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9839 Removed: 2019-10-19 15:05:43,095 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9840 Removed: 2019-10-19 15:05:43,106 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1776_tree.txt
9841 Removed: 2019-10-19 15:05:43,118 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4948_tree.txt
9842 Removed: 2019-10-19 15:05:43,129 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6698_tree.txt
9843 Removed: 2019-10-19 15:05:43,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2652_tree.txt
9844 Removed: 2019-10-19 15:05:43,152 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8138_tree.txt
9845 Removed: 2019-10-19 15:05:43,163 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1975_tree.txt
9846 Removed: 2019-10-19 15:05:43,174 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5299_tree.txt
9847 Removed: 2019-10-19 15:05:43,185 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5765_tree.txt
9848 Removed: 2019-10-19 15:05:43,196 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2761_tree.txt
9849 Removed: 2019-10-19 15:05:43,207 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6650_tree.txt
9850 Removed: 2019-10-19 15:07:50,477 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9851 Removed: 2019-10-19 15:07:50,498 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9852 Removed: 2019-10-19 15:07:50,499 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9853 Removed: 2019-10-19 15:07:50,510 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8489_tree.txt
9854 Removed: 2019-10-19 15:07:50,521 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9127_tree.txt
9855 Removed: 2019-10-19 15:07:50,533 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2304_tree.txt
9856 Removed: 2019-10-19 15:07:50,545 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2489_tree.txt
9857 Removed: 2019-10-19 15:07:50,557 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1087_tree.txt
9858 Removed: 2019-10-19 15:07:50,569 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6582_tree.txt
9859 Removed: 2019-10-19 15:07:50,580 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_7781_tree.txt
9860 Removed: 2019-10-19 15:07:50,593 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4472_tree.txt
9861 Removed: 2019-10-19 15:07:50,604 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2328_tree.txt
9862 Removed: 2019-10-19 15:07:50,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8146_tree.txt
9863 Removed: 2019-10-19 15:08:03,176 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9864 Removed: 2019-10-19 15:08:03,197 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9865 Removed: 2019-10-19 15:08:03,198 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9866 Removed: 2019-10-19 15:08:03,209 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5493_tree.txt
9867 Removed: 2019-10-19 15:08:03,220 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9868_tree.txt
9868 Removed: 2019-10-19 15:08:03,232 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3602_tree.txt
9869 Removed: 2019-10-19 15:08:03,244 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6319_tree.txt
9870 Removed: 2019-10-19 15:08:03,256 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8134_tree.txt
9871 Removed: 2019-10-19 15:08:03,268 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3627_tree.txt
9872 Removed: 2019-10-19 15:08:03,279 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3228_tree.txt
9873 Removed: 2019-10-19 15:08:03,291 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5040_tree.txt
9874 Removed: 2019-10-19 15:08:03,303 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1172_tree.txt
9875 Removed: 2019-10-19 15:08:03,315 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1025_tree.txt
9876 Removed: 2019-10-19 15:08:22,175 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9877 Removed: 2019-10-19 15:08:22,196 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9878 Removed: 2019-10-19 15:08:22,197 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9879 Removed: 2019-10-19 15:08:22,208 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1610_tree.txt
9880 Removed: 2019-10-19 15:08:22,220 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9685_tree.txt
9881 Removed: 2019-10-19 15:08:22,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_5293_tree.txt
9882 Removed: 2019-10-19 15:08:22,243 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1515_tree.txt
9883 Removed: 2019-10-19 15:08:22,255 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9450_tree.txt
9884 Removed: 2019-10-19 15:09:16,504 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9885 Removed: 2019-10-19 15:09:16,524 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9886 Removed: 2019-10-19 15:09:16,525 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9887 Removed: 2019-10-19 15:09:16,545 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8532_tree.txt
9888 Removed: 2019-10-19 15:09:16,567 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_6201_tree.txt
9889 Removed: 2019-10-19 15:09:16,590 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_9508_tree.txt
9890 Removed: 2019-10-19 15:09:16,612 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_8637_tree.txt
9891 Removed: 2019-10-19 15:09:16,635 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_2043_tree.txt
9892 Removed: 2019-10-19 15:09:45,671 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9893 Removed: 2019-10-19 15:09:45,692 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9894 Removed: 2019-10-19 15:09:45,693 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9895 Removed: 2019-10-19 15:09:45,715 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1531_tree.txt
9896 Removed: 2019-10-19 15:09:45,738 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4784_tree.txt
9897 Removed: 2019-10-19 15:09:45,760 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_1265_tree.txt
9898 Removed: 2019-10-19 15:09:45,783 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_4292_tree.txt
9899 Removed: 2019-10-19 15:09:45,805 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/default_aircraft_3669_tree.txt
9900 Removed: 2019-10-19 15:12:33,214 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9901 Removed: 2019-10-19 15:12:33,234 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9902 Removed: 2019-10-19 15:12:33,235 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9903 Removed: 2019-10-19 15:12:42,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9904 Removed: 2019-10-19 15:12:42,515 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9905 Removed: 2019-10-19 15:12:42,516 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9906 Removed: 2019-10-19 15:14:45,507 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9907 Removed: 2019-10-19 15:14:45,527 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9908 Removed: 2019-10-19 15:14:45,528 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9909 Removed: 2019-10-19 15:18:04,353 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9910 Removed: 2019-10-19 15:18:04,374 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9911 Removed: 2019-10-19 15:18:04,375 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9912 Removed: 2019-10-19 15:24:43,598 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9913 Removed: 2019-10-19 15:24:43,616 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9914 Removed: 2019-10-19 15:24:43,617 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9915 Removed: 2019-10-19 15:24:54,708 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9916 Removed: 2019-10-19 15:24:54,727 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9917 Removed: 2019-10-19 15:24:54,728 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9918 Removed: 2019-10-19 15:25:09,637 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9919 Removed: 2019-10-19 15:25:09,658 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9920 Removed: 2019-10-19 15:25:09,659 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9921 Removed: 2019-10-19 15:39:32,551 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9922 Removed: 2019-10-19 15:39:32,569 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9923 Removed: 2019-10-19 15:39:32,570 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9924 Removed: 2019-10-19 15:39:41,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9925 Removed: 2019-10-19 15:39:41,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9926 Removed: 2019-10-19 15:39:41,271 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9927 Removed: 2019-10-19 15:40:15,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9928 Removed: 2019-10-19 15:40:15,748 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9929 Removed: 2019-10-19 15:40:15,749 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9930 Removed: 2019-10-19 15:40:31,850 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9931 Removed: 2019-10-19 15:40:31,870 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9932 Removed: 2019-10-19 15:40:31,871 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9933 Removed: 2019-10-19 16:34:16,535 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9934 Removed: 2019-10-19 16:34:16,553 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9935 Removed: 2019-10-19 16:34:16,554 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9936 Removed: 2019-10-19 16:37:11,319 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9937 Removed: 2019-10-19 16:37:11,363 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9938 Removed: 2019-10-19 16:37:11,364 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9939 Removed: 2019-10-19 16:42:32,659 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9940 Removed: 2019-10-19 16:42:32,677 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9941 Removed: 2019-10-19 16:42:32,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9942 Removed: 2019-10-19 16:43:29,721 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9943 Removed: 2019-10-19 16:43:29,740 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9944 Removed: 2019-10-19 16:43:29,741 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9945 Removed: 2019-10-19 16:45:38,963 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9946 Removed: 2019-10-19 16:45:38,982 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9947 Removed: 2019-10-19 16:45:38,983 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9948 Removed: 2019-10-19 16:47:30,709 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9949 Removed: 2019-10-19 16:47:30,729 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9950 Removed: 2019-10-19 16:47:30,730 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9951 Removed: 2019-10-19 16:50:06,434 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9952 Removed: 2019-10-19 16:50:06,454 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9953 Removed: 2019-10-19 16:50:06,455 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9954 Removed: 2019-10-19 16:54:01,389 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9955 Removed: 2019-10-19 16:54:01,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9956 Removed: 2019-10-19 16:54:01,409 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9957 Removed: 2019-10-19 16:54:10,761 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9958 Removed: 2019-10-19 16:54:10,780 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9959 Removed: 2019-10-19 16:54:10,781 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9960 Removed: 2019-10-19 16:54:31,226 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9961 Removed: 2019-10-19 16:54:31,244 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9962 Removed: 2019-10-19 16:54:31,245 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9963 Removed: 2019-10-19 16:54:58,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9964 Removed: 2019-10-19 16:54:58,352 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9965 Removed: 2019-10-19 16:54:58,353 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9966 Removed: 2019-10-19 16:55:07,378 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9967 Removed: 2019-10-19 16:55:07,397 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9968 Removed: 2019-10-19 16:55:07,398 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9969 Removed: 2019-10-19 17:03:36,416 - DEBUG - $HOME=/home/blendux
9970 Removed: 2019-10-19 17:03:36,416 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9971 Removed: 2019-10-19 17:03:36,416 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9972 Removed: 2019-10-19 17:03:36,421 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9973 Removed: 2019-10-19 17:03:36,422 - DEBUG - matplotlib version 3.1.1
9974 Removed: 2019-10-19 17:03:36,423 - DEBUG - interactive is False
9975 Removed: 2019-10-19 17:03:36,423 - DEBUG - platform is linux
9976 Removed: 2019-10-19 17:03:36,423 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'random', 'math', 'hashlib', '_hashlib', '_blake2', '_sha3', 'bisect', '_bisect', '_random', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'datetime', 'time', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'collections.abc', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'threading', 'traceback', 'linecache', 'tokenize', 'token', '_weakrefset', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'weakref', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'logging', 'string', '_string', 'atexit', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
9977 Removed: 2019-10-19 17:03:36,455 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9978 Removed: 2019-10-19 17:03:36,456 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9979 Removed: 2019-10-19 17:03:36,546 - DEBUG - Loaded backend qt5agg version unknown.
9980 Removed: 2019-10-19 17:03:36,555 - DEBUG - Loaded backend tkagg version unknown.
9981 Removed: 2019-10-19 17:03:36,556 - DEBUG - Loaded backend TkAgg version unknown.
9982 Removed: 2019-10-19 17:10:26,563 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9983 Removed: 2019-10-19 17:10:26,584 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9984 Removed: 2019-10-19 17:10:26,585 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9985 Removed: 2019-10-19 17:11:58,605 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9986 Removed: 2019-10-19 17:11:58,626 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9987 Removed: 2019-10-19 17:11:58,627 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9988 Removed: 2019-10-19 17:12:09,918 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9989 Removed: 2019-10-19 17:12:09,939 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9990 Removed: 2019-10-19 17:12:09,940 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9991 Removed: 2019-10-19 17:12:56,867 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9992 Removed: 2019-10-19 17:12:56,888 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9993 Removed: 2019-10-19 17:12:56,889 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9994 Removed: 2019-10-19 17:13:35,898 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9995 Removed: 2019-10-19 17:13:35,918 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9996 Removed: 2019-10-19 17:13:35,919 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9997 Removed: 2019-10-19 17:14:14,860 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9998 Removed: 2019-10-19 17:14:14,880 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9999 Removed: 2019-10-19 17:14:14,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10000 Removed: 2019-10-19 17:14:27,199 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10001 Removed: 2019-10-19 17:14:27,219 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10002 Removed: 2019-10-19 17:14:27,220 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10003 Removed: 2019-10-19 17:15:22,100 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10004 Removed: 2019-10-19 17:15:22,120 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10005 Removed: 2019-10-19 17:15:22,121 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10006 Removed: 2019-10-19 17:18:52,949 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10007 Removed: 2019-10-19 17:18:52,970 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10008 Removed: 2019-10-19 17:18:52,971 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10009 Removed: 2019-10-19 17:19:28,172 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10010 Removed: 2019-10-19 17:19:28,193 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10011 Removed: 2019-10-19 17:19:28,194 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10012 Removed: 2019-10-19 17:20:50,154 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10013 Removed: 2019-10-19 17:20:50,174 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10014 Removed: 2019-10-19 17:20:50,175 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10015 Removed: 2019-10-19 17:22:31,919 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10016 Removed: 2019-10-19 17:22:31,940 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10017 Removed: 2019-10-19 17:22:31,941 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10018 Removed: 2019-10-19 17:22:59,814 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10019 Removed: 2019-10-19 17:22:59,834 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10020 Removed: 2019-10-19 17:22:59,835 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10021 Removed: 2019-10-19 17:25:34,547 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10022 Removed: 2019-10-19 17:25:34,569 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10023 Removed: 2019-10-19 17:25:34,570 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10024 Removed: 2019-10-19 17:34:26,427 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10025 Removed: 2019-10-19 17:34:26,446 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10026 Removed: 2019-10-19 17:34:26,447 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10027 Removed: 2019-10-19 17:34:49,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10028 Removed: 2019-10-19 17:34:49,449 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10029 Removed: 2019-10-19 17:34:49,450 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10030 Removed: 2019-10-19 17:35:40,701 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10031 Removed: 2019-10-19 17:35:40,722 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10032 Removed: 2019-10-19 17:35:40,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10033 Removed: 2019-10-19 17:38:42,619 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10034 Removed: 2019-10-19 17:38:42,639 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10035 Removed: 2019-10-19 17:38:42,640 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10036 Removed: 2019-10-19 17:40:16,774 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10037 Removed: 2019-10-19 17:40:16,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10038 Removed: 2019-10-19 17:40:16,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10039 Removed: 2019-10-19 17:40:34,555 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10040 Removed: 2019-10-19 17:40:34,576 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10041 Removed: 2019-10-19 17:40:34,577 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10042 Removed: 2019-10-19 17:41:35,415 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10043 Removed: 2019-10-19 17:41:35,435 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10044 Removed: 2019-10-19 17:41:35,436 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10045 Removed: 2019-10-19 17:42:01,986 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10046 Removed: 2019-10-19 17:42:02,007 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10047 Removed: 2019-10-19 17:42:02,008 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10048 Removed: 2019-10-19 17:43:45,810 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10049 Removed: 2019-10-19 17:43:45,830 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10050 Removed: 2019-10-19 17:43:45,831 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10051 Removed: 2019-10-19 17:44:26,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10052 Removed: 2019-10-19 17:44:26,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10053 Removed: 2019-10-19 17:44:26,817 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10054 Removed: 2019-10-19 17:49:14,793 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10055 Removed: 2019-10-19 17:49:14,812 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10056 Removed: 2019-10-19 17:49:14,813 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10057 Removed: 2019-10-19 17:50:21,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10058 Removed: 2019-10-19 17:50:21,089 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10059 Removed: 2019-10-19 17:50:21,090 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10060 Removed: 2019-10-19 17:51:38,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10061 Removed: 2019-10-19 17:51:38,290 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10062 Removed: 2019-10-19 17:51:38,291 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10063 Removed: 2019-10-19 17:52:15,800 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10064 Removed: 2019-10-19 17:52:15,820 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10065 Removed: 2019-10-19 17:52:15,821 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10066 Removed: 2019-10-19 17:52:25,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10067 Removed: 2019-10-19 17:52:25,251 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10068 Removed: 2019-10-19 17:52:25,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10069 Removed: 2019-10-19 17:52:31,861 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10070 Removed: 2019-10-19 17:52:31,880 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10071 Removed: 2019-10-19 17:52:31,881 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10072 Removed: 2019-10-19 17:52:46,091 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10073 Removed: 2019-10-19 17:52:46,111 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10074 Removed: 2019-10-19 17:52:46,112 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10075 Removed: 2019-10-19 17:54:08,249 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10076 Removed: 2019-10-19 17:54:08,269 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10077 Removed: 2019-10-19 17:54:08,270 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10078 Removed: 2019-10-19 17:56:11,324 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10079 Removed: 2019-10-19 17:56:11,345 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10080 Removed: 2019-10-19 17:56:11,345 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10081 Removed: 2019-10-19 17:57:34,657 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10082 Removed: 2019-10-19 17:57:34,677 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10083 Removed: 2019-10-19 17:57:34,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10084 Removed: 2019-10-19 17:58:57,703 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10085 Removed: 2019-10-19 17:58:57,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10086 Removed: 2019-10-19 17:58:57,724 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10087 Removed: 2019-10-19 17:59:31,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10088 Removed: 2019-10-19 17:59:31,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10089 Removed: 2019-10-19 17:59:31,496 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10090 Removed: 2019-10-19 17:59:44,120 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10091 Removed: 2019-10-19 17:59:44,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10092 Removed: 2019-10-19 17:59:44,142 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10093 Removed: 2019-10-19 17:59:51,995 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10094 Removed: 2019-10-19 17:59:52,015 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10095 Removed: 2019-10-19 17:59:52,016 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10096 Removed: 2019-10-19 17:59:58,948 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10097 Removed: 2019-10-19 17:59:58,969 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10098 Removed: 2019-10-19 17:59:58,970 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10099 Removed: 2019-10-19 18:00:28,035 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10100 Removed: 2019-10-19 18:00:28,056 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10101 Removed: 2019-10-19 18:00:28,057 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10102 Removed: 2019-10-19 18:01:22,989 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10103 Removed: 2019-10-19 18:01:23,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10104 Removed: 2019-10-19 18:01:23,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10105 Removed: 2019-10-19 18:01:52,882 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10106 Removed: 2019-10-19 18:01:52,902 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10107 Removed: 2019-10-19 18:01:52,903 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10108 Removed: 2019-10-19 18:02:48,318 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10109 Removed: 2019-10-19 18:02:48,338 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10110 Removed: 2019-10-19 18:02:48,339 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10111 Removed: 2019-10-19 18:04:42,031 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10112 Removed: 2019-10-19 18:04:42,051 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10113 Removed: 2019-10-19 18:04:42,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10114 Removed: 2019-10-19 18:04:51,490 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10115 Removed: 2019-10-19 18:04:51,510 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10116 Removed: 2019-10-19 18:04:51,511 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10117 Removed: 2019-10-19 18:05:36,187 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10118 Removed: 2019-10-19 18:05:36,207 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10119 Removed: 2019-10-19 18:05:36,208 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10120 Removed: 2019-10-19 18:05:50,131 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10121 Removed: 2019-10-19 18:05:50,152 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10122 Removed: 2019-10-19 18:05:50,153 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10123 Removed: 2019-10-19 18:07:14,771 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10124 Removed: 2019-10-19 18:07:14,790 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10125 Removed: 2019-10-19 18:07:14,791 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10126 Removed: 2019-10-19 18:07:33,319 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10127 Removed: 2019-10-19 18:07:33,339 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10128 Removed: 2019-10-19 18:07:33,340 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10129 Removed: 2019-10-19 18:08:50,057 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10130 Removed: 2019-10-19 18:08:50,077 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10131 Removed: 2019-10-19 18:08:50,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10132 Removed: 2019-10-19 18:10:01,491 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10133 Removed: 2019-10-19 18:10:01,511 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10134 Removed: 2019-10-19 18:10:01,512 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10135 Removed: 2019-10-19 18:14:43,612 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10136 Removed: 2019-10-19 18:14:43,633 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10137 Removed: 2019-10-19 18:14:43,634 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10138 Removed: 2019-10-19 18:15:42,523 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10139 Removed: 2019-10-19 18:15:42,542 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10140 Removed: 2019-10-19 18:15:42,543 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10141 Removed: 2019-10-19 18:15:51,216 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10142 Removed: 2019-10-19 18:15:51,236 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10143 Removed: 2019-10-19 18:15:51,237 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10144 Removed: 2019-10-19 18:18:31,252 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10145 Removed: 2019-10-19 18:18:31,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10146 Removed: 2019-10-19 18:18:31,273 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10147 Removed: 2019-10-19 18:19:47,442 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10148 Removed: 2019-10-19 18:19:47,461 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10149 Removed: 2019-10-19 18:19:47,462 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10150 Removed: 2019-10-19 18:22:42,368 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10151 Removed: 2019-10-19 18:22:42,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10152 Removed: 2019-10-19 18:22:42,389 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10153 Removed: 2019-10-19 18:23:45,833 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10154 Removed: 2019-10-19 18:23:45,853 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10155 Removed: 2019-10-19 18:23:45,854 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10156 Removed: 2019-10-19 18:24:49,873 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10157 Removed: 2019-10-19 18:24:49,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10158 Removed: 2019-10-19 18:24:49,894 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10159 Removed: 2019-10-19 18:25:18,522 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10160 Removed: 2019-10-19 18:25:18,543 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10161 Removed: 2019-10-19 18:25:18,544 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10162 Removed: 2019-10-19 18:25:50,541 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10163 Removed: 2019-10-19 18:25:50,561 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10164 Removed: 2019-10-19 18:25:50,562 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10165 Removed: 2019-10-19 18:27:50,074 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10166 Removed: 2019-10-19 18:27:50,095 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10167 Removed: 2019-10-19 18:27:50,096 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10168 Removed: 2019-10-19 18:28:51,341 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10169 Removed: 2019-10-19 18:28:51,361 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10170 Removed: 2019-10-19 18:28:51,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10171 Removed: 2019-10-19 18:29:14,842 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10172 Removed: 2019-10-19 18:29:14,862 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10173 Removed: 2019-10-19 18:29:14,863 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10174 Removed: 2019-10-19 18:29:38,740 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10175 Removed: 2019-10-19 18:29:38,759 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10176 Removed: 2019-10-19 18:29:38,760 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10177 Removed: 2019-10-19 18:30:10,427 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10178 Removed: 2019-10-19 18:30:10,447 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10179 Removed: 2019-10-19 18:30:10,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10180 Removed: 2019-10-19 18:30:12,611 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
10181 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10182 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10183 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10184 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10185 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10186 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10187 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10188 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10189 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10190 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10191 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10192 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10193 Removed: 2019-10-19 18:30:12,612 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10194 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10195 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10196 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10197 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10198 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10199 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10200 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10201 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10202 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10203 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10204 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10205 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10206 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10207 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10208 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10209 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
10210 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
10211 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
10212 Removed: 2019-10-19 18:30:12,613 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
10213 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
10214 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
10215 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
10216 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
10217 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
10218 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
10219 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
10220 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
10221 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10222 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10223 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
10224 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
10225 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
10226 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
10227 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
10228 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
10229 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
10230 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
10231 Removed: 2019-10-19 18:30:12,614 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
10232 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
10233 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
10234 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
10235 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
10236 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
10237 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
10238 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
10239 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
10240 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
10241 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
10242 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
10243 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
10244 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
10245 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
10246 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10247 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
10248 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
10249 Removed: 2019-10-19 18:30:12,615 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
10250 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
10251 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
10252 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
10253 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
10254 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
10255 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
10256 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
10257 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
10258 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
10259 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
10260 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
10261 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
10262 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
10263 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
10264 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
10265 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
10266 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
10267 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
10268 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
10269 Removed: 2019-10-19 18:30:12,616 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
10270 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
10271 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
10272 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
10273 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
10274 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
10275 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
10276 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
10277 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
10278 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
10279 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
10280 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
10281 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
10282 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
10283 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
10284 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
10285 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
10286 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
10287 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
10288 Removed: 2019-10-19 18:30:12,617 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10289 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
10290 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
10291 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
10292 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
10293 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
10294 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
10295 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
10296 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
10297 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
10298 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
10299 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
10300 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
10301 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
10302 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
10303 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
10304 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
10305 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
10306 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
10307 Removed: 2019-10-19 18:30:12,618 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
10308 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
10309 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
10310 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
10311 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
10312 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
10313 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
10314 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
10315 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
10316 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
10317 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
10318 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
10319 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
10320 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
10321 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
10322 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
10323 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
10324 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
10325 Removed: 2019-10-19 18:30:12,619 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
10326 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
10327 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
10328 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
10329 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
10330 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
10331 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
10332 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
10333 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
10334 Removed: 2019-10-19 18:30:12,620 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
10335 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
10336 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10337 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10338 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10339 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10340 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10341 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10342 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10343 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10344 Removed: 2019-10-19 18:30:12,633 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10345 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10346 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10347 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10348 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10349 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10350 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10351 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10352 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10353 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10354 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10355 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10356 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10357 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10358 Removed: 2019-10-19 18:30:12,634 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10359 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10360 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10361 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10362 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10363 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10364 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
10365 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
10366 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
10367 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
10368 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
10369 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
10370 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
10371 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
10372 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
10373 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
10374 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
10375 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
10376 Removed: 2019-10-19 18:30:12,635 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10377 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10378 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
10379 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
10380 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
10381 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
10382 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
10383 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
10384 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
10385 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
10386 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
10387 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
10388 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
10389 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
10390 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
10391 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
10392 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
10393 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
10394 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
10395 Removed: 2019-10-19 18:30:12,636 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
10396 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
10397 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
10398 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
10399 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
10400 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
10401 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10402 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
10403 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
10404 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
10405 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
10406 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
10407 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
10408 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
10409 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
10410 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
10411 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
10412 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
10413 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
10414 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
10415 Removed: 2019-10-19 18:30:12,637 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
10416 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
10417 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
10418 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
10419 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
10420 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
10421 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
10422 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
10423 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
10424 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
10425 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
10426 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
10427 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
10428 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
10429 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
10430 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
10431 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
10432 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
10433 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
10434 Removed: 2019-10-19 18:30:12,638 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
10435 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
10436 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
10437 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
10438 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
10439 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
10440 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
10441 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
10442 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
10443 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10444 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
10445 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
10446 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
10447 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
10448 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
10449 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
10450 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
10451 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
10452 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
10453 Removed: 2019-10-19 18:30:12,639 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
10454 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
10455 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
10456 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
10457 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
10458 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
10459 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
10460 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
10461 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
10462 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
10463 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
10464 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
10465 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
10466 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
10467 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
10468 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
10469 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
10470 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
10471 Removed: 2019-10-19 18:30:12,640 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
10472 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
10473 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
10474 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
10475 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
10476 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
10477 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
10478 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
10479 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
10480 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
10481 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
10482 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
10483 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
10484 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
10485 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
10486 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
10487 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
10488 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
10489 Removed: 2019-10-19 18:30:12,641 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
10490 Removed: 2019-10-19 18:30:56,399 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10491 Removed: 2019-10-19 18:30:56,420 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10492 Removed: 2019-10-19 18:30:56,421 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10493 Removed: 2019-10-19 18:32:03,305 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10494 Removed: 2019-10-19 18:32:03,325 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10495 Removed: 2019-10-19 18:32:03,326 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10496 Removed: 2019-10-19 18:32:25,305 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10497 Removed: 2019-10-19 18:32:25,324 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10498 Removed: 2019-10-19 18:32:25,325 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10499 Removed: 2019-10-19 18:32:36,474 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10500 Removed: 2019-10-19 18:32:36,494 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10501 Removed: 2019-10-19 18:32:36,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10502 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
10503 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10504 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10505 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10506 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10507 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10508 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10509 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10510 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10511 Removed: 2019-10-19 18:32:37,672 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10512 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10513 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10514 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10515 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10516 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10517 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10518 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10519 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10520 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10521 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10522 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10523 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10524 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10525 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10526 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10527 Removed: 2019-10-19 18:32:37,673 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10528 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10529 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10530 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10531 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
10532 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
10533 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
10534 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
10535 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
10536 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
10537 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
10538 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
10539 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
10540 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
10541 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
10542 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
10543 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10544 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10545 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
10546 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
10547 Removed: 2019-10-19 18:32:37,674 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
10548 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
10549 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
10550 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
10551 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
10552 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
10553 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
10554 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
10555 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
10556 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
10557 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
10558 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
10559 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
10560 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
10561 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
10562 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
10563 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
10564 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
10565 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
10566 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
10567 Removed: 2019-10-19 18:32:37,675 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
10568 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10569 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
10570 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
10571 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
10572 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
10573 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
10574 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
10575 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
10576 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
10577 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
10578 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
10579 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
10580 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
10581 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
10582 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
10583 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
10584 Removed: 2019-10-19 18:32:37,676 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
10585 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
10586 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
10587 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
10588 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
10589 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
10590 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
10591 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
10592 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
10593 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
10594 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
10595 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
10596 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
10597 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
10598 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
10599 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
10600 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
10601 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
10602 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
10603 Removed: 2019-10-19 18:32:37,677 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
10604 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
10605 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
10606 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
10607 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
10608 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
10609 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
10610 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10611 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
10612 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
10613 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
10614 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
10615 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
10616 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
10617 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
10618 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
10619 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
10620 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
10621 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
10622 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
10623 Removed: 2019-10-19 18:32:37,678 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
10624 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
10625 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
10626 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
10627 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
10628 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
10629 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
10630 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
10631 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
10632 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
10633 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
10634 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
10635 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
10636 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
10637 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
10638 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
10639 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
10640 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
10641 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
10642 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
10643 Removed: 2019-10-19 18:32:37,679 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
10644 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
10645 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
10646 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
10647 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
10648 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
10649 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
10650 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
10651 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
10652 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
10653 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
10654 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
10655 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
10656 Removed: 2019-10-19 18:32:37,680 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
10657 Removed: 2019-10-19 18:32:37,690 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
10658 Removed: 2019-10-19 18:32:37,690 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10659 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10660 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10661 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10662 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10663 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10664 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10665 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10666 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10667 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10668 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10669 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10670 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10671 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10672 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10673 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10674 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10675 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10676 Removed: 2019-10-19 18:32:37,691 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10677 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10678 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10679 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10680 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10681 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10682 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10683 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10684 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10685 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10686 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
10687 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
10688 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
10689 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
10690 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
10691 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
10692 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
10693 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
10694 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
10695 Removed: 2019-10-19 18:32:37,692 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
10696 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
10697 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
10698 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10699 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10700 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
10701 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
10702 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
10703 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
10704 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
10705 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
10706 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
10707 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
10708 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
10709 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
10710 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
10711 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
10712 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
10713 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
10714 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
10715 Removed: 2019-10-19 18:32:37,693 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
10716 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
10717 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
10718 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
10719 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
10720 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
10721 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
10722 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
10723 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10724 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
10725 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
10726 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
10727 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
10728 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
10729 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
10730 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
10731 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
10732 Removed: 2019-10-19 18:32:37,694 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
10733 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
10734 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
10735 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
10736 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
10737 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
10738 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
10739 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
10740 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
10741 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
10742 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
10743 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
10744 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
10745 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
10746 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
10747 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
10748 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
10749 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
10750 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
10751 Removed: 2019-10-19 18:32:37,695 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
10752 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
10753 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
10754 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
10755 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
10756 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
10757 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
10758 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
10759 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
10760 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
10761 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
10762 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
10763 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
10764 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
10765 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10766 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
10767 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
10768 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
10769 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
10770 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
10771 Removed: 2019-10-19 18:32:37,696 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
10772 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
10773 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
10774 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
10775 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
10776 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
10777 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
10778 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
10779 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
10780 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
10781 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
10782 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
10783 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
10784 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
10785 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
10786 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
10787 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
10788 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
10789 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
10790 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
10791 Removed: 2019-10-19 18:32:37,697 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
10792 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
10793 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
10794 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
10795 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
10796 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
10797 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
10798 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
10799 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
10800 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
10801 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
10802 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
10803 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
10804 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
10805 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
10806 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
10807 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
10808 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
10809 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
10810 Removed: 2019-10-19 18:32:37,698 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
10811 Removed: 2019-10-19 18:32:37,699 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
10812 Removed: 2019-10-19 18:33:35,890 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
10813 Removed: 2019-10-19 18:33:35,911 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
10814 Removed: 2019-10-19 18:33:35,912 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
10815 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0.
10816 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10817 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10818 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10819 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10820 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10821 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10822 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10823 Removed: 2019-10-19 18:33:37,090 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10824 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10825 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10826 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10827 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10828 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10829 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10830 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10831 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10832 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10833 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10834 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10835 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10836 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10837 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10838 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10839 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10840 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10841 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10842 Removed: 2019-10-19 18:33:37,091 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10843 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10844 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
10845 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
10846 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
10847 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
10848 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
10849 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
10850 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
10851 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
10852 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
10853 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
10854 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
10855 Removed: 2019-10-19 18:33:37,092 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
10856 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10857 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10858 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
10859 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
10860 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
10861 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
10862 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
10863 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
10864 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
10865 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
10866 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
10867 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
10868 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
10869 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
10870 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
10871 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
10872 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
10873 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
10874 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
10875 Removed: 2019-10-19 18:33:37,093 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
10876 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
10877 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
10878 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
10879 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
10880 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
10881 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10882 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
10883 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
10884 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
10885 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
10886 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
10887 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
10888 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
10889 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
10890 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
10891 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
10892 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
10893 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
10894 Removed: 2019-10-19 18:33:37,094 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
10895 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
10896 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
10897 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
10898 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
10899 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
10900 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
10901 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
10902 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
10903 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
10904 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
10905 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
10906 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
10907 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
10908 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
10909 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
10910 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
10911 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
10912 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
10913 Removed: 2019-10-19 18:33:37,095 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
10914 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
10915 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
10916 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
10917 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
10918 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
10919 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
10920 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
10921 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
10922 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
10923 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10924 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
10925 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
10926 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
10927 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
10928 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
10929 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
10930 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
10931 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
10932 Removed: 2019-10-19 18:33:37,096 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
10933 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
10934 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
10935 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
10936 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
10937 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
10938 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
10939 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
10940 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
10941 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
10942 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
10943 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
10944 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
10945 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
10946 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
10947 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
10948 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
10949 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
10950 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
10951 Removed: 2019-10-19 18:33:37,097 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
10952 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
10953 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
10954 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
10955 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
10956 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
10957 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
10958 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
10959 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
10960 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
10961 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
10962 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
10963 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
10964 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
10965 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
10966 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
10967 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
10968 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
10969 Removed: 2019-10-19 18:33:37,098 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
10970 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
10971 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
10972 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
10973 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
10974 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
10975 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
10976 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
10977 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
10978 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
10979 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
10980 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
10981 Removed: 2019-10-19 18:33:37,109 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
10982 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
10983 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
10984 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
10985 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
10986 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
10987 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
10988 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
10989 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
10990 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
10991 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
10992 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
10993 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
10994 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
10995 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
10996 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
10997 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
10998 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
10999 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
11000 Removed: 2019-10-19 18:33:37,110 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
11001 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
11002 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
11003 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
11004 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
11005 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
11006 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
11007 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
11008 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
11009 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
11010 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
11011 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
11012 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
11013 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
11014 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
11015 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
11016 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
11017 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
11018 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
11019 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
11020 Removed: 2019-10-19 18:33:37,111 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
11021 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-solid-900.ttf) normal normal 400 normal>) = 10.05
11022 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
11023 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
11024 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
11025 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
11026 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
11027 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
11028 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
11029 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus B.ttf) normal normal bold normal>) = 10.335
11030 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
11031 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
11032 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
11033 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
11034 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
11035 Removed: 2019-10-19 18:33:37,112 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
11036 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
11037 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
11038 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
11039 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
11040 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
11041 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
11042 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
11043 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
11044 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
11045 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
11046 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
11047 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
11048 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
11049 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
11050 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
11051 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
11052 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
11053 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
11054 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
11055 Removed: 2019-10-19 18:33:37,113 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
11056 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
11057 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
11058 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
11059 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus BI.ttf) italic normal bold normal>) = 11.335
11060 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
11061 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
11062 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
11063 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
11064 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
11065 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
11066 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
11067 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
11068 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
11069 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
11070 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
11071 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
11072 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
11073 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
11074 Removed: 2019-10-19 18:33:37,114 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
11075 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
11076 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
11077 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
11078 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
11079 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
11080 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
11081 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
11082 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus.ttf) normal normal 400 normal>) = 10.05
11083 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
11084 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
11085 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
11086 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
11087 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
11088 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
11089 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
11090 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
11091 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
11092 Removed: 2019-10-19 18:33:37,115 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
11093 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
11094 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
11095 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
11096 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
11097 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
11098 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
11099 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
11100 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
11101 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
11102 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
11103 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
11104 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
11105 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
11106 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
11107 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
11108 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
11109 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
11110 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
11111 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
11112 Removed: 2019-10-19 18:33:37,116 - DEBUG - findfont: score(<Font 'TW-MOE-Std-Kai' (edukai-3.ttf) normal normal 400 normal>) = 10.05
11113 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
11114 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Anonymous Pro Minus' (Anonymous Pro Minus I.ttf) italic normal 400 normal>) = 11.05
11115 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
11116 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
11117 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Font Awesome 5 Free' (fa-regular-400.ttf) normal normal regular normal>) = 10.05
11118 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
11119 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
11120 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
11121 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Font Awesome 5 Brands' (fa-brands-400.ttf) normal normal regular normal>) = 10.05
11122 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
11123 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
11124 Removed: 2019-10-19 18:33:37,117 - DEBUG - findfont: Matching :family=sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('/usr/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
11125 Removed: 2019-10-19 18:33:47,085 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11126 Removed: 2019-10-19 18:33:47,106 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11127 Removed: 2019-10-19 18:33:47,107 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11128 Removed: 2019-10-19 18:33:50,832 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11129 Removed: 2019-10-19 18:33:50,851 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11130 Removed: 2019-10-19 18:33:50,852 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11131 Removed: 2019-10-19 18:34:11,004 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11132 Removed: 2019-10-19 18:34:11,025 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11133 Removed: 2019-10-19 18:34:11,026 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11134 Removed: 2019-10-19 18:41:06,934 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11135 Removed: 2019-10-19 18:41:06,954 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11136 Removed: 2019-10-19 18:41:06,955 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11137 Removed: 2019-10-19 18:41:13,067 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11138 Removed: 2019-10-19 18:41:13,088 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11139 Removed: 2019-10-19 18:41:13,089 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11140 Removed: 2019-10-19 18:41:33,700 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11141 Removed: 2019-10-19 18:41:33,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11142 Removed: 2019-10-19 18:41:33,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11143 Removed: 2019-10-19 18:42:16,689 - DEBUG - $HOME=/home/blendux
11144 Removed: 2019-10-19 18:42:16,689 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
11145 Removed: 2019-10-19 18:42:16,689 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
11146 Removed: 2019-10-19 18:42:16,695 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
11147 Removed: 2019-10-19 18:42:16,696 - DEBUG - matplotlib version 3.1.1
11148 Removed: 2019-10-19 18:42:16,696 - DEBUG - interactive is False
11149 Removed: 2019-10-19 18:42:16,697 - DEBUG - platform is linux
11150 Removed: 2019-10-19 18:42:16,697 - DEBUG - loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_thread', '_warnings', '_weakref', 'zipimport', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_abc', 'site', 'os', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', '_bootlocale', '_locale', 'types', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'functools', '_functools', 'mpl_toolkits', 'sphinxcontrib', 'random', 'math', 'hashlib', '_hashlib', '_blake2', '_sha3', 'bisect', '_bisect', '_random', 'concurrent', 'concurrent.futures', 'concurrent.futures._base', 'logging', 'time', 'traceback', 'linecache', 'tokenize', 're', 'enum', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', 'copyreg', 'token', 'weakref', '_weakrefset', 'collections.abc', 'string', '_string', 'threading', 'atexit', 'creator', 'creator.base', 'numpy', '__future__', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._distributor_init', 'numpy.core', 'numpy.core.info', 'numpy.core.multiarray', 'numpy.core.overrides', 'textwrap', 'datetime', '_datetime', 'numpy.core._multiarray_umath', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'fnmatch', 'ntpath', 'errno', 'urllib', 'urllib.parse', 'pickle', 'struct', '_struct', '_compat_pickle', '_pickle', 'numpy.core.umath', 'numpy.core.numerictypes', 'numbers', 'numpy.core._string_helpers', 'numpy.core._type_aliases', 'numpy.core._dtype', 'numpy.core.numeric', 'numpy.core._exceptions', 'numpy.core._asarray', 'numpy.core._ufunc_config', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.core._add_newdocs', 'numpy.core._multiarray_tests', 'numpy.core._dtype_ctypes', '_ctypes', 'ctypes', 'ctypes._endian', 'numpy.core._internal', 'platform', 'subprocess', 'signal', '_posixsubprocess', 'select', 'selectors', 'numpy._pytesttester', 'numpy.lib', 'numpy.lib.info', 'numpy.lib.type_check', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'ast', '_ast', 'numpy.linalg', 'numpy.linalg.info', 'numpy.linalg.linalg', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.function_base', 'numpy.lib.histograms', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'numpy.lib.format', 'numpy.lib._datasource', 'shutil', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_pydecimal', 'contextvars', '_contextvars', 'locale', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.fft', 'numpy.fft.info', 'numpy.fft.pocketfft', 'numpy.fft.pocketfft_internal', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', 'numpy.random._pickle', 'numpy.random.mtrand', 'cython_runtime', 'numpy.random.common', 'numpy.random.bounded_integers', 'numpy.random.mt19937', 'numpy.random.bit_generator', '_cython_0_29_13', 'secrets', 'base64', 'binascii', 'hmac', 'numpy.random.entropy', 'numpy.random.philox', 'numpy.random.pcg64', 'numpy.random.sfc64', 'numpy.random.generator', 'numpy.ctypeslib', 'numpy.ma', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.testing', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'difflib', 'pprint', 'unittest.suite', 'unittest.loader', 'unittest.main', 'argparse', 'gettext', 'unittest.runner', 'unittest.signals', 'numpy.testing._private', 'numpy.testing._private.utils', 'gc', 'tempfile', 'numpy.testing._private.decorators', 'numpy.testing._private.nosetester', 'creator.fuselage', 'creator.propulsion', 'creator.wing', 'matplotlib', 'distutils', 'distutils.version', 'inspect', 'dis', 'opcode', '_opcode', 'matplotlib.cbook', 'glob', 'gzip', 'matplotlib.cbook.deprecation', 'matplotlib.rcsetup', 'matplotlib.fontconfig_pattern', 'pyparsing', 'copy', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six', 'six.moves', 'matplotlib._version', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'matplotlib.ft2font', 'dateutil', 'dateutil._version', 'kiwisolver', 'socket', '_socket']
11151 Removed: 2019-10-19 18:42:16,730 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
11152 Removed: 2019-10-19 18:42:16,731 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
11153 Removed: 2019-10-19 18:42:16,826 - DEBUG - Loaded backend qt5agg version unknown.
11154 Removed: 2019-10-19 18:42:16,836 - DEBUG - Loaded backend tkagg version unknown.
11155 Removed: 2019-10-19 18:42:16,837 - DEBUG - Loaded backend TkAgg version unknown.
11156 Removed: 2019-10-19 18:42:18,814 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11157 Removed: 2019-10-19 18:42:18,834 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11158 Removed: 2019-10-19 18:42:18,836 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11159 Removed: 2019-10-19 18:42:30,148 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11160 Removed: 2019-10-19 18:42:30,166 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11161 Removed: 2019-10-19 18:42:30,167 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11162 Removed: 2019-10-19 18:42:37,423 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11163 Removed: 2019-10-19 18:42:37,443 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11164 Removed: 2019-10-19 18:42:37,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11165 Removed: 2019-10-19 18:43:55,774 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11166 Removed: 2019-10-19 18:43:55,795 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11167 Removed: 2019-10-19 18:43:55,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11168 Removed: 2019-10-19 18:44:05,033 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11169 Removed: 2019-10-19 18:44:05,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11170 Removed: 2019-10-19 18:44:05,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11171 Removed: 2019-10-20 16:35:55,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11172 Removed: 2019-10-20 16:35:55,090 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11173 Removed: 2019-10-20 16:35:55,091 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11174 Removed: 2019-10-20 16:36:33,165 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11175 Removed: 2019-10-20 16:36:33,184 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11176 Removed: 2019-10-20 16:36:33,185 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11177 Removed: 2019-10-20 17:16:42,212 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11178 Removed: 2019-10-20 17:16:42,231 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11179 Removed: 2019-10-20 17:16:42,233 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11180 Removed: 2019-10-20 17:16:53,314 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11181 Removed: 2019-10-20 17:16:53,334 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11182 Removed: 2019-10-20 17:16:53,335 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11183 Removed: 2019-10-20 17:18:21,479 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11184 Removed: 2019-10-20 17:18:21,499 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11185 Removed: 2019-10-20 17:18:21,500 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11186 Removed: 2019-10-20 17:52:09,050 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11187 Removed: 2019-10-20 17:52:09,068 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11188 Removed: 2019-10-20 17:52:09,069 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11189 Removed: 2019-10-20 17:52:17,872 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11190 Removed: 2019-10-20 17:52:17,890 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11191 Removed: 2019-10-20 17:52:17,891 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11192 Removed: 2019-10-20 17:53:54,657 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11193 Removed: 2019-10-20 17:53:54,675 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11194 Removed: 2019-10-20 17:53:54,676 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11195 Removed: 2019-10-20 17:55:08,034 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11196 Removed: 2019-10-20 17:55:08,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11197 Removed: 2019-10-20 17:55:08,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11198 Removed: 2019-10-20 17:55:13,302 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11199 Removed: 2019-10-20 17:55:13,321 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11200 Removed: 2019-10-20 17:55:13,322 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11201 Removed: 2019-10-20 17:55:37,090 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11202 Removed: 2019-10-20 17:55:37,109 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11203 Removed: 2019-10-20 17:55:37,110 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11204 Removed: 2019-10-20 17:55:41,154 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11205 Removed: 2019-10-20 17:55:41,173 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11206 Removed: 2019-10-20 17:55:41,174 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11207 Removed: 2019-10-20 18:05:32,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11208 Removed: 2019-10-20 18:05:32,350 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11209 Removed: 2019-10-20 18:05:32,351 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11210 Removed: 2019-10-20 18:22:19,488 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11211 Removed: 2019-10-20 18:22:19,507 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11212 Removed: 2019-10-20 18:22:19,508 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11213 Removed: 2019-10-20 18:25:32,877 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11214 Removed: 2019-10-20 18:25:32,896 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11215 Removed: 2019-10-20 18:25:32,897 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11216 Removed: 2019-10-20 18:25:37,652 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11217 Removed: 2019-10-20 18:25:37,671 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11218 Removed: 2019-10-20 18:25:37,672 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11219 Removed: 2019-10-20 18:25:44,602 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11220 Removed: 2019-10-20 18:25:44,621 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11221 Removed: 2019-10-20 18:25:44,622 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11222 Removed: 2019-10-20 18:26:07,410 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11223 Removed: 2019-10-20 18:26:07,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11224 Removed: 2019-10-20 18:26:07,430 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11225 Removed: 2019-10-20 18:40:34,777 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11226 Removed: 2019-10-20 18:40:34,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11227 Removed: 2019-10-20 18:40:34,797 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11228 Removed: 2019-10-20 18:41:10,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11229 Removed: 2019-10-20 18:41:10,407 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11230 Removed: 2019-10-20 18:41:10,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11231 Removed: 2019-10-20 18:41:29,529 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11232 Removed: 2019-10-20 18:41:29,549 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11233 Removed: 2019-10-20 18:41:29,550 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11234 Removed: 2019-10-20 18:43:19,906 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11235 Removed: 2019-10-20 18:43:19,927 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11236 Removed: 2019-10-20 18:43:19,928 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11237 Removed: 2019-10-20 18:46:42,716 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11238 Removed: 2019-10-20 18:46:42,736 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11239 Removed: 2019-10-20 18:46:42,737 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11240 Removed: 2019-10-20 18:48:14,657 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11241 Removed: 2019-10-20 18:48:14,677 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11242 Removed: 2019-10-20 18:48:14,678 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11243 Removed: 2019-10-20 18:48:23,582 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11244 Removed: 2019-10-20 18:48:23,600 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11245 Removed: 2019-10-20 18:48:23,601 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11246 Removed: 2019-10-20 18:50:09,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11247 Removed: 2019-10-20 18:50:09,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11248 Removed: 2019-10-20 18:50:09,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11249 Removed: 2019-10-20 18:50:38,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11250 Removed: 2019-10-20 18:50:38,448 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11251 Removed: 2019-10-20 18:50:38,449 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11252 Removed: 2019-10-20 18:52:43,896 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11253 Removed: 2019-10-20 18:52:43,916 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11254 Removed: 2019-10-20 18:52:43,916 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11255 Removed: 2019-10-20 18:53:10,207 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11256 Removed: 2019-10-20 18:53:10,226 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11257 Removed: 2019-10-20 18:53:10,227 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11258 Removed: 2019-10-20 18:54:18,035 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11259 Removed: 2019-10-20 18:54:18,055 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11260 Removed: 2019-10-20 18:54:18,056 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11261 Removed: 2019-10-20 18:55:01,440 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11262 Removed: 2019-10-20 18:55:01,459 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11263 Removed: 2019-10-20 18:55:01,460 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11264 Removed: 2019-10-20 18:58:28,691 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11265 Removed: 2019-10-20 18:58:28,710 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11266 Removed: 2019-10-20 18:58:28,711 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11267 Removed: 2019-10-20 18:58:37,012 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11268 Removed: 2019-10-20 18:58:37,032 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11269 Removed: 2019-10-20 18:58:37,033 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11270 Removed: 2019-10-20 18:59:24,354 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11271 Removed: 2019-10-20 18:59:24,373 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11272 Removed: 2019-10-20 18:59:24,374 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11273 Removed: 2019-10-20 18:59:26,853 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11274 Removed: 2019-10-20 18:59:26,873 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11275 Removed: 2019-10-20 18:59:26,874 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11276 Removed: 2019-10-20 18:59:34,308 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11277 Removed: 2019-10-20 18:59:34,327 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11278 Removed: 2019-10-20 18:59:34,328 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11279 Removed: 2019-10-20 18:59:41,748 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11280 Removed: 2019-10-20 18:59:41,767 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11281 Removed: 2019-10-20 18:59:41,768 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11282 Removed: 2019-10-20 19:00:09,987 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11283 Removed: 2019-10-20 19:00:10,006 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11284 Removed: 2019-10-20 19:00:10,007 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11285 Removed: 2019-10-20 19:00:53,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11286 Removed: 2019-10-20 19:00:53,603 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11287 Removed: 2019-10-20 19:00:53,604 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11288 Removed: 2019-10-20 19:01:49,388 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11289 Removed: 2019-10-20 19:01:49,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11290 Removed: 2019-10-20 19:01:49,409 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11291 Removed: 2019-10-20 19:01:59,113 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11292 Removed: 2019-10-20 19:01:59,133 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11293 Removed: 2019-10-20 19:01:59,134 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11294 Removed: 2019-10-20 19:05:00,700 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11295 Removed: 2019-10-20 19:05:00,719 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11296 Removed: 2019-10-20 19:05:00,720 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11297 Removed: 2019-10-20 19:05:16,953 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11298 Removed: 2019-10-20 19:05:16,973 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11299 Removed: 2019-10-20 19:05:16,974 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11300 Removed: 2019-10-20 19:08:59,952 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11301 Removed: 2019-10-20 19:08:59,972 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11302 Removed: 2019-10-20 19:08:59,973 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11303 Removed: 2019-10-20 19:09:31,123 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11304 Removed: 2019-10-20 19:09:31,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11305 Removed: 2019-10-20 19:09:31,142 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11306 Removed: 2019-10-20 19:10:46,989 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11307 Removed: 2019-10-20 19:10:47,009 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11308 Removed: 2019-10-20 19:10:47,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11309 Removed: 2019-10-20 19:12:17,772 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11310 Removed: 2019-10-20 19:12:17,792 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11311 Removed: 2019-10-20 19:12:17,793 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11312 Removed: 2019-10-20 19:12:40,442 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11313 Removed: 2019-10-20 19:12:40,462 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11314 Removed: 2019-10-20 19:12:40,463 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11315 Removed: 2019-10-20 19:13:27,072 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11316 Removed: 2019-10-20 19:13:27,091 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11317 Removed: 2019-10-20 19:13:27,092 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11318 Removed: 2019-10-20 19:14:55,494 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11319 Removed: 2019-10-20 19:14:55,513 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11320 Removed: 2019-10-20 19:14:55,513 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11321 Removed: 2019-10-20 19:15:55,311 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11322 Removed: 2019-10-20 19:15:55,331 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11323 Removed: 2019-10-20 19:15:55,332 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11324 Removed: 2019-10-20 19:16:34,705 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11325 Removed: 2019-10-20 19:16:34,723 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11326 Removed: 2019-10-20 19:16:34,724 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11327 Removed: 2019-10-20 19:16:59,725 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11328 Removed: 2019-10-20 19:16:59,745 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11329 Removed: 2019-10-20 19:16:59,746 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11330 Removed: 2019-10-20 19:17:11,409 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11331 Removed: 2019-10-20 19:17:11,429 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11332 Removed: 2019-10-20 19:17:11,430 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
11333 Removed: 2019-10-20 19:18:40,265 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
11334 Removed: 2019-10-20 19:18:40,285 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
11335 Removed: 2019-10-20 19:18:40,286 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt