[Python] Design & build airplanes from your specifications.
refactor stringer generating function
Changed files
creator/base.py
@@ -31,6 +31,7 @@
31
31
self.name = name
32
32
self.x = np.array([])
33
33
self.z = np.array([])
34
Added:
self.y = np.array([])
34
35
self.material = None
35
36
self.mass = float()
36
37
creator/wing.py
@@ -170,17 +170,9 @@
170
170
171
171
class Stringer(base.Component):
172
172
"""Contains the coordinates of all stringers."""
173
Removed:
def __init__(self, parent, name, den_u, den_l, den_un, den_ul):
174
Removed:
"""
175
Removed:
parameters:
176
Removed:
177
Removed:
den_u: upper stringer density
178
Removed:
den_l: lower stringer density
179
Removed:
den_un: upper nose stringer density
180
Removed:
den_ul: upper nose stringer density
181
Removed:
"""
182
Removed:
super().__init__()
183
Removed:
parent.stringers.append(self)
173
Added:
def __init__(self, parent, name):
174
Added:
super().__init__(parent, name)
175
Added:
parent.stringers = self
184
176
self.x_start = []
185
177
self.x_end = []
186
178
self.z_start = []
@@ -188,62 +180,61 @@
188
180
self.diameter = float()
189
181
self.area = float()
190
182
191
Removed:
def add_coord(self, airfoil, spars, stringer_u_1, stringer_u_2,
192
Removed:
stringer_l_1, stringer_l_2):
183
Added:
def add_coord(self, airfoil, den_u_1=4, den_u_2=4, den_l_1=4, den_l_2=4):
193
184
"""Add equally distributed stringers to four airfoil locations
194
185
(upper nose, lower nose, upper surface, lower surface).
195
186
196
187
Parameters:
197
188
airfoil_coord: packed airfoil coordinates
198
189
spar_coord: packed spar coordinates
199
Removed:
stringer_u_1: upper nose number of stringers
200
Removed:
stringer_u_2: upper surface number of stringers
201
Removed:
stringer_l_1: lower nose number of stringers
202
Removed:
stringer_l_2: lower surface number of stringers
190
Added:
den_u_1: upper nose number of stringers
191
Added:
den_u_2: upper surface number of stringers
192
Added:
den_l_1: lower nose number of stringers
193
Added:
den_l_2: lower surface number of stringers
203
194
204
195
Returns:
205
196
None
206
197
"""
207
198
208
199
# Find distance between leading edge and first upper stringer
209
Removed:
interval = spars.x[0][0] / (stringer_u_1 + 1)
200
Added:
interval = airfoil.spars[0].x[0] / (den_u_1 + 1)
210
201
# initialise first self.stringer_x at first interval
211
202
x = interval
212
203
# Add upper stringers from leading edge until first spar.
213
Removed:
for _ in range(0, stringer_u_1):
204
Added:
for _ in range(0, den_u_1):
214
205
# Index of the first value of airfoil.x > x
215
206
i = bi.bisect_left(airfoil.x, x)
216
Removed:
self.x.append(airfoil.x[i])
217
Removed:
self.z.append(airfoil.z[i])
207
Added:
self.x = np.append(self.x, airfoil.x[i])
208
Added:
self.z = np.append(self.z, airfoil.z[i])
218
209
x += interval
219
210
# Add upper stringers from first spar until last spar
220
211
# TODO: stringer placement if only one spar is created
221
Removed:
interval = (airfoil.spar.x[-1][0] -
222
Removed:
airfoil.spar.x[0][0]) / (stringer_u_2 + 1)
223
Removed:
x = interval + airfoil.spar.x[0][0]
224
Removed:
for _ in range(0, stringer_u_2):
212
Added:
interval = (airfoil.spars[-1].x[0] -
213
Added:
airfoil.spars[0].x[0]) / (den_u_2 + 1)
214
Added:
x = interval + airfoil.spars[0].x[0]
215
Added:
for _ in range(0, den_u_2):
225
216
i = bi.bisect_left(airfoil.x, x)
226
Removed:
self.x.append(airfoil.x[i])
227
Removed:
self.z.append(airfoil.z[i])
217
Added:
self.x = np.append(self.x, airfoil.x[i])
218
Added:
self.z = np.append(self.z, airfoil.z[i])
228
219
x += interval
229
220
230
221
# Find distance between leading edge and first lower stringer
231
Removed:
interval = airfoil.spar.x[0][1] / (stringer_l_1 + 1)
222
Added:
interval = airfoil.spars[0].x[1] / (den_l_1 + 1)
232
223
x = interval
233
224
# Add lower stringers from leading edge until first spar.
234
Removed:
for _ in range(0, stringer_l_1):
225
Added:
for _ in range(0, den_l_1):
235
226
i = bi.bisect_left(airfoil.x[::-1], x)
236
Removed:
self.x.append(airfoil.x[-i])
237
Removed:
self.z.append(airfoil.z[-i])
227
Added:
self.x = np.append(self.x, airfoil.x[-i])
228
Added:
self.z = np.append(self.z, airfoil.z[-i])
238
229
x += interval
239
230
# Add lower stringers from first spar until last spar
240
Removed:
interval = (airfoil.spar.x[-1][1] -
241
Removed:
airfoil.spar.x[0][1]) / (stringer_l_2 + 1)
242
Removed:
x = interval + airfoil.spar.x[0][1]
243
Removed:
for _ in range(0, stringer_l_2):
231
Added:
interval = (airfoil.spars[-1].x[1] -
232
Added:
airfoil.spars[0].x[1]) / (den_l_2 + 1)
233
Added:
x = interval + airfoil.spars[0].x[1]
234
Added:
for _ in range(0, den_l_2):
244
235
i = bi.bisect_left(airfoil.x[::-1], x)
245
Removed:
self.x.append(airfoil.x[-i])
246
Removed:
self.z.append(airfoil.z[-i])
236
Added:
self.x = np.append(self.x, airfoil.x[-i])
237
Added:
self.z = np.append(self.z, airfoil.z[-i])
247
238
x += interval
248
239
return None
249
240
@@ -265,13 +256,13 @@
265
256
self.thickness = thickness
266
257
return None
267
258
268
Removed:
def info_print(self, round):
259
Added:
def info_print(self, round=2):
269
260
super().info_print(round)
270
261
print('Stringer Area:\n', np.around(self.area, round))
271
262
return None
272
263
273
264
274
Removed:
def plot_geom(airfoil, spars, stringers):
265
Added:
def plot_geom(airfoil):
275
266
"""This function plots the airfoil's + sub-components' geometry."""
276
267
fig, ax = plt.subplots()
277
268
@@ -296,31 +287,24 @@
296
287
# Plot airfoil surfaces
297
288
ax.plot(airfoil.x, airfoil.z, color='b', linewidth='1')
298
289
299
Removed:
# Plot spars
300
Removed:
try:
301
Removed:
for spar in spars:
290
Added:
try: # Plot spars
291
Added:
for spar in airfoil.spars:
302
292
x = (spar.x)
303
293
y = (spar.z)
304
294
ax.plot(x, y, '-', color='y', linewidth='4')
305
295
except AttributeError:
306
296
print('No spars to plot.')
307
Removed:
# Plot stringers
308
Removed:
try:
309
Removed:
for _ in range(0, len(airfoil.stringer.x)):
310
Removed:
x = airfoil.stringer.x[_]
311
Removed:
y = airfoil.stringer.z[_]
297
Added:
try: # Plot stringers
298
Added:
for i in range(len(airfoil.stringers.x)):
299
Added:
x = airfoil.stringers.x[i]
300
Added:
y = airfoil.stringers.z[i]
312
301
ax.plot(x, y, '.', color='y', markersize=12)
313
302
except AttributeError:
314
303
print('No stringers to plot.')
315
304
316
Removed:
# Graph formatting
317
Removed:
# plot_bound = np.amax(airfoil.x)
318
Removed:
ax.set(
319
Removed:
title='NACA ' + str(airfoil.naca_num) + ' airfoil',
320
Removed:
xlabel='X axis',
321
Removed:
# xlim=[-0.10 * plot_bound, 1.10 * plot_bound],
322
Removed:
ylabel='Z axis')
323
Removed:
# ylim=[-(1.10 * plot_bound / 2), (1.10 * plot_bound / 2)])
305
Added:
ax.set(title='NACA ' + str(airfoil.naca_num) + ' airfoil',
306
Added:
xlabel='X axis',
307
Added:
ylabel='Z axis')
324
308
325
309
plt.grid(axis='both', linestyle=':', linewidth=1)
326
310
plt.gca().set_aspect('equal', adjustable='box')
evaluator/evaluator.py
@@ -10,6 +10,7 @@
10
10
import numpy as np
11
11
from math import sqrt
12
12
import matplotlib.pyplot as plt
13
Added:
import concurrent.futures
13
14
import logging
14
15
15
16
logging.basicConfig(filename='log_eval.txt',
@@ -28,24 +29,26 @@
28
29
self.I_ = {'x': 0, 'z': 0, 'xz': 0}
29
30
30
31
def get_lift_rectangular(aircraft, lift=50):
31
Removed:
# L_prime = [
32
Removed:
# lift / (aircraft.wing.semi_span * 2)
33
Removed:
# for x in range(aircraft.wing.semi_span)
34
Removed:
# ]
35
Removed:
return lift
32
Added:
L_prime = [
33
Added:
lift / (aircraft.wing.semi_span * 2)
34
Added:
for x in range(aircraft.wing.semi_span)
35
Added:
]
36
Added:
return L_prime
36
37
37
38
def get_lift_elliptical(aircraft, L_0=3.2):
38
Removed:
# L_prime = [
39
Removed:
# L_0 / (aircraft.wing.semi_span * 2) *
40
Removed:
# sqrt(1 - (y / aircraft.wing.semi_span)**2)
41
Removed:
# for y in range(aircraft.wing.semi_span)
42
Removed:
# ]
43
Removed:
return L_0
39
Added:
L_prime = [
40
Added:
L_0 / (aircraft.wing.semi_span * 2) *
41
Added:
sqrt(1 - (y / aircraft.wing.semi_span)**2)
42
Added:
for y in range(aircraft.wing.semi_span)
43
Added:
]
44
Added:
return L_prime
44
45
45
46
def get_lift_total(self, aircraft):
46
Removed:
F_z = 100
47
Removed:
# F_z = [(self.get_lift_rectangular() + self.get_lift_elliptical() / 2
48
Removed:
# for _ in range(len(aircraft.lift_rectangular))]
47
Added:
F_z = [
48
Added:
self.get_lift_rectangular(aircraft) +
49
Added:
self.get_lift_elliptical(aircraft) / 2
50
Added:
for _ in range(aircraft.wing.semi_span)
51
Added:
]
49
52
return F_z
50
53
51
54
def get_mass_distribution(self, total_mass):
@@ -149,6 +152,9 @@
149
152
150
153
def analysis(self):
151
154
"""Perform all analysis calculations and store in self.results."""
155
Added:
with concurrent.futures.ProcessPoolExecutor() as executor:
156
Added:
f1 = executor.submit(self.get_lift_total)
157
Added:
152
158
for aircraft in self.aircrafts:
153
159
# lift = self.get_lift_total(aircraft),
154
160
# drag = self.get_drag(aircraft.wing),
@@ -213,6 +219,7 @@
213
219
print(".")
214
220
print(f"`-- {aircraft}")
215
221
print(f" |--{aircraft.wing}")
222
Added:
print(f" | |-- {aircraft.wing.stringers}")
216
223
for spar in aircraft.wing.spars[:-1]:
217
224
print(f" | |-- {spar}")
218
225
print(f" | `-- {aircraft.wing.spars[-1]}")
example_airfoil.py
@@ -46,11 +46,10 @@
46
46
af.add_naca(2412)
47
47
spar1 = creator.wing.Spar(af, 'spar1')
48
48
spar2 = creator.wing.Spar(af, 'spar2', 0.57)
49
Removed:
# stringer = creator.wing.Stringer(af, 'stringer')
50
Removed:
# af.stringer.add_coord(af, [af.spar1, af.spar2], NOSE_TOP_STRINGERS,
51
Removed:
# TOP_STRINGERS, NOSE_BOTTOM_STRINGERS, BOTTOM_STRINGERS)
52
Removed:
# af.stringer.info_print(2)
53
Removed:
# af.stringer.info_save(SAVE_PATH, 'foo_name')
49
Added:
# spar2 = creator.wing.Spar(af, 'spar2', 0.7)
50
Added:
stringer = creator.wing.Stringer(af, 'stringer')
51
Added:
stringer.add_coord(af, 5, 6, 5, 4)
52
Added:
stringer.info_save(SAVE_PATH)
54
53
55
54
ac2 = creator.base.Aircraft(eval, "ac2")
56
55
af2 = creator.wing.Airfoil(ac2, 'af2')
@@ -58,15 +57,15 @@
58
57
af2.info_save()
59
58
spar3 = creator.wing.Spar(af2, 'spar3', 0.23)
60
59
spar4 = creator.wing.Spar(af2, 'spar4', 0.67)
61
Removed:
spar3.info_save()
62
Removed:
spar4.info_save()
60
Added:
stringer2 = creator.wing.Stringer(af2, 'stringer2')
61
Added:
stringer2.add_coord(af)
62
Added:
stringer2.info_save(SAVE_PATH)
63
63
64
Added:
# print(eval.analysis())
64
65
66
Added:
# creator.wing.plot_geom(af)
65
67
eval.tree_print()
66
Removed:
eval.tree_save()
67
68
68
Removed:
print(eval.analysis())
69
Removed:
70
69
# for aircraft in eval.aircrafts:
71
70
# print(aircraft)
72
71
# print(aircraft.wing.material)
@@ -89,7 +88,6 @@
89
88
# alpha = resources.NACA_2412.alpha
90
89
# plt.plot(alpha, cl)
91
90
# plt.show()
92
Removed:
93
91
94
92
# Final execution time
95
93
final_time = time.time() - start_time
log_base.txt
@@ -2194,3 +2194,7000 @@
2194
2194
2019-10-17 17:48:14,579 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2195
2195
2019-10-17 17:48:14,582 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2196
2196
2019-10-17 17:48:14,584 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2197
Added:
2019-10-17 17:56:24,560 - DEBUG - $HOME=/home/blendux
2198
Added:
2019-10-17 17:56:24,562 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2199
Added:
2019-10-17 17:56:24,562 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2200
Added:
2019-10-17 17:56:24,597 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2201
Added:
2019-10-17 17:56:24,609 - DEBUG - matplotlib version 3.1.1
2202
Added:
2019-10-17 17:56:24,609 - DEBUG - interactive is False
2203
Added:
2019-10-17 17:56:24,610 - DEBUG - platform is linux
2204
Added:
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
Added:
2019-10-17 17:56:24,860 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2206
Added:
2019-10-17 17:56:24,869 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2207
Added:
2019-10-17 17:56:25,551 - DEBUG - Loaded backend qt5agg version unknown.
2208
Added:
2019-10-17 17:56:25,623 - DEBUG - Loaded backend tkagg version unknown.
2209
Added:
2019-10-17 17:56:25,625 - DEBUG - Loaded backend TkAgg version unknown.
2210
Added:
2019-10-17 17:56:25,878 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2211
Added:
2019-10-17 17:56:25,882 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2212
Added:
2019-10-17 17:56:25,885 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2213
Added:
2019-10-17 17:56:25,888 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2214
Added:
2019-10-17 17:56:36,300 - DEBUG - $HOME=/home/blendux
2215
Added:
2019-10-17 17:56:36,301 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2216
Added:
2019-10-17 17:56:36,302 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2217
Added:
2019-10-17 17:56:36,337 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2218
Added:
2019-10-17 17:56:36,349 - DEBUG - matplotlib version 3.1.1
2219
Added:
2019-10-17 17:56:36,349 - DEBUG - interactive is False
2220
Added:
2019-10-17 17:56:36,350 - DEBUG - platform is linux
2221
Added:
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
Added:
2019-10-17 17:56:36,599 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2223
Added:
2019-10-17 17:56:36,608 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2224
Added:
2019-10-17 17:56:37,283 - DEBUG - Loaded backend qt5agg version unknown.
2225
Added:
2019-10-17 17:56:37,355 - DEBUG - Loaded backend tkagg version unknown.
2226
Added:
2019-10-17 17:56:37,358 - DEBUG - Loaded backend TkAgg version unknown.
2227
Added:
2019-10-17 17:56:37,611 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2228
Added:
2019-10-17 17:56:37,615 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2229
Added:
2019-10-17 17:56:37,617 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2230
Added:
2019-10-17 17:56:37,619 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2231
Added:
2019-10-17 17:57:06,924 - DEBUG - $HOME=/home/blendux
2232
Added:
2019-10-17 17:57:06,926 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2233
Added:
2019-10-17 17:57:06,927 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2234
Added:
2019-10-17 17:57:06,961 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2235
Added:
2019-10-17 17:57:06,973 - DEBUG - matplotlib version 3.1.1
2236
Added:
2019-10-17 17:57:06,974 - DEBUG - interactive is False
2237
Added:
2019-10-17 17:57:06,974 - DEBUG - platform is linux
2238
Added:
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
Added:
2019-10-17 17:57:07,224 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2240
Added:
2019-10-17 17:57:07,233 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2241
Added:
2019-10-17 17:57:07,948 - DEBUG - Loaded backend qt5agg version unknown.
2242
Added:
2019-10-17 17:57:08,020 - DEBUG - Loaded backend tkagg version unknown.
2243
Added:
2019-10-17 17:57:08,023 - DEBUG - Loaded backend TkAgg version unknown.
2244
Added:
2019-10-17 17:57:08,272 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2245
Added:
2019-10-17 17:57:08,275 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2246
Added:
2019-10-17 17:57:08,278 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2247
Added:
2019-10-17 17:57:08,279 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/eval_tree.txt
2248
Added:
2019-10-17 21:09:31,743 - DEBUG - $HOME=/home/blendux
2249
Added:
2019-10-17 21:09:31,744 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2250
Added:
2019-10-17 21:09:31,744 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2251
Added:
2019-10-17 21:09:31,749 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2252
Added:
2019-10-17 21:09:31,751 - DEBUG - matplotlib version 3.1.1
2253
Added:
2019-10-17 21:09:31,751 - DEBUG - interactive is False
2254
Added:
2019-10-17 21:09:31,751 - DEBUG - platform is linux
2255
Added:
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
Added:
2019-10-17 21:09:31,801 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2257
Added:
2019-10-17 21:09:31,803 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2258
Added:
2019-10-17 21:09:31,982 - DEBUG - Loaded backend qt5agg version unknown.
2259
Added:
2019-10-17 21:09:32,005 - DEBUG - Loaded backend tkagg version unknown.
2260
Added:
2019-10-17 21:09:32,006 - DEBUG - Loaded backend TkAgg version unknown.
2261
Added:
2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2262
Added:
2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2263
Added:
2019-10-17 21:09:32,040 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2264
Added:
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
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2266
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2267
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2268
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2269
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2270
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2271
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2272
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2273
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2274
Added:
2019-10-17 21:09:32,198 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2275
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2276
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2277
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2278
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2279
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2280
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2281
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2282
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2283
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2284
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2285
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2286
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2287
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2288
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2289
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2290
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2291
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2292
Added:
2019-10-17 21:09:32,199 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2293
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2294
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2295
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2296
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2297
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2298
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2299
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2300
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2301
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2302
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2303
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2304
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2305
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2306
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2307
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2308
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2309
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2310
Added:
2019-10-17 21:09:32,200 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2311
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2312
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2313
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2314
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2315
Added:
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
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2317
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2318
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2319
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2320
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2321
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2322
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2323
Added:
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
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2325
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2326
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2327
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2328
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2329
Added:
2019-10-17 21:09:32,201 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2330
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2331
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2332
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2333
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2334
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2335
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2336
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2337
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2338
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2339
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2340
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2341
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2342
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2343
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2344
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2345
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2346
Added:
2019-10-17 21:09:32,202 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2347
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2348
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2349
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2350
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2351
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2352
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2353
Added:
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
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2355
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2356
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2357
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2358
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2359
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2360
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2361
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2362
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2363
Added:
2019-10-17 21:09:32,203 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2364
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2365
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2366
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2367
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2368
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2369
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2370
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2371
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2372
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2373
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2374
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2375
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2376
Added:
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
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2378
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2379
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2380
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2381
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2382
Added:
2019-10-17 21:09:32,204 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2383
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2384
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2385
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2386
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2387
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2388
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2389
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2390
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2391
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2392
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2393
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2394
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2395
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2396
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2397
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2398
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2399
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2400
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2401
Added:
2019-10-17 21:09:32,205 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2402
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2403
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2404
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2405
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2406
Added:
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
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2408
Added:
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
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2410
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2411
Added:
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
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2413
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2414
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2415
Added:
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
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2417
Added:
2019-10-17 21:09:32,206 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2418
Added:
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
Added:
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
Added:
2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2421
Added:
2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2422
Added:
2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2423
Added:
2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2424
Added:
2019-10-17 21:09:32,219 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2425
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2426
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2427
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2428
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2429
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2430
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2431
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2432
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2433
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2434
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2435
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2436
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2437
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2438
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2439
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2440
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2441
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2442
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2443
Added:
2019-10-17 21:09:32,220 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2444
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2445
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2446
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2447
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2448
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2449
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2450
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2451
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2452
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2453
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2454
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2455
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2456
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2457
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2458
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2459
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2460
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2461
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2462
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2463
Added:
2019-10-17 21:09:32,221 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2464
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2465
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2466
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2467
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2468
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2469
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2470
Added:
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
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2472
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2473
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2474
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2475
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2476
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2477
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2478
Added:
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
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2480
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2481
Added:
2019-10-17 21:09:32,222 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2482
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2483
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2484
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2485
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2486
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2487
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2488
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2489
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2490
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2491
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2492
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2493
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2494
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2495
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2496
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2497
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2498
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2499
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2500
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2501
Added:
2019-10-17 21:09:32,223 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2502
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2503
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2504
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2505
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2506
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2507
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2508
Added:
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
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2510
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2511
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2512
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2513
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2514
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2515
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2516
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2517
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2518
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2519
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2520
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2521
Added:
2019-10-17 21:09:32,224 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2522
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2523
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2524
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2525
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2526
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2527
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2528
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2529
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2530
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2531
Added:
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
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2533
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2534
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2535
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2536
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2537
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2538
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2539
Added:
2019-10-17 21:09:32,225 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2540
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2541
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2542
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2543
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2544
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2545
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2546
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2547
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2548
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2549
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2550
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2551
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2552
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2553
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2554
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2555
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2556
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2557
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2558
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2559
Added:
2019-10-17 21:09:32,226 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2560
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2561
Added:
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
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2563
Added:
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
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2565
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2566
Added:
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
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2568
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2569
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2570
Added:
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
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2572
Added:
2019-10-17 21:09:32,227 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2573
Added:
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
Added:
2019-10-17 21:09:38,159 - DEBUG - $HOME=/home/blendux
2575
Added:
2019-10-17 21:09:38,159 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2576
Added:
2019-10-17 21:09:38,159 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2577
Added:
2019-10-17 21:09:38,164 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2578
Added:
2019-10-17 21:09:38,166 - DEBUG - matplotlib version 3.1.1
2579
Added:
2019-10-17 21:09:38,166 - DEBUG - interactive is False
2580
Added:
2019-10-17 21:09:38,166 - DEBUG - platform is linux
2581
Added:
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
Added:
2019-10-17 21:09:38,198 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2583
Added:
2019-10-17 21:09:38,199 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2584
Added:
2019-10-17 21:09:38,291 - DEBUG - Loaded backend qt5agg version unknown.
2585
Added:
2019-10-17 21:09:38,301 - DEBUG - Loaded backend tkagg version unknown.
2586
Added:
2019-10-17 21:09:38,301 - DEBUG - Loaded backend TkAgg version unknown.
2587
Added:
2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2588
Added:
2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2589
Added:
2019-10-17 21:09:38,333 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2590
Added:
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
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2592
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2593
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2594
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2595
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2596
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2597
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2598
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2599
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2600
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2601
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2602
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2603
Added:
2019-10-17 21:09:38,424 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2604
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2605
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2606
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2607
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2608
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2609
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2610
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2611
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2612
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2613
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2614
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2615
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2616
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2617
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2618
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2619
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2620
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2621
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2622
Added:
2019-10-17 21:09:38,425 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2623
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2624
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2625
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2626
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2627
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2628
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2629
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2630
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2631
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2632
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2633
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2634
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2635
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2636
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2637
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2638
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2639
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2640
Added:
2019-10-17 21:09:38,426 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2641
Added:
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
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2643
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2644
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2645
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2646
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2647
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2648
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2649
Added:
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
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2651
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2652
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2653
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2654
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2655
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2656
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2657
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2658
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2659
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2660
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2661
Added:
2019-10-17 21:09:38,427 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2662
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2663
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2664
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2665
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2666
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2667
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2668
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2669
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2670
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2671
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2672
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2673
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2674
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2675
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2676
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2677
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2678
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2679
Added:
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
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2681
Added:
2019-10-17 21:09:38,428 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2682
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2683
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2684
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2685
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2686
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2687
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2688
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2689
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2690
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2691
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2692
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2693
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2694
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2695
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2696
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2697
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2698
Added:
2019-10-17 21:09:38,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2699
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2700
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2701
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2702
Added:
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
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2704
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2705
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2706
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2707
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2708
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2709
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2710
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2711
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2712
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2713
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2714
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2715
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2716
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2717
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2718
Added:
2019-10-17 21:09:38,430 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2719
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2720
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2721
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2722
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2723
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2724
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2725
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2726
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2727
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2728
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2729
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2730
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2731
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2732
Added:
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
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2734
Added:
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
Added:
2019-10-17 21:09:38,431 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2736
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2737
Added:
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
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2739
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2740
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2741
Added:
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
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2743
Added:
2019-10-17 21:09:38,432 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2744
Added:
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
Added:
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
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2747
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2748
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2749
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2750
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2751
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2752
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2753
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2754
Added:
2019-10-17 21:09:38,442 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2755
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2756
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2757
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2758
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2759
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2760
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2761
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2762
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2763
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2764
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2765
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2766
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2767
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2768
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2769
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2770
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2771
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2772
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2773
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2774
Added:
2019-10-17 21:09:38,443 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2775
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2776
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2777
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2778
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2779
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2780
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2781
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2782
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2783
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2784
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2785
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2786
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2787
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2788
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2789
Added:
2019-10-17 21:09:38,444 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2790
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2791
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2792
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2793
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2794
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2795
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2796
Added:
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
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2798
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2799
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2800
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2801
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2802
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2803
Added:
2019-10-17 21:09:38,445 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2804
Added:
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
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2806
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2807
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2808
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2809
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2810
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2811
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2812
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2813
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2814
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2815
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2816
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2817
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2818
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2819
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2820
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2821
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2822
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2823
Added:
2019-10-17 21:09:38,446 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2824
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2825
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2826
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2827
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2828
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
2829
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
2830
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
2831
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
2832
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
2833
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
2834
Added:
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
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
2836
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
2837
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
2838
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
2839
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
2840
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
2841
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
2842
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
2843
Added:
2019-10-17 21:09:38,447 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
2844
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
2845
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
2846
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
2847
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
2848
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
2849
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
2850
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
2851
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
2852
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
2853
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2854
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
2855
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
2856
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
2857
Added:
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
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
2859
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
2860
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
2861
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
2862
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
2863
Added:
2019-10-17 21:09:38,448 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
2864
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
2865
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
2866
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
2867
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
2868
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
2869
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
2870
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
2871
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
2872
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
2873
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
2874
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
2875
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
2876
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
2877
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
2878
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
2879
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
2880
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
2881
Added:
2019-10-17 21:09:38,449 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
2882
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
2883
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
2884
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
2885
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
2886
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
2887
Added:
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
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
2889
Added:
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
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
2891
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
2892
Added:
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
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
2894
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
2895
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
2896
Added:
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
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
2898
Added:
2019-10-17 21:09:38,450 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
2899
Added:
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
Added:
2019-10-17 21:11:53,839 - DEBUG - $HOME=/home/blendux
2901
Added:
2019-10-17 21:11:53,839 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
2902
Added:
2019-10-17 21:11:53,839 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
2903
Added:
2019-10-17 21:11:53,844 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
2904
Added:
2019-10-17 21:11:53,845 - DEBUG - matplotlib version 3.1.1
2905
Added:
2019-10-17 21:11:53,845 - DEBUG - interactive is False
2906
Added:
2019-10-17 21:11:53,846 - DEBUG - platform is linux
2907
Added:
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
Added:
2019-10-17 21:11:53,879 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
2909
Added:
2019-10-17 21:11:53,880 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
2910
Added:
2019-10-17 21:11:53,972 - DEBUG - Loaded backend qt5agg version unknown.
2911
Added:
2019-10-17 21:11:53,981 - DEBUG - Loaded backend tkagg version unknown.
2912
Added:
2019-10-17 21:11:53,981 - DEBUG - Loaded backend TkAgg version unknown.
2913
Added:
2019-10-17 21:11:54,012 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
2914
Added:
2019-10-17 21:11:54,013 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
2915
Added:
2019-10-17 21:11:54,013 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
2916
Added:
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
Added:
2019-10-17 21:11:54,101 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
2918
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
2919
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
2920
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
2921
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
2922
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2923
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
2924
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
2925
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
2926
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
2927
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
2928
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
2929
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
2930
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
2931
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
2932
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
2933
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
2934
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
2935
Added:
2019-10-17 21:11:54,102 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
2936
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
2937
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
2938
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
2939
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
2940
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
2941
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
2942
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2943
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
2944
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
2945
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
2946
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
2947
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
2948
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
2949
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
2950
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
2951
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
2952
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
2953
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
2954
Added:
2019-10-17 21:11:54,103 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
2955
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
2956
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
2957
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2958
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
2959
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
2960
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
2961
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
2962
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
2963
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
2964
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
2965
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
2966
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
2967
Added:
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
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
2969
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
2970
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
2971
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
2972
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
2973
Added:
2019-10-17 21:11:54,104 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
2974
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
2975
Added:
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
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
2977
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
2978
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
2979
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
2980
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
2981
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
2982
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
2983
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
2984
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
2985
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
2986
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
2987
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
2988
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
2989
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
2990
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
2991
Added:
2019-10-17 21:11:54,105 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
2992
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
2993
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
2994
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
2995
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
2996
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
2997
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
2998
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
2999
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3000
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3001
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3002
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3003
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3004
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3005
Added:
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
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3007
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3008
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3009
Added:
2019-10-17 21:11:54,106 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3010
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3011
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3012
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3013
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3014
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3015
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3016
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3017
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3018
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3019
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3020
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3021
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3022
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3023
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3024
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3025
Added:
2019-10-17 21:11:54,107 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3026
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3027
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3028
Added:
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
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3030
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3031
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3032
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3033
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3034
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3035
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3036
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3037
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3038
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3039
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3040
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3041
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3042
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3043
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3044
Added:
2019-10-17 21:11:54,108 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3045
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3046
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3047
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3048
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3049
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3050
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3051
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3052
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3053
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3054
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3055
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3056
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3057
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3058
Added:
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
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3060
Added:
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
Added:
2019-10-17 21:11:54,109 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3062
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3063
Added:
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
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3065
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3066
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3067
Added:
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
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3069
Added:
2019-10-17 21:11:54,110 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3070
Added:
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
Added:
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
Added:
2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3073
Added:
2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3074
Added:
2019-10-17 21:11:54,120 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3075
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3076
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3077
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3078
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3079
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3080
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3081
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3082
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3083
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3084
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3085
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3086
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3087
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3088
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3089
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3090
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3091
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3092
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3093
Added:
2019-10-17 21:11:54,121 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3094
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3095
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3096
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3097
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3098
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3099
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3100
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3101
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3102
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3103
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3104
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3105
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3106
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3107
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3108
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3109
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3110
Added:
2019-10-17 21:11:54,122 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3111
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3112
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3113
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3114
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3115
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3116
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3117
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3118
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3119
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3120
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3121
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3122
Added:
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
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3124
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3125
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3126
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3127
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3128
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3129
Added:
2019-10-17 21:11:54,123 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3130
Added:
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
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3132
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3133
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3134
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3135
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3136
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3137
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3138
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3139
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3140
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3141
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3142
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3143
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3144
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3145
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3146
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3147
Added:
2019-10-17 21:11:54,124 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3148
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3149
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3150
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3151
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3152
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3153
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3154
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3155
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3156
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3157
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3158
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3159
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3160
Added:
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
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3162
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3163
Added:
2019-10-17 21:11:54,125 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3164
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3165
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3166
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3167
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3168
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3169
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3170
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3171
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3172
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3173
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3174
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3175
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3176
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3177
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3178
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3179
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3180
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3181
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3182
Added:
2019-10-17 21:11:54,126 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3183
Added:
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
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3185
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3186
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3187
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3188
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3189
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3190
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3191
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3192
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3193
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3194
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3195
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3196
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3197
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3198
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3199
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3200
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3201
Added:
2019-10-17 21:11:54,127 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3202
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3203
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3204
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3205
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3206
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3207
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3208
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3209
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3210
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3211
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3212
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3213
Added:
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
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3215
Added:
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
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3217
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3218
Added:
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
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3220
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3221
Added:
2019-10-17 21:11:54,128 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3222
Added:
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
Added:
2019-10-17 21:11:54,129 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3224
Added:
2019-10-17 21:11:54,129 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3225
Added:
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
Added:
2019-10-17 21:12:19,903 - DEBUG - $HOME=/home/blendux
3227
Added:
2019-10-17 21:12:19,903 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3228
Added:
2019-10-17 21:12:19,904 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3229
Added:
2019-10-17 21:12:19,909 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3230
Added:
2019-10-17 21:12:19,910 - DEBUG - matplotlib version 3.1.1
3231
Added:
2019-10-17 21:12:19,910 - DEBUG - interactive is False
3232
Added:
2019-10-17 21:12:19,910 - DEBUG - platform is linux
3233
Added:
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
Added:
2019-10-17 21:12:19,944 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3235
Added:
2019-10-17 21:12:19,946 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3236
Added:
2019-10-17 21:12:20,036 - DEBUG - Loaded backend qt5agg version unknown.
3237
Added:
2019-10-17 21:12:20,046 - DEBUG - Loaded backend tkagg version unknown.
3238
Added:
2019-10-17 21:12:20,046 - DEBUG - Loaded backend TkAgg version unknown.
3239
Added:
2019-10-17 21:12:20,077 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3240
Added:
2019-10-17 21:12:20,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3241
Added:
2019-10-17 21:12:20,078 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3242
Added:
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
Added:
2019-10-17 21:12:20,145 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3244
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3245
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3246
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3247
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3248
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3249
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3250
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3251
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3252
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3253
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3254
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3255
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3256
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3257
Added:
2019-10-17 21:12:20,146 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3258
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3259
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3260
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3261
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3262
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3263
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3264
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3265
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3266
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3267
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3268
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3269
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3270
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3271
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3272
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3273
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3274
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3275
Added:
2019-10-17 21:12:20,147 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3276
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3277
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3278
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3279
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3280
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3281
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3282
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3283
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3284
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3285
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3286
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3287
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3288
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3289
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3290
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3291
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3292
Added:
2019-10-17 21:12:20,148 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3293
Added:
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
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3295
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3296
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3297
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3298
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3299
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3300
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3301
Added:
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
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3303
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3304
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3305
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3306
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3307
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3308
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3309
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3310
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3311
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3312
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3313
Added:
2019-10-17 21:12:20,149 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3314
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3315
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3316
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3317
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3318
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3319
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3320
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3321
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3322
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3323
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3324
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3325
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3326
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3327
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3328
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3329
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3330
Added:
2019-10-17 21:12:20,150 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3331
Added:
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
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3333
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3334
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3335
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3336
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3337
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3338
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3339
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3340
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3341
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3342
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3343
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3344
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3345
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3346
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3347
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3348
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3349
Added:
2019-10-17 21:12:20,151 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3350
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3351
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3352
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3353
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3354
Added:
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
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3356
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3357
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3358
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3359
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3360
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3361
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3362
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3363
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3364
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3365
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3366
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3367
Added:
2019-10-17 21:12:20,152 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3368
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3369
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3370
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3371
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3372
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3373
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3374
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3375
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3376
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3377
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3378
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3379
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3380
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3381
Added:
2019-10-17 21:12:20,153 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3382
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3383
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3384
Added:
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
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3386
Added:
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
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3388
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3389
Added:
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
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3391
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3392
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3393
Added:
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
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3395
Added:
2019-10-17 21:12:20,154 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3396
Added:
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
Added:
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
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3399
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3400
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3401
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3402
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3403
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3404
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3405
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3406
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3407
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3408
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3409
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3410
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3411
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3412
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3413
Added:
2019-10-17 21:12:20,165 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3414
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3415
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3416
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3417
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3418
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3419
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3420
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3421
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3422
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3423
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3424
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3425
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3426
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3427
Added:
2019-10-17 21:12:20,166 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3428
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3429
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3430
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3431
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3432
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3433
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3434
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3435
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3436
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3437
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3438
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3439
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3440
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3441
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3442
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3443
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3444
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3445
Added:
2019-10-17 21:12:20,167 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3446
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3447
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3448
Added:
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
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3450
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3451
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3452
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3453
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3454
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3455
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3456
Added:
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
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3458
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3459
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3460
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3461
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3462
Added:
2019-10-17 21:12:20,168 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3463
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3464
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3465
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3466
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3467
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3468
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3469
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3470
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3471
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3472
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3473
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3474
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3475
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3476
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3477
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3478
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3479
Added:
2019-10-17 21:12:20,169 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3480
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3481
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3482
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3483
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3484
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3485
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3486
Added:
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
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3488
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3489
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3490
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3491
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3492
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3493
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3494
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3495
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3496
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3497
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3498
Added:
2019-10-17 21:12:20,170 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3499
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3500
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3501
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3502
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3503
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3504
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3505
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3506
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3507
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3508
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3509
Added:
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
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3511
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3512
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3513
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3514
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3515
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3516
Added:
2019-10-17 21:12:20,171 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3517
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3518
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3519
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3520
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3521
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3522
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3523
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3524
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3525
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3526
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3527
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3528
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3529
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3530
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3531
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3532
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3533
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3534
Added:
2019-10-17 21:12:20,172 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3535
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3536
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3537
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3538
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3539
Added:
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
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3541
Added:
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
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3543
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3544
Added:
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
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3546
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3547
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3548
Added:
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
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3550
Added:
2019-10-17 21:12:20,173 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3551
Added:
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
Added:
2019-10-17 21:17:38,042 - DEBUG - $HOME=/home/blendux
3553
Added:
2019-10-17 21:17:38,042 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3554
Added:
2019-10-17 21:17:38,043 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3555
Added:
2019-10-17 21:17:38,047 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3556
Added:
2019-10-17 21:17:38,049 - DEBUG - matplotlib version 3.1.1
3557
Added:
2019-10-17 21:17:38,049 - DEBUG - interactive is False
3558
Added:
2019-10-17 21:17:38,049 - DEBUG - platform is linux
3559
Added:
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
Added:
2019-10-17 21:17:38,083 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3561
Added:
2019-10-17 21:17:38,084 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3562
Added:
2019-10-17 21:17:38,174 - DEBUG - Loaded backend qt5agg version unknown.
3563
Added:
2019-10-17 21:17:38,183 - DEBUG - Loaded backend tkagg version unknown.
3564
Added:
2019-10-17 21:17:38,183 - DEBUG - Loaded backend TkAgg version unknown.
3565
Added:
2019-10-17 21:17:38,213 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3566
Added:
2019-10-17 21:17:38,213 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3567
Added:
2019-10-17 21:17:38,214 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3568
Added:
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
Added:
2019-10-17 21:17:38,279 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3570
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3571
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3572
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3573
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3574
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3575
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3576
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3577
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3578
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3579
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3580
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3581
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3582
Added:
2019-10-17 21:17:38,280 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3583
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3584
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3585
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3586
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3587
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3588
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3589
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3590
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3591
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3592
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3593
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3594
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3595
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3596
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3597
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3598
Added:
2019-10-17 21:17:38,281 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3599
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3600
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3601
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3602
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3603
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3604
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3605
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3606
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3607
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3608
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3609
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3610
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3611
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3612
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3613
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3614
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3615
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3616
Added:
2019-10-17 21:17:38,282 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3617
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3618
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3619
Added:
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
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3621
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3622
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3623
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3624
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3625
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3626
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3627
Added:
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
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3629
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3630
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3631
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3632
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3633
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3634
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3635
Added:
2019-10-17 21:17:38,283 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3636
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3637
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3638
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3639
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3640
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3641
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3642
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3643
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3644
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3645
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3646
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3647
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3648
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3649
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3650
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3651
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3652
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3653
Added:
2019-10-17 21:17:38,284 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3654
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3655
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3656
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3657
Added:
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
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3659
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3660
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3661
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3662
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3663
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3664
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3665
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3666
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3667
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3668
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3669
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3670
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3671
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3672
Added:
2019-10-17 21:17:38,285 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3673
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3674
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3675
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3676
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3677
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3678
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3679
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3680
Added:
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
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3682
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3683
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3684
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3685
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3686
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3687
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3688
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3689
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3690
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3691
Added:
2019-10-17 21:17:38,286 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3692
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3693
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3694
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3695
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3696
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3697
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3698
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3699
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3700
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3701
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3702
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3703
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3704
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3705
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3706
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3707
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3708
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3709
Added:
2019-10-17 21:17:38,287 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3710
Added:
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
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3712
Added:
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
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3714
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3715
Added:
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
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3717
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3718
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3719
Added:
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
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3721
Added:
2019-10-17 21:17:38,288 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3722
Added:
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
Added:
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
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
3725
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
3726
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
3727
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
3728
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
3729
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3730
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
3731
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
3732
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
3733
Added:
2019-10-17 21:17:38,298 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
3734
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
3735
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
3736
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
3737
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
3738
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
3739
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
3740
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
3741
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
3742
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
3743
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
3744
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
3745
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
3746
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
3747
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
3748
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
3749
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3750
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
3751
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
3752
Added:
2019-10-17 21:17:38,299 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
3753
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
3754
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
3755
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
3756
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
3757
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
3758
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
3759
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
3760
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
3761
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
3762
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
3763
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
3764
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3765
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
3766
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
3767
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
3768
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
3769
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
3770
Added:
2019-10-17 21:17:38,300 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
3771
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
3772
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
3773
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
3774
Added:
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
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
3776
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
3777
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
3778
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
3779
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
3780
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
3781
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
3782
Added:
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
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
3784
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
3785
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
3786
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
3787
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
3788
Added:
2019-10-17 21:17:38,301 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
3789
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3790
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
3791
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
3792
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
3793
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
3794
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
3795
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
3796
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
3797
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
3798
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
3799
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
3800
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
3801
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
3802
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
3803
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
3804
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
3805
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
3806
Added:
2019-10-17 21:17:38,302 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
3807
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
3808
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
3809
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
3810
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
3811
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
3812
Added:
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
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
3814
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
3815
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
3816
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
3817
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
3818
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
3819
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
3820
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
3821
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
3822
Added:
2019-10-17 21:17:38,303 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
3823
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
3824
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
3825
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
3826
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
3827
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
3828
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
3829
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
3830
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
3831
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
3832
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
3833
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
3834
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
3835
Added:
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
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
3837
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
3838
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
3839
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
3840
Added:
2019-10-17 21:17:38,304 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
3841
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
3842
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
3843
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
3844
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
3845
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
3846
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
3847
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
3848
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
3849
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
3850
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
3851
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
3852
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
3853
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
3854
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
3855
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
3856
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
3857
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
3858
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
3859
Added:
2019-10-17 21:17:38,305 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
3860
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
3861
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
3862
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
3863
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
3864
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
3865
Added:
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
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
3867
Added:
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
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
3869
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
3870
Added:
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
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
3872
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
3873
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
3874
Added:
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
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
3876
Added:
2019-10-17 21:17:38,306 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
3877
Added:
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
Added:
2019-10-17 21:18:14,977 - DEBUG - $HOME=/home/blendux
3879
Added:
2019-10-17 21:18:14,978 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3880
Added:
2019-10-17 21:18:14,978 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3881
Added:
2019-10-17 21:18:14,982 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3882
Added:
2019-10-17 21:18:14,984 - DEBUG - matplotlib version 3.1.1
3883
Added:
2019-10-17 21:18:14,984 - DEBUG - interactive is False
3884
Added:
2019-10-17 21:18:14,984 - DEBUG - platform is linux
3885
Added:
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
Added:
2019-10-17 21:18:15,017 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3887
Added:
2019-10-17 21:18:15,018 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3888
Added:
2019-10-17 21:18:15,135 - DEBUG - Loaded backend qt5agg version unknown.
3889
Added:
2019-10-17 21:18:15,145 - DEBUG - Loaded backend tkagg version unknown.
3890
Added:
2019-10-17 21:18:15,146 - DEBUG - Loaded backend TkAgg version unknown.
3891
Added:
2019-10-17 21:18:15,178 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3892
Added:
2019-10-17 21:18:15,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3893
Added:
2019-10-17 21:18:15,179 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3894
Added:
2019-10-17 21:18:21,421 - DEBUG - $HOME=/home/blendux
3895
Added:
2019-10-17 21:18:21,422 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3896
Added:
2019-10-17 21:18:21,422 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3897
Added:
2019-10-17 21:18:21,427 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3898
Added:
2019-10-17 21:18:21,428 - DEBUG - matplotlib version 3.1.1
3899
Added:
2019-10-17 21:18:21,428 - DEBUG - interactive is False
3900
Added:
2019-10-17 21:18:21,429 - DEBUG - platform is linux
3901
Added:
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
Added:
2019-10-17 21:18:21,461 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3903
Added:
2019-10-17 21:18:21,462 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3904
Added:
2019-10-17 21:18:21,550 - DEBUG - Loaded backend qt5agg version unknown.
3905
Added:
2019-10-17 21:18:21,560 - DEBUG - Loaded backend tkagg version unknown.
3906
Added:
2019-10-17 21:18:21,560 - DEBUG - Loaded backend TkAgg version unknown.
3907
Added:
2019-10-17 21:18:21,591 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3908
Added:
2019-10-17 21:18:21,592 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3909
Added:
2019-10-17 21:18:21,592 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3910
Added:
2019-10-17 21:18:29,840 - DEBUG - $HOME=/home/blendux
3911
Added:
2019-10-17 21:18:29,841 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3912
Added:
2019-10-17 21:18:29,841 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3913
Added:
2019-10-17 21:18:29,846 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3914
Added:
2019-10-17 21:18:29,847 - DEBUG - matplotlib version 3.1.1
3915
Added:
2019-10-17 21:18:29,847 - DEBUG - interactive is False
3916
Added:
2019-10-17 21:18:29,847 - DEBUG - platform is linux
3917
Added:
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
Added:
2019-10-17 21:18:29,878 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3919
Added:
2019-10-17 21:18:29,880 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3920
Added:
2019-10-17 21:18:29,968 - DEBUG - Loaded backend qt5agg version unknown.
3921
Added:
2019-10-17 21:18:29,978 - DEBUG - Loaded backend tkagg version unknown.
3922
Added:
2019-10-17 21:18:29,979 - DEBUG - Loaded backend TkAgg version unknown.
3923
Added:
2019-10-17 21:18:30,010 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3924
Added:
2019-10-17 21:18:30,011 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3925
Added:
2019-10-17 21:18:30,011 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3926
Added:
2019-10-17 21:38:52,869 - DEBUG - $HOME=/home/blendux
3927
Added:
2019-10-17 21:38:52,869 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3928
Added:
2019-10-17 21:38:52,869 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3929
Added:
2019-10-17 21:38:52,875 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3930
Added:
2019-10-17 21:38:52,876 - DEBUG - matplotlib version 3.1.1
3931
Added:
2019-10-17 21:38:52,877 - DEBUG - interactive is False
3932
Added:
2019-10-17 21:38:52,877 - DEBUG - platform is linux
3933
Added:
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
Added:
2019-10-17 21:38:52,910 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3935
Added:
2019-10-17 21:38:52,911 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3936
Added:
2019-10-17 21:38:53,000 - DEBUG - Loaded backend qt5agg version unknown.
3937
Added:
2019-10-17 21:38:53,009 - DEBUG - Loaded backend tkagg version unknown.
3938
Added:
2019-10-17 21:38:53,010 - DEBUG - Loaded backend TkAgg version unknown.
3939
Added:
2019-10-17 21:38:53,052 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3940
Added:
2019-10-17 21:38:53,053 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3941
Added:
2019-10-17 21:38:53,054 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3942
Added:
2019-10-17 21:39:04,182 - DEBUG - $HOME=/home/blendux
3943
Added:
2019-10-17 21:39:04,183 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3944
Added:
2019-10-17 21:39:04,183 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3945
Added:
2019-10-17 21:39:04,188 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3946
Added:
2019-10-17 21:39:04,190 - DEBUG - matplotlib version 3.1.1
3947
Added:
2019-10-17 21:39:04,190 - DEBUG - interactive is False
3948
Added:
2019-10-17 21:39:04,190 - DEBUG - platform is linux
3949
Added:
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
Added:
2019-10-17 21:39:04,223 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3951
Added:
2019-10-17 21:39:04,224 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3952
Added:
2019-10-17 21:39:04,319 - DEBUG - Loaded backend qt5agg version unknown.
3953
Added:
2019-10-17 21:39:04,329 - DEBUG - Loaded backend tkagg version unknown.
3954
Added:
2019-10-17 21:39:04,329 - DEBUG - Loaded backend TkAgg version unknown.
3955
Added:
2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3956
Added:
2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3957
Added:
2019-10-17 21:39:04,362 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3958
Added:
2019-10-17 21:39:07,317 - DEBUG - $HOME=/home/blendux
3959
Added:
2019-10-17 21:39:07,317 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3960
Added:
2019-10-17 21:39:07,317 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3961
Added:
2019-10-17 21:39:07,322 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3962
Added:
2019-10-17 21:39:07,324 - DEBUG - matplotlib version 3.1.1
3963
Added:
2019-10-17 21:39:07,324 - DEBUG - interactive is False
3964
Added:
2019-10-17 21:39:07,324 - DEBUG - platform is linux
3965
Added:
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
Added:
2019-10-17 21:39:07,358 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3967
Added:
2019-10-17 21:39:07,359 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3968
Added:
2019-10-17 21:39:07,451 - DEBUG - Loaded backend qt5agg version unknown.
3969
Added:
2019-10-17 21:39:07,461 - DEBUG - Loaded backend tkagg version unknown.
3970
Added:
2019-10-17 21:39:07,462 - DEBUG - Loaded backend TkAgg version unknown.
3971
Added:
2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3972
Added:
2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3973
Added:
2019-10-17 21:39:07,495 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3974
Added:
2019-10-17 21:48:24,076 - DEBUG - $HOME=/home/blendux
3975
Added:
2019-10-17 21:48:24,076 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3976
Added:
2019-10-17 21:48:24,076 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3977
Added:
2019-10-17 21:48:24,081 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3978
Added:
2019-10-17 21:48:24,083 - DEBUG - matplotlib version 3.1.1
3979
Added:
2019-10-17 21:48:24,083 - DEBUG - interactive is False
3980
Added:
2019-10-17 21:48:24,083 - DEBUG - platform is linux
3981
Added:
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
Added:
2019-10-17 21:48:24,115 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3983
Added:
2019-10-17 21:48:24,117 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
3984
Added:
2019-10-17 21:48:24,208 - DEBUG - Loaded backend qt5agg version unknown.
3985
Added:
2019-10-17 21:48:24,218 - DEBUG - Loaded backend tkagg version unknown.
3986
Added:
2019-10-17 21:48:24,218 - DEBUG - Loaded backend TkAgg version unknown.
3987
Added:
2019-10-17 21:48:24,253 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
3988
Added:
2019-10-17 21:48:24,254 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
3989
Added:
2019-10-17 21:48:24,254 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
3990
Added:
2019-10-17 21:48:59,401 - DEBUG - $HOME=/home/blendux
3991
Added:
2019-10-17 21:48:59,401 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
3992
Added:
2019-10-17 21:48:59,402 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
3993
Added:
2019-10-17 21:48:59,407 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
3994
Added:
2019-10-17 21:48:59,408 - DEBUG - matplotlib version 3.1.1
3995
Added:
2019-10-17 21:48:59,408 - DEBUG - interactive is False
3996
Added:
2019-10-17 21:48:59,408 - DEBUG - platform is linux
3997
Added:
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
Added:
2019-10-17 21:48:59,442 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
3999
Added:
2019-10-17 21:48:59,443 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4000
Added:
2019-10-17 21:48:59,538 - DEBUG - Loaded backend qt5agg version unknown.
4001
Added:
2019-10-17 21:48:59,548 - DEBUG - Loaded backend tkagg version unknown.
4002
Added:
2019-10-17 21:48:59,548 - DEBUG - Loaded backend TkAgg version unknown.
4003
Added:
2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4004
Added:
2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4005
Added:
2019-10-17 21:48:59,583 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4006
Added:
2019-10-17 21:50:14,930 - DEBUG - $HOME=/home/blendux
4007
Added:
2019-10-17 21:50:14,930 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4008
Added:
2019-10-17 21:50:14,930 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4009
Added:
2019-10-17 21:50:14,935 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4010
Added:
2019-10-17 21:50:14,937 - DEBUG - matplotlib version 3.1.1
4011
Added:
2019-10-17 21:50:14,937 - DEBUG - interactive is False
4012
Added:
2019-10-17 21:50:14,937 - DEBUG - platform is linux
4013
Added:
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
Added:
2019-10-17 21:50:14,974 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4015
Added:
2019-10-17 21:50:14,975 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4016
Added:
2019-10-17 21:50:15,077 - DEBUG - Loaded backend qt5agg version unknown.
4017
Added:
2019-10-17 21:50:15,087 - DEBUG - Loaded backend tkagg version unknown.
4018
Added:
2019-10-17 21:50:15,087 - DEBUG - Loaded backend TkAgg version unknown.
4019
Added:
2019-10-17 21:55:29,362 - DEBUG - $HOME=/home/blendux
4020
Added:
2019-10-17 21:55:29,362 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4021
Added:
2019-10-17 21:55:29,362 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4022
Added:
2019-10-17 21:55:29,367 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4023
Added:
2019-10-17 21:55:29,369 - DEBUG - matplotlib version 3.1.1
4024
Added:
2019-10-17 21:55:29,369 - DEBUG - interactive is False
4025
Added:
2019-10-17 21:55:29,369 - DEBUG - platform is linux
4026
Added:
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
Added:
2019-10-17 21:55:29,405 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4028
Added:
2019-10-17 21:55:29,406 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4029
Added:
2019-10-17 21:55:29,508 - DEBUG - Loaded backend qt5agg version unknown.
4030
Added:
2019-10-17 21:55:29,519 - DEBUG - Loaded backend tkagg version unknown.
4031
Added:
2019-10-17 21:55:29,520 - DEBUG - Loaded backend TkAgg version unknown.
4032
Added:
2019-10-17 21:57:14,251 - DEBUG - $HOME=/home/blendux
4033
Added:
2019-10-17 21:57:14,251 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4034
Added:
2019-10-17 21:57:14,251 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4035
Added:
2019-10-17 21:57:14,257 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4036
Added:
2019-10-17 21:57:14,259 - DEBUG - matplotlib version 3.1.1
4037
Added:
2019-10-17 21:57:14,259 - DEBUG - interactive is False
4038
Added:
2019-10-17 21:57:14,259 - DEBUG - platform is linux
4039
Added:
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
Added:
2019-10-17 21:57:14,295 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4041
Added:
2019-10-17 21:57:14,296 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4042
Added:
2019-10-17 21:57:14,398 - DEBUG - Loaded backend qt5agg version unknown.
4043
Added:
2019-10-17 21:57:14,409 - DEBUG - Loaded backend tkagg version unknown.
4044
Added:
2019-10-17 21:57:14,410 - DEBUG - Loaded backend TkAgg version unknown.
4045
Added:
2019-10-17 22:01:48,553 - DEBUG - $HOME=/home/blendux
4046
Added:
2019-10-17 22:01:48,553 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4047
Added:
2019-10-17 22:01:48,553 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4048
Added:
2019-10-17 22:01:48,558 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4049
Added:
2019-10-17 22:01:48,560 - DEBUG - matplotlib version 3.1.1
4050
Added:
2019-10-17 22:01:48,560 - DEBUG - interactive is False
4051
Added:
2019-10-17 22:01:48,560 - DEBUG - platform is linux
4052
Added:
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
Added:
2019-10-17 22:01:48,597 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4054
Added:
2019-10-17 22:01:48,598 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4055
Added:
2019-10-17 22:01:48,698 - DEBUG - Loaded backend qt5agg version unknown.
4056
Added:
2019-10-17 22:01:48,709 - DEBUG - Loaded backend tkagg version unknown.
4057
Added:
2019-10-17 22:01:48,709 - DEBUG - Loaded backend TkAgg version unknown.
4058
Added:
2019-10-17 22:04:00,077 - DEBUG - $HOME=/home/blendux
4059
Added:
2019-10-17 22:04:00,078 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4060
Added:
2019-10-17 22:04:00,078 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4061
Added:
2019-10-17 22:04:00,083 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4062
Added:
2019-10-17 22:04:00,085 - DEBUG - matplotlib version 3.1.1
4063
Added:
2019-10-17 22:04:00,085 - DEBUG - interactive is False
4064
Added:
2019-10-17 22:04:00,085 - DEBUG - platform is linux
4065
Added:
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
Added:
2019-10-17 22:04:00,124 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4067
Added:
2019-10-17 22:04:00,125 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4068
Added:
2019-10-17 22:04:00,226 - DEBUG - Loaded backend qt5agg version unknown.
4069
Added:
2019-10-17 22:04:00,236 - DEBUG - Loaded backend tkagg version unknown.
4070
Added:
2019-10-17 22:04:00,237 - DEBUG - Loaded backend TkAgg version unknown.
4071
Added:
2019-10-17 22:05:02,006 - DEBUG - $HOME=/home/blendux
4072
Added:
2019-10-17 22:05:02,007 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4073
Added:
2019-10-17 22:05:02,007 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4074
Added:
2019-10-17 22:05:02,012 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4075
Added:
2019-10-17 22:05:02,014 - DEBUG - matplotlib version 3.1.1
4076
Added:
2019-10-17 22:05:02,014 - DEBUG - interactive is False
4077
Added:
2019-10-17 22:05:02,014 - DEBUG - platform is linux
4078
Added:
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
Added:
2019-10-17 22:05:02,051 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4080
Added:
2019-10-17 22:05:02,052 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4081
Added:
2019-10-17 22:05:02,154 - DEBUG - Loaded backend qt5agg version unknown.
4082
Added:
2019-10-17 22:05:02,166 - DEBUG - Loaded backend tkagg version unknown.
4083
Added:
2019-10-17 22:05:02,167 - DEBUG - Loaded backend TkAgg version unknown.
4084
Added:
2019-10-17 22:05:15,838 - DEBUG - $HOME=/home/blendux
4085
Added:
2019-10-17 22:05:15,838 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4086
Added:
2019-10-17 22:05:15,838 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4087
Added:
2019-10-17 22:05:15,843 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4088
Added:
2019-10-17 22:05:15,845 - DEBUG - matplotlib version 3.1.1
4089
Added:
2019-10-17 22:05:15,846 - DEBUG - interactive is False
4090
Added:
2019-10-17 22:05:15,846 - DEBUG - platform is linux
4091
Added:
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
Added:
2019-10-17 22:05:15,884 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4093
Added:
2019-10-17 22:05:15,885 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4094
Added:
2019-10-17 22:05:15,990 - DEBUG - Loaded backend qt5agg version unknown.
4095
Added:
2019-10-17 22:05:16,002 - DEBUG - Loaded backend tkagg version unknown.
4096
Added:
2019-10-17 22:05:16,002 - DEBUG - Loaded backend TkAgg version unknown.
4097
Added:
2019-10-17 22:05:50,656 - DEBUG - $HOME=/home/blendux
4098
Added:
2019-10-17 22:05:50,657 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4099
Added:
2019-10-17 22:05:50,657 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4100
Added:
2019-10-17 22:05:50,662 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4101
Added:
2019-10-17 22:05:50,664 - DEBUG - matplotlib version 3.1.1
4102
Added:
2019-10-17 22:05:50,664 - DEBUG - interactive is False
4103
Added:
2019-10-17 22:05:50,664 - DEBUG - platform is linux
4104
Added:
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
Added:
2019-10-17 22:05:50,701 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4106
Added:
2019-10-17 22:05:50,703 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4107
Added:
2019-10-17 22:05:50,805 - DEBUG - Loaded backend qt5agg version unknown.
4108
Added:
2019-10-17 22:05:50,817 - DEBUG - Loaded backend tkagg version unknown.
4109
Added:
2019-10-17 22:05:50,817 - DEBUG - Loaded backend TkAgg version unknown.
4110
Added:
2019-10-17 22:07:07,579 - DEBUG - $HOME=/home/blendux
4111
Added:
2019-10-17 22:07:07,579 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4112
Added:
2019-10-17 22:07:07,579 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4113
Added:
2019-10-17 22:07:07,585 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4114
Added:
2019-10-17 22:07:07,587 - DEBUG - matplotlib version 3.1.1
4115
Added:
2019-10-17 22:07:07,587 - DEBUG - interactive is False
4116
Added:
2019-10-17 22:07:07,587 - DEBUG - platform is linux
4117
Added:
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
Added:
2019-10-17 22:07:07,623 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4119
Added:
2019-10-17 22:07:07,624 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4120
Added:
2019-10-17 22:07:07,725 - DEBUG - Loaded backend qt5agg version unknown.
4121
Added:
2019-10-17 22:07:07,735 - DEBUG - Loaded backend tkagg version unknown.
4122
Added:
2019-10-17 22:07:07,736 - DEBUG - Loaded backend TkAgg version unknown.
4123
Added:
2019-10-17 22:07:25,429 - DEBUG - $HOME=/home/blendux
4124
Added:
2019-10-17 22:07:25,430 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4125
Added:
2019-10-17 22:07:25,430 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4126
Added:
2019-10-17 22:07:25,435 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4127
Added:
2019-10-17 22:07:25,437 - DEBUG - matplotlib version 3.1.1
4128
Added:
2019-10-17 22:07:25,437 - DEBUG - interactive is False
4129
Added:
2019-10-17 22:07:25,437 - DEBUG - platform is linux
4130
Added:
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
Added:
2019-10-17 22:07:25,474 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4132
Added:
2019-10-17 22:07:25,475 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4133
Added:
2019-10-17 22:07:25,578 - DEBUG - Loaded backend qt5agg version unknown.
4134
Added:
2019-10-17 22:07:25,590 - DEBUG - Loaded backend tkagg version unknown.
4135
Added:
2019-10-17 22:07:25,590 - DEBUG - Loaded backend TkAgg version unknown.
4136
Added:
2019-10-17 22:08:34,755 - DEBUG - $HOME=/home/blendux
4137
Added:
2019-10-17 22:08:34,755 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4138
Added:
2019-10-17 22:08:34,756 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4139
Added:
2019-10-17 22:08:34,761 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4140
Added:
2019-10-17 22:08:34,762 - DEBUG - matplotlib version 3.1.1
4141
Added:
2019-10-17 22:08:34,763 - DEBUG - interactive is False
4142
Added:
2019-10-17 22:08:34,763 - DEBUG - platform is linux
4143
Added:
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
Added:
2019-10-17 22:08:34,800 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4145
Added:
2019-10-17 22:08:34,801 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4146
Added:
2019-10-17 22:08:34,902 - DEBUG - Loaded backend qt5agg version unknown.
4147
Added:
2019-10-17 22:08:34,913 - DEBUG - Loaded backend tkagg version unknown.
4148
Added:
2019-10-17 22:08:34,914 - DEBUG - Loaded backend TkAgg version unknown.
4149
Added:
2019-10-17 22:09:23,577 - DEBUG - $HOME=/home/blendux
4150
Added:
2019-10-17 22:09:23,578 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4151
Added:
2019-10-17 22:09:23,578 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4152
Added:
2019-10-17 22:09:23,583 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4153
Added:
2019-10-17 22:09:23,585 - DEBUG - matplotlib version 3.1.1
4154
Added:
2019-10-17 22:09:23,585 - DEBUG - interactive is False
4155
Added:
2019-10-17 22:09:23,585 - DEBUG - platform is linux
4156
Added:
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
Added:
2019-10-17 22:09:23,623 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4158
Added:
2019-10-17 22:09:23,624 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4159
Added:
2019-10-17 22:09:23,726 - DEBUG - Loaded backend qt5agg version unknown.
4160
Added:
2019-10-17 22:09:23,736 - DEBUG - Loaded backend tkagg version unknown.
4161
Added:
2019-10-17 22:09:23,737 - DEBUG - Loaded backend TkAgg version unknown.
4162
Added:
2019-10-17 22:10:21,188 - DEBUG - $HOME=/home/blendux
4163
Added:
2019-10-17 22:10:21,188 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4164
Added:
2019-10-17 22:10:21,189 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4165
Added:
2019-10-17 22:10:21,194 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4166
Added:
2019-10-17 22:10:21,195 - DEBUG - matplotlib version 3.1.1
4167
Added:
2019-10-17 22:10:21,195 - DEBUG - interactive is False
4168
Added:
2019-10-17 22:10:21,196 - DEBUG - platform is linux
4169
Added:
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
Added:
2019-10-17 22:10:21,231 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4171
Added:
2019-10-17 22:10:21,233 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4172
Added:
2019-10-17 22:10:21,333 - DEBUG - Loaded backend qt5agg version unknown.
4173
Added:
2019-10-17 22:10:21,343 - DEBUG - Loaded backend tkagg version unknown.
4174
Added:
2019-10-17 22:10:21,343 - DEBUG - Loaded backend TkAgg version unknown.
4175
Added:
2019-10-17 22:10:21,361 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4176
Added:
2019-10-17 22:10:21,407 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4177
Added:
2019-10-17 22:10:21,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4178
Added:
2019-10-17 22:10:21,408 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4179
Added:
2019-10-17 22:11:40,910 - DEBUG - $HOME=/home/blendux
4180
Added:
2019-10-17 22:11:40,911 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4181
Added:
2019-10-17 22:11:40,911 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4182
Added:
2019-10-17 22:11:40,916 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4183
Added:
2019-10-17 22:11:40,918 - DEBUG - matplotlib version 3.1.1
4184
Added:
2019-10-17 22:11:40,918 - DEBUG - interactive is False
4185
Added:
2019-10-17 22:11:40,918 - DEBUG - platform is linux
4186
Added:
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
Added:
2019-10-17 22:11:40,954 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4188
Added:
2019-10-17 22:11:40,956 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4189
Added:
2019-10-17 22:11:41,058 - DEBUG - Loaded backend qt5agg version unknown.
4190
Added:
2019-10-17 22:11:41,069 - DEBUG - Loaded backend tkagg version unknown.
4191
Added:
2019-10-17 22:11:41,069 - DEBUG - Loaded backend TkAgg version unknown.
4192
Added:
2019-10-17 22:11:41,086 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4193
Added:
2019-10-17 22:11:41,107 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4194
Added:
2019-10-17 22:11:41,108 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4195
Added:
2019-10-17 22:11:41,109 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4196
Added:
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
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4198
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4199
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4200
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4201
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4202
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4203
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4204
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4205
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4206
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4207
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4208
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4209
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4210
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4211
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4212
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4213
Added:
2019-10-17 22:11:41,214 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4214
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4215
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4216
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4217
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4218
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4219
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4220
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4221
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4222
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4223
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4224
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4225
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4226
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4227
Added:
2019-10-17 22:11:41,215 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4228
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4229
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4230
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4231
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4232
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4233
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4234
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4235
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4236
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4237
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4238
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4239
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4240
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4241
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4242
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4243
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4244
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4245
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4246
Added:
2019-10-17 22:11:41,216 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4247
Added:
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
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4249
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4250
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4251
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4252
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4253
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4254
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4255
Added:
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
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4257
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4258
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4259
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4260
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4261
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4262
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4263
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4264
Added:
2019-10-17 22:11:41,217 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4265
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4266
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4267
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4268
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4269
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4270
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4271
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4272
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4273
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4274
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4275
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4276
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4277
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4278
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4279
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4280
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4281
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4282
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4283
Added:
2019-10-17 22:11:41,218 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4284
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4285
Added:
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
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4287
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4288
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4289
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4290
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4291
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4292
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4293
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4294
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4295
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4296
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4297
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4298
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4299
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4300
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4301
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4302
Added:
2019-10-17 22:11:41,219 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4303
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4304
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4305
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4306
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4307
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4308
Added:
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
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4310
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4311
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4312
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4313
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4314
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4315
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4316
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4317
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4318
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4319
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4320
Added:
2019-10-17 22:11:41,220 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4321
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4322
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4323
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4324
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4325
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4326
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4327
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4328
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4329
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4330
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4331
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4332
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4333
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4334
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4335
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4336
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4337
Added:
2019-10-17 22:11:41,221 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4338
Added:
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
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4340
Added:
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
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4342
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4343
Added:
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
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4345
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4346
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4347
Added:
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
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4349
Added:
2019-10-17 22:11:41,222 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4350
Added:
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
Added:
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
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4353
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4354
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4355
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4356
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4357
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4358
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4359
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4360
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4361
Added:
2019-10-17 22:11:41,233 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4362
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4363
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4364
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4365
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4366
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4367
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4368
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4369
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4370
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4371
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4372
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4373
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4374
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4375
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4376
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4377
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4378
Added:
2019-10-17 22:11:41,234 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4379
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4380
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4381
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4382
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4383
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4384
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4385
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4386
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4387
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4388
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4389
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4390
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4391
Added:
2019-10-17 22:11:41,235 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4392
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4393
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4394
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4395
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4396
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4397
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4398
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4399
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4400
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4401
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4402
Added:
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
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4404
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4405
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4406
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4407
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4408
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4409
Added:
2019-10-17 22:11:41,236 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4410
Added:
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
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4412
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4413
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4414
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4415
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4416
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4417
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4418
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4419
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4420
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4421
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4422
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4423
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4424
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4425
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4426
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4427
Added:
2019-10-17 22:11:41,237 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4428
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4429
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4430
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4431
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4432
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4433
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4434
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4435
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4436
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4437
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4438
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4439
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4440
Added:
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
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4442
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4443
Added:
2019-10-17 22:11:41,238 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4444
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4445
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4446
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4447
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4448
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4449
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4450
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4451
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4452
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4453
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4454
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4455
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4456
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4457
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4458
Added:
2019-10-17 22:11:41,239 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4459
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4460
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4461
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4462
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4463
Added:
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
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4465
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4466
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4467
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4468
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4469
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4470
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4471
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4472
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4473
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4474
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4475
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4476
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4477
Added:
2019-10-17 22:11:41,240 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4478
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4479
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4480
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4481
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4482
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4483
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4484
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4485
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4486
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4487
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4488
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4489
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4490
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4491
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4492
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4493
Added:
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
Added:
2019-10-17 22:11:41,241 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4495
Added:
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
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4497
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4498
Added:
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
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4500
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4501
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4502
Added:
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
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4504
Added:
2019-10-17 22:11:41,242 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4505
Added:
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
Added:
2019-10-17 22:12:28,105 - DEBUG - $HOME=/home/blendux
4507
Added:
2019-10-17 22:12:28,105 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4508
Added:
2019-10-17 22:12:28,105 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4509
Added:
2019-10-17 22:12:28,110 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4510
Added:
2019-10-17 22:12:28,112 - DEBUG - matplotlib version 3.1.1
4511
Added:
2019-10-17 22:12:28,112 - DEBUG - interactive is False
4512
Added:
2019-10-17 22:12:28,112 - DEBUG - platform is linux
4513
Added:
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
Added:
2019-10-17 22:12:28,149 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4515
Added:
2019-10-17 22:12:28,151 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4516
Added:
2019-10-17 22:12:28,252 - DEBUG - Loaded backend qt5agg version unknown.
4517
Added:
2019-10-17 22:12:28,263 - DEBUG - Loaded backend tkagg version unknown.
4518
Added:
2019-10-17 22:12:28,263 - DEBUG - Loaded backend TkAgg version unknown.
4519
Added:
2019-10-17 22:12:28,280 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4520
Added:
2019-10-17 22:12:28,303 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4521
Added:
2019-10-17 22:12:28,303 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4522
Added:
2019-10-17 22:12:28,304 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4523
Added:
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
Added:
2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4525
Added:
2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4526
Added:
2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4527
Added:
2019-10-17 22:12:28,408 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4528
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4529
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4530
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4531
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4532
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4533
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4534
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4535
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4536
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4537
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4538
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4539
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4540
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4541
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4542
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4543
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4544
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4545
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4546
Added:
2019-10-17 22:12:28,409 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4547
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4548
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4549
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4550
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4551
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4552
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4553
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4554
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4555
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4556
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4557
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4558
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4559
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4560
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4561
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4562
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4563
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4564
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4565
Added:
2019-10-17 22:12:28,410 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4566
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4567
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4568
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4569
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4570
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4571
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4572
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4573
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4574
Added:
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
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4576
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4577
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4578
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4579
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4580
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4581
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4582
Added:
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
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4584
Added:
2019-10-17 22:12:28,411 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4585
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4586
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4587
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4588
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4589
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4590
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4591
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4592
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4593
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4594
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4595
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4596
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4597
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4598
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4599
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4600
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4601
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4602
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4603
Added:
2019-10-17 22:12:28,412 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4604
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4605
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4606
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4607
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4608
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4609
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4610
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4611
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4612
Added:
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
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4614
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4615
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4616
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4617
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4618
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4619
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4620
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4621
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4622
Added:
2019-10-17 22:12:28,413 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4623
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4624
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4625
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4626
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4627
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4628
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4629
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4630
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4631
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4632
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4633
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4634
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4635
Added:
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
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4637
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4638
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4639
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4640
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4641
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4642
Added:
2019-10-17 22:12:28,414 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4643
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4644
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4645
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4646
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4647
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4648
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4649
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4650
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4651
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4652
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4653
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4654
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4655
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4656
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4657
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4658
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4659
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4660
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4661
Added:
2019-10-17 22:12:28,415 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4662
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4663
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4664
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4665
Added:
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
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4667
Added:
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
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4669
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4670
Added:
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
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4672
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4673
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4674
Added:
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
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4676
Added:
2019-10-17 22:12:28,416 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4677
Added:
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
Added:
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
Added:
2019-10-17 22:12:28,426 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4680
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4681
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4682
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4683
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4684
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4685
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4686
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4687
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4688
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4689
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4690
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4691
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4692
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4693
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4694
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4695
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4696
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4697
Added:
2019-10-17 22:12:28,427 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4698
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4699
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4700
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4701
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4702
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4703
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4704
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4705
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4706
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4707
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4708
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4709
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4710
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4711
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4712
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4713
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4714
Added:
2019-10-17 22:12:28,428 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4715
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4716
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4717
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4718
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4719
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4720
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4721
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4722
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4723
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4724
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4725
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4726
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4727
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4728
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4729
Added:
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
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4731
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4732
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4733
Added:
2019-10-17 22:12:28,429 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4734
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4735
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4736
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4737
Added:
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
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4739
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4740
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4741
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4742
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4743
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4744
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4745
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4746
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4747
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4748
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4749
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4750
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4751
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4752
Added:
2019-10-17 22:12:28,430 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4753
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4754
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4755
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4756
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4757
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4758
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4759
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4760
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4761
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4762
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4763
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4764
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4765
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4766
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4767
Added:
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
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4769
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4770
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4771
Added:
2019-10-17 22:12:28,431 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4772
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4773
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4774
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4775
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4776
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4777
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4778
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4779
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4780
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4781
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4782
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4783
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4784
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4785
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4786
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4787
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4788
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4789
Added:
2019-10-17 22:12:28,432 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4790
Added:
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
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4792
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4793
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4794
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4795
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4796
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4797
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4798
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4799
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4800
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4801
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4802
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4803
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4804
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4805
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4806
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4807
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4808
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4809
Added:
2019-10-17 22:12:28,433 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4810
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4811
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4812
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4813
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4814
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4815
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4816
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4817
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4818
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4819
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4820
Added:
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
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4822
Added:
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
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4824
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4825
Added:
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
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4827
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
4828
Added:
2019-10-17 22:12:28,434 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
4829
Added:
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
Added:
2019-10-17 22:12:28,435 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
4831
Added:
2019-10-17 22:12:28,435 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
4832
Added:
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
Added:
2019-10-17 22:12:38,031 - DEBUG - $HOME=/home/blendux
4834
Added:
2019-10-17 22:12:38,031 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
4835
Added:
2019-10-17 22:12:38,031 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
4836
Added:
2019-10-17 22:12:38,037 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
4837
Added:
2019-10-17 22:12:38,039 - DEBUG - matplotlib version 3.1.1
4838
Added:
2019-10-17 22:12:38,039 - DEBUG - interactive is False
4839
Added:
2019-10-17 22:12:38,039 - DEBUG - platform is linux
4840
Added:
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
Added:
2019-10-17 22:12:38,075 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
4842
Added:
2019-10-17 22:12:38,076 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
4843
Added:
2019-10-17 22:12:38,177 - DEBUG - Loaded backend qt5agg version unknown.
4844
Added:
2019-10-17 22:12:38,188 - DEBUG - Loaded backend tkagg version unknown.
4845
Added:
2019-10-17 22:12:38,188 - DEBUG - Loaded backend TkAgg version unknown.
4846
Added:
2019-10-17 22:12:38,206 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
4847
Added:
2019-10-17 22:12:38,228 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
4848
Added:
2019-10-17 22:12:38,228 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
4849
Added:
2019-10-17 22:12:38,229 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
4850
Added:
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
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
4852
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
4853
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
4854
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
4855
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
4856
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4857
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
4858
Added:
2019-10-17 22:12:38,311 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
4859
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
4860
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
4861
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
4862
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
4863
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
4864
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
4865
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
4866
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
4867
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
4868
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
4869
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
4870
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
4871
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
4872
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
4873
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
4874
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
4875
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
4876
Added:
2019-10-17 22:12:38,312 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4877
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
4878
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
4879
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
4880
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
4881
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
4882
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
4883
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
4884
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
4885
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
4886
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
4887
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
4888
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
4889
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
4890
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
4891
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4892
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
4893
Added:
2019-10-17 22:12:38,313 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
4894
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
4895
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
4896
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
4897
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
4898
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
4899
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
4900
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
4901
Added:
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
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
4903
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
4904
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
4905
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
4906
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
4907
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
4908
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
4909
Added:
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
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
4911
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
4912
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
4913
Added:
2019-10-17 22:12:38,314 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
4914
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
4915
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
4916
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4917
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
4918
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
4919
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
4920
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
4921
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
4922
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
4923
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
4924
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
4925
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
4926
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
4927
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
4928
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
4929
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
4930
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
4931
Added:
2019-10-17 22:12:38,315 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
4932
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
4933
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
4934
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
4935
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
4936
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
4937
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
4938
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
4939
Added:
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
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
4941
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
4942
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
4943
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
4944
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
4945
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
4946
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
4947
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
4948
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
4949
Added:
2019-10-17 22:12:38,316 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
4950
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
4951
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
4952
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
4953
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
4954
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
4955
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
4956
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
4957
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
4958
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
4959
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
4960
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
4961
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
4962
Added:
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
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
4964
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
4965
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
4966
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
4967
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
4968
Added:
2019-10-17 22:12:38,317 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
4969
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
4970
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
4971
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
4972
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
4973
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
4974
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
4975
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
4976
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
4977
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
4978
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
4979
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
4980
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
4981
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
4982
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
4983
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
4984
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
4985
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
4986
Added:
2019-10-17 22:12:38,318 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
4987
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
4988
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
4989
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
4990
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
4991
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
4992
Added:
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
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
4994
Added:
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
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
4996
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
4997
Added:
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
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
4999
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5000
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5001
Added:
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
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5003
Added:
2019-10-17 22:12:38,319 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5004
Added:
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
Added:
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
Added:
2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5007
Added:
2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5008
Added:
2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5009
Added:
2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5010
Added:
2019-10-17 22:12:38,330 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5011
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5012
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5013
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5014
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5015
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5016
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5017
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5018
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5019
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5020
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5021
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5022
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5023
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5024
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5025
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5026
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5027
Added:
2019-10-17 22:12:38,331 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5028
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5029
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5030
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5031
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5032
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5033
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5034
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5035
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5036
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5037
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5038
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5039
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5040
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5041
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5042
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5043
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5044
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5045
Added:
2019-10-17 22:12:38,332 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5046
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5047
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5048
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5049
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5050
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5051
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5052
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5053
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5054
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5055
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5056
Added:
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
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5058
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5059
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5060
Added:
2019-10-17 22:12:38,333 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5061
Added:
2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5062
Added:
2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5063
Added:
2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5064
Added:
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
Added:
2019-10-17 22:12:38,334 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5066
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5067
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5068
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5069
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5070
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5071
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5072
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5073
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5074
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5075
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5076
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5077
Added:
2019-10-17 22:12:38,335 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5078
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5079
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5080
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5081
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5082
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5083
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5084
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5085
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5086
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5087
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5088
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5089
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5090
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5091
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5092
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5093
Added:
2019-10-17 22:12:38,336 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5094
Added:
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
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5096
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5097
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5098
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5099
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5100
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5101
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5102
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5103
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5104
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5105
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5106
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5107
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5108
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5109
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5110
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5111
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5112
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5113
Added:
2019-10-17 22:12:38,337 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5114
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5115
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5116
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5117
Added:
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
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5119
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5120
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5121
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5122
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5123
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5124
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5125
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5126
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5127
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5128
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5129
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5130
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5131
Added:
2019-10-17 22:12:38,338 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5132
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5133
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5134
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5135
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5136
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5137
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5138
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5139
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5140
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5141
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5142
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5143
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5144
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5145
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5146
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5147
Added:
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
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5149
Added:
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
Added:
2019-10-17 22:12:38,339 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5151
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5152
Added:
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
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5154
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5155
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5156
Added:
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
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5158
Added:
2019-10-17 22:12:38,340 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5159
Added:
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
Added:
2019-10-17 22:12:56,712 - DEBUG - $HOME=/home/blendux
5161
Added:
2019-10-17 22:12:56,712 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5162
Added:
2019-10-17 22:12:56,712 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5163
Added:
2019-10-17 22:12:56,717 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5164
Added:
2019-10-17 22:12:56,718 - DEBUG - matplotlib version 3.1.1
5165
Added:
2019-10-17 22:12:56,719 - DEBUG - interactive is False
5166
Added:
2019-10-17 22:12:56,719 - DEBUG - platform is linux
5167
Added:
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
Added:
2019-10-17 22:12:56,754 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5169
Added:
2019-10-17 22:12:56,756 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5170
Added:
2019-10-17 22:12:56,858 - DEBUG - Loaded backend qt5agg version unknown.
5171
Added:
2019-10-17 22:12:56,870 - DEBUG - Loaded backend tkagg version unknown.
5172
Added:
2019-10-17 22:12:56,870 - DEBUG - Loaded backend TkAgg version unknown.
5173
Added:
2019-10-17 22:12:56,887 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5174
Added:
2019-10-17 22:12:56,908 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5175
Added:
2019-10-17 22:12:56,909 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5176
Added:
2019-10-17 22:12:56,909 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5177
Added:
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
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5179
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5180
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5181
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5182
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5183
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5184
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5185
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5186
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5187
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5188
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5189
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5190
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5191
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5192
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5193
Added:
2019-10-17 22:12:56,974 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5194
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5195
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5196
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5197
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5198
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5199
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5200
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5201
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5202
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5203
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5204
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5205
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5206
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5207
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5208
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5209
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5210
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5211
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5212
Added:
2019-10-17 22:12:56,975 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5213
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5214
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5215
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5216
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5217
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5218
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5219
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5220
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5221
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5222
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5223
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5224
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5225
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5226
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5227
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5228
Added:
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
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5230
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5231
Added:
2019-10-17 22:12:56,976 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5232
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5233
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5234
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5235
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5236
Added:
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
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5238
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5239
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5240
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5241
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5242
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5243
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5244
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5245
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5246
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5247
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5248
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5249
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5250
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5251
Added:
2019-10-17 22:12:56,977 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5252
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5253
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5254
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5255
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5256
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5257
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5258
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5259
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5260
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5261
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5262
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5263
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5264
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5265
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5266
Added:
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
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5268
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5269
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5270
Added:
2019-10-17 22:12:56,978 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5271
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5272
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5273
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5274
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5275
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5276
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5277
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5278
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5279
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5280
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5281
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5282
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5283
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5284
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5285
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5286
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5287
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5288
Added:
2019-10-17 22:12:56,979 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5289
Added:
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
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5291
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5292
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5293
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5294
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5295
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5296
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5297
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5298
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5299
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5300
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5301
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5302
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5303
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5304
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5305
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5306
Added:
2019-10-17 22:12:56,980 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5307
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5308
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5309
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5310
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5311
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5312
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5313
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5314
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5315
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5316
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5317
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5318
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5319
Added:
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
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5321
Added:
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
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5323
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5324
Added:
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
Added:
2019-10-17 22:12:56,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5326
Added:
2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5327
Added:
2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5328
Added:
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
Added:
2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5330
Added:
2019-10-17 22:12:56,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5331
Added:
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
Added:
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
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5334
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5335
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5336
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5337
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5338
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5339
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5340
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5341
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5342
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5343
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5344
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5345
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5346
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5347
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5348
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5349
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5350
Added:
2019-10-17 22:12:56,992 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5351
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5352
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5353
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5354
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5355
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5356
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5357
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5358
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5359
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5360
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5361
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5362
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5363
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5364
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5365
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5366
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5367
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5368
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5369
Added:
2019-10-17 22:12:56,993 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5370
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5371
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5372
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5373
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5374
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5375
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5376
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5377
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5378
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5379
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5380
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5381
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5382
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5383
Added:
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
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5385
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5386
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5387
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5388
Added:
2019-10-17 22:12:56,994 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5389
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5390
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5391
Added:
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
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5393
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5394
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5395
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5396
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5397
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5398
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5399
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5400
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5401
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5402
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5403
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5404
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5405
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5406
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5407
Added:
2019-10-17 22:12:56,995 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5408
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5409
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5410
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5411
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5412
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5413
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5414
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5415
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5416
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5417
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5418
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5419
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5420
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5421
Added:
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
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5423
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5424
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5425
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5426
Added:
2019-10-17 22:12:56,996 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5427
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5428
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5429
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5430
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5431
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5432
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5433
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5434
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5435
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5436
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5437
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5438
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5439
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5440
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5441
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5442
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5443
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5444
Added:
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
Added:
2019-10-17 22:12:56,997 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5446
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5447
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5448
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5449
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5450
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5451
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5452
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5453
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5454
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5455
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5456
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5457
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5458
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5459
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5460
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5461
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5462
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5463
Added:
2019-10-17 22:12:56,998 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5464
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5465
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5466
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5467
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5468
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5469
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5470
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5471
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5472
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5473
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5474
Added:
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
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5476
Added:
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
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5478
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5479
Added:
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
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5481
Added:
2019-10-17 22:12:56,999 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5482
Added:
2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5483
Added:
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
Added:
2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5485
Added:
2019-10-17 22:12:57,000 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5486
Added:
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
Added:
2019-10-17 22:13:01,699 - DEBUG - $HOME=/home/blendux
5488
Added:
2019-10-17 22:13:01,699 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5489
Added:
2019-10-17 22:13:01,699 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5490
Added:
2019-10-17 22:13:01,705 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5491
Added:
2019-10-17 22:13:01,707 - DEBUG - matplotlib version 3.1.1
5492
Added:
2019-10-17 22:13:01,707 - DEBUG - interactive is False
5493
Added:
2019-10-17 22:13:01,707 - DEBUG - platform is linux
5494
Added:
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
Added:
2019-10-17 22:13:01,742 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5496
Added:
2019-10-17 22:13:01,743 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5497
Added:
2019-10-17 22:13:01,844 - DEBUG - Loaded backend qt5agg version unknown.
5498
Added:
2019-10-17 22:13:01,854 - DEBUG - Loaded backend tkagg version unknown.
5499
Added:
2019-10-17 22:13:01,855 - DEBUG - Loaded backend TkAgg version unknown.
5500
Added:
2019-10-17 22:13:01,871 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5501
Added:
2019-10-17 22:13:01,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5502
Added:
2019-10-17 22:13:01,893 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5503
Added:
2019-10-17 22:13:01,894 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5504
Added:
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
Added:
2019-10-17 22:13:01,958 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5506
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5507
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5508
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5509
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5510
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5511
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5512
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5513
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5514
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5515
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5516
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5517
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5518
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5519
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5520
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5521
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5522
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5523
Added:
2019-10-17 22:13:01,959 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5524
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5525
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5526
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5527
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5528
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5529
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5530
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5531
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5532
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5533
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5534
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5535
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5536
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5537
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5538
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5539
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5540
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5541
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5542
Added:
2019-10-17 22:13:01,960 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5543
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5544
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5545
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5546
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5547
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5548
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5549
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5550
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5551
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5552
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5553
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5554
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5555
Added:
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
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5557
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5558
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5559
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5560
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5561
Added:
2019-10-17 22:13:01,961 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5562
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5563
Added:
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
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5565
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5566
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5567
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5568
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5569
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5570
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5571
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5572
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5573
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5574
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5575
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5576
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5577
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5578
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5579
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5580
Added:
2019-10-17 22:13:01,962 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5581
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5582
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5583
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5584
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5585
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5586
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5587
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5588
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5589
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5590
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5591
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5592
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5593
Added:
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
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5595
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5596
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5597
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5598
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5599
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5600
Added:
2019-10-17 22:13:01,963 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5601
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5602
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5603
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5604
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5605
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5606
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5607
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5608
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5609
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5610
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5611
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5612
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5613
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5614
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5615
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5616
Added:
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
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5618
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5619
Added:
2019-10-17 22:13:01,964 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5620
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5621
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5622
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5623
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5624
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5625
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5626
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5627
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5628
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5629
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5630
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5631
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5632
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5633
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5634
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5635
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5636
Added:
2019-10-17 22:13:01,965 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5637
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5638
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5639
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5640
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5641
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5642
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5643
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5644
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5645
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5646
Added:
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
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5648
Added:
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
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5650
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5651
Added:
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
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5653
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5654
Added:
2019-10-17 22:13:01,966 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5655
Added:
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
Added:
2019-10-17 22:13:01,967 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5657
Added:
2019-10-17 22:13:01,967 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5658
Added:
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
Added:
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
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5661
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5662
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5663
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5664
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5665
Added:
2019-10-17 22:13:01,978 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5666
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5667
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5668
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5669
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5670
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5671
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5672
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5673
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5674
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5675
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5676
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5677
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5678
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5679
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5680
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5681
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5682
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5683
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5684
Added:
2019-10-17 22:13:01,979 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5685
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5686
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5687
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5688
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5689
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5690
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5691
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5692
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5693
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5694
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5695
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5696
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5697
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5698
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5699
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5700
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5701
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5702
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5703
Added:
2019-10-17 22:13:01,980 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5704
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5705
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5706
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5707
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5708
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5709
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5710
Added:
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
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5712
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5713
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5714
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5715
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5716
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5717
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5718
Added:
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
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5720
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5721
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5722
Added:
2019-10-17 22:13:01,981 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5723
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5724
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5725
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5726
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5727
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5728
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5729
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5730
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5731
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5732
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5733
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5734
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5735
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5736
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5737
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5738
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5739
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5740
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5741
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5742
Added:
2019-10-17 22:13:01,982 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5743
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5744
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5745
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5746
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5747
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5748
Added:
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
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5750
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5751
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5752
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5753
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5754
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5755
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5756
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5757
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5758
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5759
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5760
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5761
Added:
2019-10-17 22:13:01,983 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5762
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5763
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5764
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5765
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5766
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5767
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5768
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5769
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5770
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5771
Added:
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
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5773
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5774
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5775
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5776
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5777
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5778
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5779
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5780
Added:
2019-10-17 22:13:01,984 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5781
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5782
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5783
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5784
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5785
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5786
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5787
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5788
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5789
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5790
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5791
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5792
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5793
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5794
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5795
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5796
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5797
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5798
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5799
Added:
2019-10-17 22:13:01,985 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5800
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5801
Added:
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
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5803
Added:
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
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5805
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5806
Added:
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
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5808
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5809
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5810
Added:
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
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5812
Added:
2019-10-17 22:13:01,986 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5813
Added:
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
Added:
2019-10-17 22:14:09,618 - DEBUG - $HOME=/home/blendux
5815
Added:
2019-10-17 22:14:09,618 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
5816
Added:
2019-10-17 22:14:09,618 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
5817
Added:
2019-10-17 22:14:09,623 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
5818
Added:
2019-10-17 22:14:09,625 - DEBUG - matplotlib version 3.1.1
5819
Added:
2019-10-17 22:14:09,625 - DEBUG - interactive is False
5820
Added:
2019-10-17 22:14:09,625 - DEBUG - platform is linux
5821
Added:
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
Added:
2019-10-17 22:14:09,662 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
5823
Added:
2019-10-17 22:14:09,663 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
5824
Added:
2019-10-17 22:14:09,766 - DEBUG - Loaded backend qt5agg version unknown.
5825
Added:
2019-10-17 22:14:09,777 - DEBUG - Loaded backend tkagg version unknown.
5826
Added:
2019-10-17 22:14:09,778 - DEBUG - Loaded backend TkAgg version unknown.
5827
Added:
2019-10-17 22:14:09,794 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
5828
Added:
2019-10-17 22:14:09,815 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
5829
Added:
2019-10-17 22:14:09,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
5830
Added:
2019-10-17 22:14:09,816 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
5831
Added:
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
Added:
2019-10-17 22:14:09,913 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5833
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5834
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5835
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5836
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5837
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5838
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5839
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5840
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5841
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5842
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5843
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5844
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
5845
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
5846
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
5847
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
5848
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
5849
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
5850
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
5851
Added:
2019-10-17 22:14:09,914 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
5852
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
5853
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
5854
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
5855
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
5856
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
5857
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5858
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
5859
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
5860
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
5861
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
5862
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
5863
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
5864
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
5865
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
5866
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
5867
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
5868
Added:
2019-10-17 22:14:09,915 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
5869
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
5870
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
5871
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
5872
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5873
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5874
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
5875
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
5876
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
5877
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
5878
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
5879
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
5880
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
5881
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
5882
Added:
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
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
5884
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
5885
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
5886
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
5887
Added:
2019-10-17 22:14:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
5888
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
5889
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
5890
Added:
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
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
5892
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
5893
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
5894
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
5895
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
5896
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
5897
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5898
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
5899
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
5900
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
5901
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
5902
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
5903
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
5904
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
5905
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
5906
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
5907
Added:
2019-10-17 22:14:09,917 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
5908
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
5909
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
5910
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
5911
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
5912
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
5913
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
5914
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
5915
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
5916
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
5917
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
5918
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
5919
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
5920
Added:
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
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
5922
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
5923
Added:
2019-10-17 22:14:09,918 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
5924
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
5925
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
5926
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
5927
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
5928
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
5929
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
5930
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
5931
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
5932
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
5933
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
5934
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
5935
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
5936
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
5937
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
5938
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
5939
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
5940
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
5941
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
5942
Added:
2019-10-17 22:14:09,919 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
5943
Added:
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
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
5945
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
5946
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
5947
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
5948
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
5949
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
5950
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
5951
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
5952
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
5953
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
5954
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
5955
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
5956
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
5957
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
5958
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
5959
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
5960
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
5961
Added:
2019-10-17 22:14:09,920 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
5962
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
5963
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
5964
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
5965
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
5966
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
5967
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
5968
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
5969
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
5970
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
5971
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
5972
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
5973
Added:
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
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
5975
Added:
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
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
5977
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
5978
Added:
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
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
5980
Added:
2019-10-17 22:14:09,921 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
5981
Added:
2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
5982
Added:
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
Added:
2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
5984
Added:
2019-10-17 22:14:09,922 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
5985
Added:
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
Added:
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
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
5988
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
5989
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
5990
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
5991
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
5992
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
5993
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
5994
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
5995
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
5996
Added:
2019-10-17 22:14:09,933 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
5997
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
5998
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
5999
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6000
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6001
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6002
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6003
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6004
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6005
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6006
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6007
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6008
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6009
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6010
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6011
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6012
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6013
Added:
2019-10-17 22:14:09,934 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6014
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6015
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6016
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6017
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6018
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6019
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6020
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6021
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6022
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6023
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6024
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6025
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6026
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6027
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6028
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6029
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6030
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6031
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6032
Added:
2019-10-17 22:14:09,935 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6033
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6034
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6035
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6036
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6037
Added:
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
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6039
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6040
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6041
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6042
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6043
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6044
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6045
Added:
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
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6047
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6048
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6049
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6050
Added:
2019-10-17 22:14:09,936 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6051
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6052
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6053
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6054
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6055
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6056
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6057
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6058
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6059
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6060
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6061
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6062
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6063
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6064
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6065
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6066
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6067
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6068
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6069
Added:
2019-10-17 22:14:09,937 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6070
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6071
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6072
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6073
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6074
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6075
Added:
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
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6077
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6078
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6079
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6080
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6081
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6082
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6083
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6084
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6085
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6086
Added:
2019-10-17 22:14:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6087
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6088
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6089
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6090
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6091
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6092
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6093
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6094
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6095
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6096
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6097
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6098
Added:
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
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6100
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6101
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6102
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6103
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6104
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6105
Added:
2019-10-17 22:14:09,939 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6106
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6107
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6108
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6109
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6110
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6111
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6112
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6113
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6114
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6115
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6116
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6117
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6118
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6119
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6120
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6121
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6122
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6123
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6124
Added:
2019-10-17 22:14:09,940 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6125
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6126
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6127
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6128
Added:
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
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6130
Added:
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
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6132
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6133
Added:
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
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6135
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6136
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6137
Added:
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
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6139
Added:
2019-10-17 22:14:09,941 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6140
Added:
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
Added:
2019-10-17 22:14:13,057 - DEBUG - $HOME=/home/blendux
6142
Added:
2019-10-17 22:14:13,058 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6143
Added:
2019-10-17 22:14:13,058 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6144
Added:
2019-10-17 22:14:13,063 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6145
Added:
2019-10-17 22:14:13,065 - DEBUG - matplotlib version 3.1.1
6146
Added:
2019-10-17 22:14:13,065 - DEBUG - interactive is False
6147
Added:
2019-10-17 22:14:13,065 - DEBUG - platform is linux
6148
Added:
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
Added:
2019-10-17 22:14:13,102 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6150
Added:
2019-10-17 22:14:13,103 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6151
Added:
2019-10-17 22:14:13,207 - DEBUG - Loaded backend qt5agg version unknown.
6152
Added:
2019-10-17 22:14:13,219 - DEBUG - Loaded backend tkagg version unknown.
6153
Added:
2019-10-17 22:14:13,219 - DEBUG - Loaded backend TkAgg version unknown.
6154
Added:
2019-10-17 22:14:13,235 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6155
Added:
2019-10-17 22:14:13,258 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6156
Added:
2019-10-17 22:14:13,258 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6157
Added:
2019-10-17 22:14:13,259 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6158
Added:
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
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6160
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6161
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6162
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6163
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6164
Added:
2019-10-17 22:14:13,350 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6165
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6166
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6167
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6168
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6169
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6170
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6171
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6172
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6173
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6174
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6175
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6176
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6177
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6178
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6179
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6180
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6181
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6182
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6183
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6184
Added:
2019-10-17 22:14:13,351 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6185
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6186
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6187
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6188
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6189
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6190
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6191
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6192
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6193
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6194
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6195
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6196
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6197
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6198
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6199
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6200
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6201
Added:
2019-10-17 22:14:13,352 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6202
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6203
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6204
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6205
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6206
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6207
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6208
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6209
Added:
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
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6211
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6212
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6213
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6214
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6215
Added:
2019-10-17 22:14:13,353 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6216
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6217
Added:
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
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6219
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6220
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6221
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6222
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6223
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6224
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6225
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6226
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6227
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6228
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6229
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6230
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6231
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6232
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6233
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6234
Added:
2019-10-17 22:14:13,354 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6235
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6236
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6237
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6238
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6239
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6240
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6241
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6242
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6243
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6244
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6245
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6246
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6247
Added:
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
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6249
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6250
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6251
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6252
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6253
Added:
2019-10-17 22:14:13,355 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6254
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6255
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6256
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6257
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6258
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6259
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6260
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6261
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6262
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6263
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6264
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6265
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6266
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6267
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6268
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6269
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6270
Added:
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
Added:
2019-10-17 22:14:13,356 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6272
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6273
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6274
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6275
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6276
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6277
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6278
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6279
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6280
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6281
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6282
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6283
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6284
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6285
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6286
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6287
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6288
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6289
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6290
Added:
2019-10-17 22:14:13,357 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6291
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6292
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6293
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6294
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6295
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6296
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6297
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6298
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6299
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6300
Added:
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
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6302
Added:
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
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6304
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6305
Added:
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
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6307
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6308
Added:
2019-10-17 22:14:13,358 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6309
Added:
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
Added:
2019-10-17 22:14:13,359 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6311
Added:
2019-10-17 22:14:13,359 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6312
Added:
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
Added:
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
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6315
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6316
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6317
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6318
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6319
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6320
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6321
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6322
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6323
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6324
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6325
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6326
Added:
2019-10-17 22:14:13,370 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6327
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6328
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6329
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6330
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6331
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6332
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6333
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6334
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6335
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6336
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6337
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6338
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6339
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6340
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6341
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6342
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6343
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6344
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6345
Added:
2019-10-17 22:14:13,371 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6346
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6347
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6348
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6349
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6350
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6351
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6352
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6353
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6354
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6355
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6356
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6357
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6358
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6359
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6360
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6361
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6362
Added:
2019-10-17 22:14:13,372 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6363
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6364
Added:
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
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6366
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6367
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6368
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6369
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6370
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6371
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6372
Added:
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
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6374
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6375
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6376
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6377
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6378
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6379
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6380
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6381
Added:
2019-10-17 22:14:13,373 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6382
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6383
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6384
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6385
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6386
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6387
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6388
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6389
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6390
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6391
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6392
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6393
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6394
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6395
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6396
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6397
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6398
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6399
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6400
Added:
2019-10-17 22:14:13,374 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6401
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6402
Added:
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
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6404
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6405
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6406
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6407
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6408
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6409
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6410
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6411
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6412
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6413
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6414
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6415
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6416
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6417
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6418
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6419
Added:
2019-10-17 22:14:13,375 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6420
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6421
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6422
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6423
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6424
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6425
Added:
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
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6427
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6428
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6429
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6430
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6431
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6432
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6433
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6434
Added:
2019-10-17 22:14:13,376 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6435
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6436
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6437
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6438
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6439
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6440
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6441
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6442
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6443
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6444
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6445
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6446
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6447
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6448
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6449
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6450
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6451
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6452
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6453
Added:
2019-10-17 22:14:13,377 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6454
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6455
Added:
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
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6457
Added:
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
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6459
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6460
Added:
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
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6462
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6463
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6464
Added:
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
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6466
Added:
2019-10-17 22:14:13,378 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6467
Added:
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
Added:
2019-10-17 22:14:24,643 - DEBUG - $HOME=/home/blendux
6469
Added:
2019-10-17 22:14:24,643 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6470
Added:
2019-10-17 22:14:24,643 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6471
Added:
2019-10-17 22:14:24,648 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6472
Added:
2019-10-17 22:14:24,650 - DEBUG - matplotlib version 3.1.1
6473
Added:
2019-10-17 22:14:24,650 - DEBUG - interactive is False
6474
Added:
2019-10-17 22:14:24,650 - DEBUG - platform is linux
6475
Added:
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
Added:
2019-10-17 22:14:24,686 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6477
Added:
2019-10-17 22:14:24,687 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6478
Added:
2019-10-17 22:14:24,788 - DEBUG - Loaded backend qt5agg version unknown.
6479
Added:
2019-10-17 22:14:24,798 - DEBUG - Loaded backend tkagg version unknown.
6480
Added:
2019-10-17 22:14:24,798 - DEBUG - Loaded backend TkAgg version unknown.
6481
Added:
2019-10-17 22:14:24,815 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6482
Added:
2019-10-17 22:14:24,837 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6483
Added:
2019-10-17 22:14:24,837 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6484
Added:
2019-10-17 22:14:24,838 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6485
Added:
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
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6487
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6488
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6489
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6490
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6491
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6492
Added:
2019-10-17 22:14:24,924 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6493
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6494
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6495
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6496
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6497
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6498
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6499
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6500
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6501
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6502
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6503
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6504
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6505
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6506
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6507
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6508
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6509
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6510
Added:
2019-10-17 22:14:24,925 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6511
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6512
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6513
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6514
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6515
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6516
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6517
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6518
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6519
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6520
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6521
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6522
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6523
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6524
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6525
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6526
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6527
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6528
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6529
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6530
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6531
Added:
2019-10-17 22:14:24,926 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6532
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6533
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6534
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6535
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6536
Added:
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
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6538
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6539
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6540
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6541
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6542
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6543
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6544
Added:
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
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6546
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6547
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6548
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6549
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6550
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6551
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6552
Added:
2019-10-17 22:14:24,927 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6553
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6554
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6555
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6556
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6557
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6558
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6559
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6560
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6561
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6562
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6563
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6564
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6565
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6566
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6567
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6568
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6569
Added:
2019-10-17 22:14:24,928 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6570
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6571
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6572
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6573
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6574
Added:
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
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6576
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6577
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6578
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6579
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6580
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6581
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6582
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6583
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6584
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6585
Added:
2019-10-17 22:14:24,929 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6586
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6587
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6588
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6589
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6590
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6591
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6592
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6593
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6594
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6595
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6596
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6597
Added:
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
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6599
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6600
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6601
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6602
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6603
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6604
Added:
2019-10-17 22:14:24,930 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6605
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6606
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6607
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6608
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6609
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6610
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6611
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6612
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6613
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6614
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6615
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6616
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6617
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6618
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6619
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6620
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6621
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6622
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6623
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6624
Added:
2019-10-17 22:14:24,931 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6625
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6626
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6627
Added:
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
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6629
Added:
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
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6631
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6632
Added:
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
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6634
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6635
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6636
Added:
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
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6638
Added:
2019-10-17 22:14:24,932 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6639
Added:
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
Added:
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
Added:
2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6642
Added:
2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6643
Added:
2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6644
Added:
2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6645
Added:
2019-10-17 22:14:24,943 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6646
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6647
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6648
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6649
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6650
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6651
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6652
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6653
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6654
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6655
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6656
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6657
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6658
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6659
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6660
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6661
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6662
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6663
Added:
2019-10-17 22:14:24,944 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6664
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6665
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6666
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6667
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6668
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6669
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6670
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6671
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6672
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6673
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6674
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6675
Added:
2019-10-17 22:14:24,945 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6676
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6677
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6678
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6679
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6680
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6681
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6682
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6683
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6684
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6685
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6686
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6687
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6688
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6689
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6690
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6691
Added:
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
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6693
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6694
Added:
2019-10-17 22:14:24,946 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6695
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6696
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6697
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6698
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6699
Added:
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
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6701
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6702
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6703
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6704
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6705
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6706
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6707
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6708
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6709
Added:
2019-10-17 22:14:24,947 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6710
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6711
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6712
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6713
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6714
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6715
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6716
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6717
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6718
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6719
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6720
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6721
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6722
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6723
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6724
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6725
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6726
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6727
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6728
Added:
2019-10-17 22:14:24,948 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6729
Added:
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
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6731
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6732
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6733
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6734
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6735
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6736
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6737
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6738
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6739
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6740
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6741
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6742
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6743
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6744
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6745
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6746
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6747
Added:
2019-10-17 22:14:24,949 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6748
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6749
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6750
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6751
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6752
Added:
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
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6754
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6755
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6756
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6757
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6758
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6759
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6760
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6761
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6762
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6763
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6764
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6765
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6766
Added:
2019-10-17 22:14:24,950 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6767
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6768
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6769
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6770
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6771
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6772
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6773
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6774
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6775
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6776
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6777
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6778
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6779
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6780
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6781
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6782
Added:
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
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6784
Added:
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
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6786
Added:
2019-10-17 22:14:24,951 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6787
Added:
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
Added:
2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6789
Added:
2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6790
Added:
2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6791
Added:
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
Added:
2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6793
Added:
2019-10-17 22:14:24,952 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6794
Added:
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
Added:
2019-10-17 22:14:34,287 - DEBUG - $HOME=/home/blendux
6796
Added:
2019-10-17 22:14:34,287 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
6797
Added:
2019-10-17 22:14:34,287 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
6798
Added:
2019-10-17 22:14:34,292 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
6799
Added:
2019-10-17 22:14:34,294 - DEBUG - matplotlib version 3.1.1
6800
Added:
2019-10-17 22:14:34,294 - DEBUG - interactive is False
6801
Added:
2019-10-17 22:14:34,294 - DEBUG - platform is linux
6802
Added:
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
Added:
2019-10-17 22:14:34,331 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
6804
Added:
2019-10-17 22:14:34,332 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
6805
Added:
2019-10-17 22:14:34,435 - DEBUG - Loaded backend qt5agg version unknown.
6806
Added:
2019-10-17 22:14:34,447 - DEBUG - Loaded backend tkagg version unknown.
6807
Added:
2019-10-17 22:14:34,447 - DEBUG - Loaded backend TkAgg version unknown.
6808
Added:
2019-10-17 22:14:34,464 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
6809
Added:
2019-10-17 22:14:34,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
6810
Added:
2019-10-17 22:14:34,486 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
6811
Added:
2019-10-17 22:14:34,487 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
6812
Added:
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
Added:
2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6814
Added:
2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6815
Added:
2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6816
Added:
2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6817
Added:
2019-10-17 22:14:34,575 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6818
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6819
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6820
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6821
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6822
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6823
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6824
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6825
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6826
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6827
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6828
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6829
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6830
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6831
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6832
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6833
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6834
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6835
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6836
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6837
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6838
Added:
2019-10-17 22:14:34,576 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6839
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6840
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6841
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6842
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6843
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6844
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
6845
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
6846
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
6847
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
6848
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
6849
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
6850
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
6851
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
6852
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
6853
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6854
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6855
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
6856
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
6857
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
6858
Added:
2019-10-17 22:14:34,577 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
6859
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
6860
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
6861
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
6862
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
6863
Added:
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
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
6865
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
6866
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
6867
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
6868
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
6869
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
6870
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
6871
Added:
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
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
6873
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
6874
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
6875
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
6876
Added:
2019-10-17 22:14:34,578 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
6877
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
6878
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6879
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
6880
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
6881
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
6882
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
6883
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
6884
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
6885
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
6886
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
6887
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
6888
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
6889
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
6890
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
6891
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
6892
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
6893
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
6894
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
6895
Added:
2019-10-17 22:14:34,579 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
6896
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
6897
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
6898
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
6899
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
6900
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
6901
Added:
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
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
6903
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
6904
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
6905
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
6906
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
6907
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
6908
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
6909
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
6910
Added:
2019-10-17 22:14:34,580 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
6911
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
6912
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
6913
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
6914
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
6915
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
6916
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
6917
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
6918
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
6919
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
6920
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6921
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
6922
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
6923
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
6924
Added:
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
Added:
2019-10-17 22:14:34,581 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
6926
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
6927
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
6928
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
6929
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
6930
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
6931
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
6932
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
6933
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
6934
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
6935
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
6936
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
6937
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
6938
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
6939
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
6940
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
6941
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
6942
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
6943
Added:
2019-10-17 22:14:34,582 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
6944
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
6945
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
6946
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
6947
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
6948
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
6949
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
6950
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
6951
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
6952
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
6953
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
6954
Added:
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
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
6956
Added:
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
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
6958
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
6959
Added:
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
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
6961
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
6962
Added:
2019-10-17 22:14:34,583 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
6963
Added:
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
Added:
2019-10-17 22:14:34,584 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
6965
Added:
2019-10-17 22:14:34,584 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
6966
Added:
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
Added:
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
Added:
2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
6969
Added:
2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
6970
Added:
2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
6971
Added:
2019-10-17 22:14:34,594 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
6972
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
6973
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
6974
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
6975
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
6976
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
6977
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
6978
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
6979
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
6980
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
6981
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
6982
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
6983
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
6984
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
6985
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
6986
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
6987
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
6988
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
6989
Added:
2019-10-17 22:14:34,595 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
6990
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
6991
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
6992
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
6993
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
6994
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
6995
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
6996
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
6997
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
6998
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
6999
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7000
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7001
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7002
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7003
Added:
2019-10-17 22:14:34,596 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7004
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7005
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7006
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7007
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7008
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7009
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7010
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7011
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7012
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7013
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7014
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7015
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7016
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7017
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7018
Added:
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
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7020
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7021
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7022
Added:
2019-10-17 22:14:34,597 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7023
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7024
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7025
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7026
Added:
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
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7028
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7029
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7030
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7031
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7032
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7033
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7034
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7035
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7036
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7037
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7038
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7039
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7040
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7041
Added:
2019-10-17 22:14:34,598 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7042
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7043
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7044
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7045
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7046
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7047
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7048
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7049
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7050
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7051
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7052
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7053
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7054
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7055
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7056
Added:
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
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7058
Added:
2019-10-17 22:14:34,599 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7059
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7060
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7061
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7062
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7063
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7064
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7065
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7066
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7067
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7068
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7069
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7070
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7071
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7072
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7073
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7074
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7075
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7076
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7077
Added:
2019-10-17 22:14:34,600 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7078
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7079
Added:
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
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7081
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7082
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7083
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7084
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7085
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7086
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7087
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7088
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7089
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7090
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7091
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7092
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7093
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7094
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7095
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7096
Added:
2019-10-17 22:14:34,601 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7097
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7098
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7099
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7100
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7101
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7102
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7103
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7104
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7105
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7106
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7107
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7108
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7109
Added:
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
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7111
Added:
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
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7113
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7114
Added:
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
Added:
2019-10-17 22:14:34,602 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7116
Added:
2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7117
Added:
2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7118
Added:
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
Added:
2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7120
Added:
2019-10-17 22:14:34,603 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7121
Added:
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
Added:
2019-10-17 22:15:23,920 - DEBUG - $HOME=/home/blendux
7123
Added:
2019-10-17 22:15:23,920 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7124
Added:
2019-10-17 22:15:23,920 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7125
Added:
2019-10-17 22:15:23,925 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7126
Added:
2019-10-17 22:15:23,927 - DEBUG - matplotlib version 3.1.1
7127
Added:
2019-10-17 22:15:23,927 - DEBUG - interactive is False
7128
Added:
2019-10-17 22:15:23,927 - DEBUG - platform is linux
7129
Added:
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
Added:
2019-10-17 22:15:23,962 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7131
Added:
2019-10-17 22:15:23,964 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7132
Added:
2019-10-17 22:15:24,065 - DEBUG - Loaded backend qt5agg version unknown.
7133
Added:
2019-10-17 22:15:24,077 - DEBUG - Loaded backend tkagg version unknown.
7134
Added:
2019-10-17 22:15:24,077 - DEBUG - Loaded backend TkAgg version unknown.
7135
Added:
2019-10-17 22:15:24,094 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7136
Added:
2019-10-17 22:15:24,115 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7137
Added:
2019-10-17 22:15:24,116 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7138
Added:
2019-10-17 22:15:24,117 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7139
Added:
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
Added:
2019-10-17 22:15:24,206 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7141
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7142
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7143
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7144
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7145
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7146
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7147
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7148
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7149
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7150
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7151
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7152
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7153
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7154
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7155
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7156
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7157
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7158
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7159
Added:
2019-10-17 22:15:24,207 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7160
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7161
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7162
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7163
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7164
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7165
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7166
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7167
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7168
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7169
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7170
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7171
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7172
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7173
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7174
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7175
Added:
2019-10-17 22:15:24,208 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7176
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7177
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7178
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7179
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7180
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7181
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7182
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7183
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7184
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7185
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7186
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7187
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7188
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7189
Added:
2019-10-17 22:15:24,209 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7190
Added:
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
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7192
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7193
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7194
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7195
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7196
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7197
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7198
Added:
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
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7200
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7201
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7202
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7203
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7204
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7205
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7206
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7207
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7208
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7209
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7210
Added:
2019-10-17 22:15:24,210 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7211
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7212
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7213
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7214
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7215
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7216
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7217
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7218
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7219
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7220
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7221
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7222
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7223
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7224
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7225
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7226
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7227
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7228
Added:
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
Added:
2019-10-17 22:15:24,211 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7230
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7231
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7232
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7233
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7234
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7235
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7236
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7237
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7238
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7239
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7240
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7241
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7242
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7243
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7244
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7245
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7246
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7247
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7248
Added:
2019-10-17 22:15:24,212 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7249
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7250
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7251
Added:
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
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7253
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7254
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7255
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7256
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7257
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7258
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7259
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7260
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7261
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7262
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7263
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7264
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7265
Added:
2019-10-17 22:15:24,213 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7266
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7267
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7268
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7269
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7270
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7271
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7272
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7273
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7274
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7275
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7276
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7277
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7278
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7279
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7280
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7281
Added:
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
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7283
Added:
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
Added:
2019-10-17 22:15:24,214 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7285
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7286
Added:
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
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7288
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7289
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7290
Added:
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
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7292
Added:
2019-10-17 22:15:24,215 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7293
Added:
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
Added:
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
Added:
2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7296
Added:
2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7297
Added:
2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7298
Added:
2019-10-17 22:15:24,226 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7299
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7300
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7301
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7302
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7303
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7304
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7305
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7306
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7307
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7308
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7309
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7310
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7311
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7312
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7313
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7314
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7315
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7316
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7317
Added:
2019-10-17 22:15:24,227 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7318
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7319
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7320
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7321
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7322
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7323
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7324
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7325
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7326
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7327
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7328
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7329
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7330
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7331
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7332
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7333
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7334
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7335
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7336
Added:
2019-10-17 22:15:24,228 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7337
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7338
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7339
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7340
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7341
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7342
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7343
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7344
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7345
Added:
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
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7347
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7348
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7349
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7350
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7351
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7352
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7353
Added:
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
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7355
Added:
2019-10-17 22:15:24,229 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7356
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7357
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7358
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7359
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7360
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7361
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7362
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7363
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7364
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7365
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7366
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7367
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7368
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7369
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7370
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7371
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7372
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7373
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7374
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7375
Added:
2019-10-17 22:15:24,230 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7376
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7377
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7378
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7379
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7380
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7381
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7382
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7383
Added:
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
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7385
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7386
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7387
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7388
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7389
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7390
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7391
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7392
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7393
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7394
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7395
Added:
2019-10-17 22:15:24,231 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7396
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7397
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7398
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7399
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7400
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7401
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7402
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7403
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7404
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7405
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7406
Added:
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
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7408
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7409
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7410
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7411
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7412
Added:
2019-10-17 22:15:24,232 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7413
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7414
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7415
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7416
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7417
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7418
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7419
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7420
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7421
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7422
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7423
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7424
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7425
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7426
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7427
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7428
Added:
2019-10-17 22:15:24,233 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7429
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7430
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7431
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7432
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7433
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7434
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7435
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7436
Added:
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
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7438
Added:
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
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7440
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7441
Added:
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
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7443
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7444
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7445
Added:
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
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7447
Added:
2019-10-17 22:15:24,234 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7448
Added:
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
Added:
2019-10-17 22:15:51,767 - DEBUG - $HOME=/home/blendux
7450
Added:
2019-10-17 22:15:51,767 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7451
Added:
2019-10-17 22:15:51,767 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7452
Added:
2019-10-17 22:15:51,772 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7453
Added:
2019-10-17 22:15:51,774 - DEBUG - matplotlib version 3.1.1
7454
Added:
2019-10-17 22:15:51,774 - DEBUG - interactive is False
7455
Added:
2019-10-17 22:15:51,774 - DEBUG - platform is linux
7456
Added:
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
Added:
2019-10-17 22:15:51,810 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7458
Added:
2019-10-17 22:15:51,811 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7459
Added:
2019-10-17 22:15:51,913 - DEBUG - Loaded backend qt5agg version unknown.
7460
Added:
2019-10-17 22:15:51,924 - DEBUG - Loaded backend tkagg version unknown.
7461
Added:
2019-10-17 22:15:51,925 - DEBUG - Loaded backend TkAgg version unknown.
7462
Added:
2019-10-17 22:15:51,942 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7463
Added:
2019-10-17 22:15:51,964 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7464
Added:
2019-10-17 22:15:51,964 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7465
Added:
2019-10-17 22:15:51,965 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7466
Added:
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
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7468
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7469
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7470
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7471
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7472
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7473
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7474
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7475
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7476
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7477
Added:
2019-10-17 22:15:52,056 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7478
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7479
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7480
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7481
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7482
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7483
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7484
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7485
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7486
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7487
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7488
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7489
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7490
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7491
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7492
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7493
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7494
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7495
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7496
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7497
Added:
2019-10-17 22:15:52,057 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7498
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7499
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7500
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7501
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7502
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7503
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7504
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7505
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7506
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7507
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7508
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7509
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7510
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7511
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7512
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7513
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7514
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7515
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7516
Added:
2019-10-17 22:15:52,058 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7517
Added:
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
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7519
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7520
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7521
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7522
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7523
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7524
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7525
Added:
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
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7527
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7528
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7529
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7530
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7531
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7532
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7533
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7534
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7535
Added:
2019-10-17 22:15:52,059 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7536
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7537
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7538
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7539
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7540
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7541
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7542
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7543
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7544
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7545
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7546
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7547
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7548
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7549
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7550
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7551
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7552
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7553
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7554
Added:
2019-10-17 22:15:52,060 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7555
Added:
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
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7557
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7558
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7559
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7560
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7561
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7562
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7563
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7564
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7565
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7566
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7567
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7568
Added:
2019-10-17 22:15:52,061 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7569
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7570
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7571
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7572
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7573
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7574
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7575
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7576
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7577
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7578
Added:
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
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7580
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7581
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7582
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7583
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7584
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7585
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7586
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7587
Added:
2019-10-17 22:15:52,062 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7588
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7589
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7590
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7591
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7592
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7593
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7594
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7595
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7596
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7597
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7598
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7599
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7600
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7601
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7602
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7603
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7604
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7605
Added:
2019-10-17 22:15:52,063 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7606
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7607
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7608
Added:
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
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7610
Added:
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
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7612
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7613
Added:
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
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7615
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7616
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7617
Added:
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
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7619
Added:
2019-10-17 22:15:52,064 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7620
Added:
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
Added:
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
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7623
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7624
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7625
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7626
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7627
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7628
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7629
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7630
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7631
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7632
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7633
Added:
2019-10-17 22:15:52,075 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7634
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7635
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7636
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7637
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7638
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7639
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7640
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7641
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7642
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7643
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7644
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7645
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7646
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7647
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7648
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7649
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7650
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7651
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7652
Added:
2019-10-17 22:15:52,076 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7653
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7654
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7655
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7656
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7657
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7658
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7659
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7660
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7661
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7662
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7663
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7664
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7665
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7666
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7667
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7668
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7669
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7670
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7671
Added:
2019-10-17 22:15:52,077 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7672
Added:
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
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7674
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7675
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7676
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7677
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7678
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7679
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7680
Added:
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
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7682
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7683
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7684
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7685
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7686
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7687
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7688
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7689
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7690
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7691
Added:
2019-10-17 22:15:52,078 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7692
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7693
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7694
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7695
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7696
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7697
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7698
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7699
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7700
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7701
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7702
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7703
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7704
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7705
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7706
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7707
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7708
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7709
Added:
2019-10-17 22:15:52,079 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7710
Added:
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
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7712
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7713
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7714
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7715
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7716
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7717
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7718
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7719
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7720
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7721
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7722
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7723
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7724
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7725
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7726
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7727
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7728
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7729
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7730
Added:
2019-10-17 22:15:52,080 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7731
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7732
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7733
Added:
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
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7735
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7736
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7737
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7738
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7739
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7740
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7741
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7742
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7743
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7744
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7745
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7746
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7747
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7748
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7749
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7750
Added:
2019-10-17 22:15:52,081 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7751
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7752
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7753
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7754
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7755
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7756
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7757
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7758
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7759
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7760
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7761
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7762
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7763
Added:
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
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7765
Added:
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
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7767
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7768
Added:
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
Added:
2019-10-17 22:15:52,082 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7770
Added:
2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7771
Added:
2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7772
Added:
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
Added:
2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7774
Added:
2019-10-17 22:15:52,083 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7775
Added:
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
Added:
2019-10-17 22:16:09,622 - DEBUG - $HOME=/home/blendux
7777
Added:
2019-10-17 22:16:09,622 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
7778
Added:
2019-10-17 22:16:09,622 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
7779
Added:
2019-10-17 22:16:09,627 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
7780
Added:
2019-10-17 22:16:09,629 - DEBUG - matplotlib version 3.1.1
7781
Added:
2019-10-17 22:16:09,629 - DEBUG - interactive is False
7782
Added:
2019-10-17 22:16:09,629 - DEBUG - platform is linux
7783
Added:
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
Added:
2019-10-17 22:16:09,665 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
7785
Added:
2019-10-17 22:16:09,666 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
7786
Added:
2019-10-17 22:16:09,768 - DEBUG - Loaded backend qt5agg version unknown.
7787
Added:
2019-10-17 22:16:09,779 - DEBUG - Loaded backend tkagg version unknown.
7788
Added:
2019-10-17 22:16:09,780 - DEBUG - Loaded backend TkAgg version unknown.
7789
Added:
2019-10-17 22:16:09,796 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
7790
Added:
2019-10-17 22:16:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
7791
Added:
2019-10-17 22:16:09,818 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
7792
Added:
2019-10-17 22:16:09,819 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
7793
Added:
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
Added:
2019-10-17 22:16:09,909 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7795
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7796
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7797
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7798
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7799
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7800
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7801
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7802
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7803
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7804
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7805
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7806
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7807
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7808
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7809
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7810
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7811
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7812
Added:
2019-10-17 22:16:09,910 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7813
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7814
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7815
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7816
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7817
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7818
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7819
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7820
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7821
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7822
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7823
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7824
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7825
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7826
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7827
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7828
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7829
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7830
Added:
2019-10-17 22:16:09,911 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7831
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7832
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7833
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7834
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7835
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7836
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7837
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7838
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7839
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7840
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7841
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7842
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7843
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7844
Added:
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
Added:
2019-10-17 22:16:09,912 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
7846
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
7847
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
7848
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
7849
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
7850
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
7851
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
7852
Added:
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
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
7854
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
7855
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
7856
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
7857
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
7858
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
7859
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7860
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
7861
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
7862
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
7863
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
7864
Added:
2019-10-17 22:16:09,913 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
7865
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
7866
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
7867
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
7868
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
7869
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
7870
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
7871
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
7872
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
7873
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
7874
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
7875
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
7876
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
7877
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
7878
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
7879
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
7880
Added:
2019-10-17 22:16:09,914 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
7881
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
7882
Added:
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
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
7884
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
7885
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
7886
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
7887
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
7888
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
7889
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
7890
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
7891
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
7892
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
7893
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
7894
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
7895
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
7896
Added:
2019-10-17 22:16:09,915 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
7897
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
7898
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
7899
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
7900
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
7901
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7902
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
7903
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
7904
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
7905
Added:
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
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
7907
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
7908
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
7909
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
7910
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
7911
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
7912
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
7913
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
7914
Added:
2019-10-17 22:16:09,916 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
7915
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
7916
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
7917
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
7918
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
7919
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
7920
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
7921
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
7922
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
7923
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
7924
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
7925
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
7926
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
7927
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
7928
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
7929
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
7930
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
7931
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
7932
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
7933
Added:
2019-10-17 22:16:09,917 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
7934
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
7935
Added:
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
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
7937
Added:
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
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
7939
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
7940
Added:
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
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
7942
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
7943
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
7944
Added:
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
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
7946
Added:
2019-10-17 22:16:09,918 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
7947
Added:
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
Added:
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
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
7950
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
7951
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
7952
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
7953
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
7954
Added:
2019-10-17 22:16:09,929 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7955
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
7956
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
7957
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
7958
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
7959
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
7960
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
7961
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
7962
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
7963
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
7964
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
7965
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
7966
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
7967
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
7968
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
7969
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
7970
Added:
2019-10-17 22:16:09,930 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
7971
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
7972
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
7973
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
7974
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
7975
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
7976
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
7977
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
7978
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
7979
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
7980
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
7981
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
7982
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
7983
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
7984
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
7985
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
7986
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
7987
Added:
2019-10-17 22:16:09,931 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
7988
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
7989
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7990
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
7991
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
7992
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
7993
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
7994
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
7995
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
7996
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
7997
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
7998
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
7999
Added:
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
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8001
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8002
Added:
2019-10-17 22:16:09,932 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8003
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8004
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8005
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8006
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8007
Added:
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
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8009
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8010
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8011
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8012
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8013
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8014
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8015
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8016
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8017
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8018
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8019
Added:
2019-10-17 22:16:09,933 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8020
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8021
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8022
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8023
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8024
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8025
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8026
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8027
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8028
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8029
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8030
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8031
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8032
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8033
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8034
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8035
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8036
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8037
Added:
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
Added:
2019-10-17 22:16:09,934 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8039
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8040
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8041
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8042
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8043
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8044
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8045
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8046
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8047
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8048
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8049
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8050
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8051
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8052
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8053
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8054
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8055
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8056
Added:
2019-10-17 22:16:09,935 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8057
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8058
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8059
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8060
Added:
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
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8062
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8063
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8064
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8065
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8066
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8067
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8068
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8069
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8070
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8071
Added:
2019-10-17 22:16:09,936 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8072
Added:
2019-10-17 22:16:09,937 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8073
Added:
2019-10-17 22:16:09,937 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8074
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8075
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8076
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8077
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8078
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8079
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8080
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8081
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8082
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8083
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8084
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8085
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8086
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8087
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8088
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8089
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8090
Added:
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
Added:
2019-10-17 22:16:09,938 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8092
Added:
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
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8094
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8095
Added:
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
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8097
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8098
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8099
Added:
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
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8101
Added:
2019-10-17 22:16:09,939 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8102
Added:
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
Added:
2019-10-17 22:17:04,215 - DEBUG - $HOME=/home/blendux
8104
Added:
2019-10-17 22:17:04,216 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8105
Added:
2019-10-17 22:17:04,216 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8106
Added:
2019-10-17 22:17:04,221 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8107
Added:
2019-10-17 22:17:04,223 - DEBUG - matplotlib version 3.1.1
8108
Added:
2019-10-17 22:17:04,223 - DEBUG - interactive is False
8109
Added:
2019-10-17 22:17:04,223 - DEBUG - platform is linux
8110
Added:
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
Added:
2019-10-17 22:17:04,259 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8112
Added:
2019-10-17 22:17:04,260 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8113
Added:
2019-10-17 22:17:04,363 - DEBUG - Loaded backend qt5agg version unknown.
8114
Added:
2019-10-17 22:17:04,375 - DEBUG - Loaded backend tkagg version unknown.
8115
Added:
2019-10-17 22:17:04,375 - DEBUG - Loaded backend TkAgg version unknown.
8116
Added:
2019-10-17 22:17:04,391 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8117
Added:
2019-10-17 22:17:04,414 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8118
Added:
2019-10-17 22:17:04,414 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar3_info.txt
8119
Added:
2019-10-17 22:17:04,415 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/spar4_info.txt
8120
Added:
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
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8122
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8123
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8124
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8125
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8126
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8127
Added:
2019-10-17 22:17:04,506 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8128
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8129
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8130
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8131
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8132
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8133
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8134
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8135
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8136
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8137
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8138
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8139
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8140
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8141
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8142
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8143
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8144
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8145
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8146
Added:
2019-10-17 22:17:04,507 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8147
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8148
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8149
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8150
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8151
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8152
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8153
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8154
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8155
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8156
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8157
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8158
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8159
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8160
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8161
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8162
Added:
2019-10-17 22:17:04,508 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8163
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8164
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8165
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8166
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8167
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8168
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8169
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8170
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8171
Added:
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
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8173
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8174
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8175
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8176
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8177
Added:
2019-10-17 22:17:04,509 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8178
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8179
Added:
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
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8181
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8182
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8183
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8184
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8185
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8186
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8187
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8188
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8189
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8190
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8191
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8192
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8193
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8194
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8195
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8196
Added:
2019-10-17 22:17:04,510 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8197
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8198
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8199
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8200
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8201
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8202
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8203
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8204
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8205
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8206
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8207
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8208
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8209
Added:
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
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8211
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8212
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8213
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8214
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8215
Added:
2019-10-17 22:17:04,511 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8216
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8217
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8218
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8219
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8220
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8221
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8222
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8223
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8224
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8225
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8226
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8227
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8228
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8229
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8230
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8231
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8232
Added:
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
Added:
2019-10-17 22:17:04,512 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8234
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8235
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8236
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8237
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8238
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8239
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8240
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8241
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8242
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8243
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8244
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8245
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8246
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8247
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8248
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8249
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8250
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8251
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8252
Added:
2019-10-17 22:17:04,513 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8253
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8254
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8255
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8256
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8257
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8258
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8259
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8260
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8261
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8262
Added:
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
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8264
Added:
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
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8266
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8267
Added:
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
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8269
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8270
Added:
2019-10-17 22:17:04,514 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8271
Added:
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
Added:
2019-10-17 22:17:04,515 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8273
Added:
2019-10-17 22:17:04,515 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8274
Added:
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
Added:
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
Added:
2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8277
Added:
2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8278
Added:
2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8279
Added:
2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8280
Added:
2019-10-17 22:17:04,526 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8281
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8282
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8283
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8284
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8285
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8286
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8287
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8288
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8289
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8290
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8291
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8292
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8293
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8294
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8295
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8296
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8297
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8298
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8299
Added:
2019-10-17 22:17:04,527 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8300
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8301
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8302
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8303
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8304
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8305
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8306
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8307
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8308
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8309
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8310
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8311
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8312
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8313
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8314
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8315
Added:
2019-10-17 22:17:04,528 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8316
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8317
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8318
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8319
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8320
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8321
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8322
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8323
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8324
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8325
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8326
Added:
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
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8328
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8329
Added:
2019-10-17 22:17:04,529 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8330
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8331
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8332
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8333
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8334
Added:
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
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8336
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8337
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8338
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8339
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8340
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8341
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8342
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8343
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8344
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8345
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8346
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8347
Added:
2019-10-17 22:17:04,530 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8348
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8349
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8350
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8351
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8352
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8353
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8354
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8355
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8356
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8357
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8358
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8359
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8360
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8361
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8362
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8363
Added:
2019-10-17 22:17:04,531 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8364
Added:
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
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8366
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8367
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8368
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8369
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8370
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8371
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8372
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8373
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8374
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8375
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8376
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8377
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8378
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8379
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8380
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8381
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8382
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8383
Added:
2019-10-17 22:17:04,532 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8384
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8385
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8386
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8387
Added:
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
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8389
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8390
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8391
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8392
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8393
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8394
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8395
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8396
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8397
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8398
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8399
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8400
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8401
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8402
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8403
Added:
2019-10-17 22:17:04,533 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8404
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8405
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8406
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8407
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8408
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8409
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8410
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8411
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8412
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8413
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8414
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8415
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8416
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8417
Added:
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
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8419
Added:
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
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8421
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8422
Added:
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
Added:
2019-10-17 22:17:04,534 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8424
Added:
2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8425
Added:
2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8426
Added:
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
Added:
2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8428
Added:
2019-10-17 22:17:04,535 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8429
Added:
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
Added:
2019-10-17 22:18:13,019 - DEBUG - $HOME=/home/blendux
8431
Added:
2019-10-17 22:18:13,020 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8432
Added:
2019-10-17 22:18:13,020 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8433
Added:
2019-10-17 22:18:13,025 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8434
Added:
2019-10-17 22:18:13,026 - DEBUG - matplotlib version 3.1.1
8435
Added:
2019-10-17 22:18:13,026 - DEBUG - interactive is False
8436
Added:
2019-10-17 22:18:13,027 - DEBUG - platform is linux
8437
Added:
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
Added:
2019-10-17 22:18:13,061 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8439
Added:
2019-10-17 22:18:13,062 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8440
Added:
2019-10-17 22:18:13,157 - DEBUG - Loaded backend qt5agg version unknown.
8441
Added:
2019-10-17 22:18:13,167 - DEBUG - Loaded backend tkagg version unknown.
8442
Added:
2019-10-17 22:18:13,167 - DEBUG - Loaded backend TkAgg version unknown.
8443
Added:
2019-10-17 22:18:13,182 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8444
Added:
2019-10-17 22:18:13,203 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8445
Added:
2019-10-17 22:18:13,204 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
8446
Added:
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
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8448
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8449
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8450
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8451
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8452
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8453
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8454
Added:
2019-10-17 22:18:13,285 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8455
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8456
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8457
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8458
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8459
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8460
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8461
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8462
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8463
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8464
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8465
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8466
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8467
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8468
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8469
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8470
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8471
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8472
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8473
Added:
2019-10-17 22:18:13,286 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8474
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8475
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8476
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8477
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8478
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8479
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8480
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8481
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8482
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8483
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8484
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8485
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8486
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8487
Added:
2019-10-17 22:18:13,287 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8488
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8489
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8490
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8491
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8492
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8493
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8494
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8495
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8496
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8497
Added:
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
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8499
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8500
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8501
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8502
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8503
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8504
Added:
2019-10-17 22:18:13,288 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8505
Added:
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
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8507
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8508
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8509
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8510
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8511
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8512
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8513
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8514
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8515
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8516
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8517
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8518
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8519
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8520
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8521
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8522
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8523
Added:
2019-10-17 22:18:13,289 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8524
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8525
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8526
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8527
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8528
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8529
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8530
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8531
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8532
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8533
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8534
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8535
Added:
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
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8537
Added:
2019-10-17 22:18:13,290 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8538
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8539
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8540
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8541
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8542
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8543
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8544
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8545
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8546
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8547
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8548
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8549
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8550
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8551
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8552
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8553
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8554
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8555
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8556
Added:
2019-10-17 22:18:13,291 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8557
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8558
Added:
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
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8560
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8561
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8562
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8563
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8564
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8565
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8566
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8567
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8568
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8569
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8570
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8571
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8572
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8573
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8574
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8575
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8576
Added:
2019-10-17 22:18:13,292 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8577
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8578
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8579
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8580
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8581
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8582
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8583
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8584
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8585
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8586
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8587
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8588
Added:
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
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8590
Added:
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
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8592
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8593
Added:
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
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8595
Added:
2019-10-17 22:18:13,293 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8596
Added:
2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8597
Added:
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
Added:
2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8599
Added:
2019-10-17 22:18:13,294 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8600
Added:
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
Added:
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
Added:
2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8603
Added:
2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8604
Added:
2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8605
Added:
2019-10-17 22:18:13,304 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8606
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8607
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8608
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8609
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8610
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8611
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8612
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8613
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8614
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8615
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8616
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8617
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8618
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8619
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8620
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8621
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8622
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8623
Added:
2019-10-17 22:18:13,305 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8624
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8625
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8626
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8627
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8628
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8629
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8630
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8631
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8632
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8633
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8634
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8635
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8636
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8637
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8638
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8639
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8640
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8641
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8642
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8643
Added:
2019-10-17 22:18:13,306 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8644
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8645
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8646
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8647
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8648
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8649
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8650
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8651
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8652
Added:
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
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8654
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8655
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8656
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8657
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8658
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8659
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8660
Added:
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
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8662
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8663
Added:
2019-10-17 22:18:13,307 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8664
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8665
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8666
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8667
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8668
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8669
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8670
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8671
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8672
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8673
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8674
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8675
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8676
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8677
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8678
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8679
Added:
2019-10-17 22:18:13,308 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8680
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8681
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8682
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8683
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8684
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8685
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8686
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8687
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8688
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8689
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8690
Added:
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
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8692
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8693
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8694
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8695
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8696
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8697
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8698
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8699
Added:
2019-10-17 22:18:13,309 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8700
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8701
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8702
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8703
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8704
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8705
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8706
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8707
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8708
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8709
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8710
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8711
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8712
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8713
Added:
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
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8715
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8716
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8717
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8718
Added:
2019-10-17 22:18:13,310 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8719
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8720
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8721
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8722
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8723
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8724
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8725
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8726
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8727
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8728
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8729
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8730
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8731
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8732
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8733
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8734
Added:
2019-10-17 22:18:13,311 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8735
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8736
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8737
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8738
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8739
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8740
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8741
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8742
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8743
Added:
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
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8745
Added:
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
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8747
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8748
Added:
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
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8750
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8751
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8752
Added:
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
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8754
Added:
2019-10-17 22:18:13,312 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8755
Added:
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
Added:
2019-10-17 22:19:04,391 - DEBUG - $HOME=/home/blendux
8757
Added:
2019-10-17 22:19:04,391 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
8758
Added:
2019-10-17 22:19:04,391 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
8759
Added:
2019-10-17 22:19:04,396 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
8760
Added:
2019-10-17 22:19:04,398 - DEBUG - matplotlib version 3.1.1
8761
Added:
2019-10-17 22:19:04,398 - DEBUG - interactive is False
8762
Added:
2019-10-17 22:19:04,398 - DEBUG - platform is linux
8763
Added:
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
Added:
2019-10-17 22:19:04,432 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
8765
Added:
2019-10-17 22:19:04,433 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
8766
Added:
2019-10-17 22:19:04,529 - DEBUG - Loaded backend qt5agg version unknown.
8767
Added:
2019-10-17 22:19:04,539 - DEBUG - Loaded backend tkagg version unknown.
8768
Added:
2019-10-17 22:19:04,539 - DEBUG - Loaded backend TkAgg version unknown.
8769
Added:
2019-10-17 22:19:04,554 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
8770
Added:
2019-10-17 22:19:04,575 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
8771
Added:
2019-10-17 22:19:04,576 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
8772
Added:
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
Added:
2019-10-17 22:19:04,655 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8774
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8775
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8776
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8777
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8778
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8779
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8780
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8781
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8782
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8783
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8784
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8785
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8786
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8787
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8788
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8789
Added:
2019-10-17 22:19:04,656 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8790
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8791
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8792
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8793
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8794
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8795
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8796
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8797
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8798
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8799
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8800
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8801
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8802
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8803
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8804
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8805
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8806
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8807
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8808
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8809
Added:
2019-10-17 22:19:04,657 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8810
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8811
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8812
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8813
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8814
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8815
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8816
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8817
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8818
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8819
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8820
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8821
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8822
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8823
Added:
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
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8825
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8826
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8827
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8828
Added:
2019-10-17 22:19:04,658 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8829
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8830
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8831
Added:
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
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8833
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8834
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8835
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8836
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8837
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8838
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8839
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8840
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8841
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8842
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8843
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8844
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
8845
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
8846
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
8847
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
8848
Added:
2019-10-17 22:19:04,659 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
8849
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
8850
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
8851
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
8852
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
8853
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
8854
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
8855
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
8856
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
8857
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
8858
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
8859
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
8860
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
8861
Added:
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
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
8863
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
8864
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
8865
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
8866
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
8867
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
8868
Added:
2019-10-17 22:19:04,660 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
8869
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
8870
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
8871
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
8872
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
8873
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
8874
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
8875
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
8876
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
8877
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
8878
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
8879
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
8880
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8881
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
8882
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
8883
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
8884
Added:
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
Added:
2019-10-17 22:19:04,661 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
8886
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
8887
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
8888
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
8889
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
8890
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
8891
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
8892
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
8893
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
8894
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
8895
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
8896
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
8897
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
8898
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
8899
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
8900
Added:
2019-10-17 22:19:04,662 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
8901
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
8902
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
8903
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
8904
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
8905
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
8906
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
8907
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
8908
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
8909
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
8910
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
8911
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
8912
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
8913
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
8914
Added:
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
Added:
2019-10-17 22:19:04,663 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
8916
Added:
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
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
8918
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
8919
Added:
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
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
8921
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
8922
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
8923
Added:
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
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
8925
Added:
2019-10-17 22:19:04,664 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
8926
Added:
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
Added:
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
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
8929
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
8930
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
8931
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
8932
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
8933
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8934
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
8935
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
8936
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
8937
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
8938
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
8939
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
8940
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
8941
Added:
2019-10-17 22:19:04,675 - DEBUG - findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
8942
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
8943
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
8944
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
8945
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
8946
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
8947
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
8948
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
8949
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
8950
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
8951
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
8952
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
8953
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8954
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
8955
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
8956
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
8957
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
8958
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
8959
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
8960
Added:
2019-10-17 22:19:04,676 - DEBUG - findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
8961
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
8962
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
8963
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
8964
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
8965
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
8966
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBoldOblique.otf) oblique normal bold normal>) = 11.335
8967
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Light.otf) normal normal light normal>) = 10.24
8968
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8969
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Italic.ttf) italic normal 400 normal>) = 11.05
8970
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Arial Black' (ariblk.ttf) normal normal black normal>) = 10.525
8971
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Impact' (impact.ttf) normal normal 400 normal>) = 10.05
8972
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Bold.ttf) normal normal bold normal>) = 10.335
8973
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucit.ttf) italic normal 400 normal>) = 11.05
8974
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'MOESongUN' (eduSong_Unicode.ttf) normal normal 400 normal>) = 10.05
8975
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-LightIt.otf) italic normal light normal>) = 11.24
8976
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BlackIt.otf) italic normal black normal>) = 11.525
8977
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-BoldItalic.ttf) italic normal bold normal>) = 11.335
8978
Added:
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
Added:
2019-10-17 22:19:04,677 - DEBUG - findfont: score(<Font 'Times New Roman' (times.ttf) normal normal roman normal>) = 10.145
8980
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro B.ttf) normal normal bold normal>) = 10.335
8981
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif.ttf) normal normal 400 normal>) = 10.05
8982
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Arial' (arialbi.ttf) italic normal bold normal>) = 7.698636363636363
8983
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Italic.ttf) italic normal 400 normal>) = 11.05
8984
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Regular.otf) normal normal regular normal>) = 10.05
8985
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-BoldIt.otf) italic normal bold normal>) = 11.335
8986
Added:
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
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Verdana' (verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
8988
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-It.otf) italic normal 400 normal>) = 11.05
8989
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro.ttf) normal normal 400 normal>) = 10.05
8990
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansOblique.otf) oblique normal 400 normal>) = 11.05
8991
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-Bold.otf) normal normal bold normal>) = 10.335
8992
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSans.otf) normal normal 400 normal>) = 10.05
8993
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
8994
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-BoldItalic.otf) italic normal bold normal>) = 11.335
8995
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hack' (Hack-Bold.ttf) normal normal bold normal>) = 10.335
8996
Added:
2019-10-17 22:19:04,678 - DEBUG - findfont: score(<Font 'Hack' (Hack-Italic.ttf) italic normal 400 normal>) = 11.05
8997
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Regular.ttf) normal normal regular normal>) = 10.05
8998
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Verdana' (verdanab.ttf) normal normal bold normal>) = 3.9713636363636367
8999
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Georgia' (georgiai.ttf) italic normal 400 normal>) = 11.05
9000
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Courier New' (cour.ttf) normal normal 400 normal>) = 10.05
9001
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans.ttf) normal normal 400 normal>) = 10.05
9002
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Arial' (arialbd.ttf) normal normal bold normal>) = 6.698636363636363
9003
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro I.ttf) italic normal 400 normal>) = 11.05
9004
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Courier New' (courbi.ttf) italic normal bold normal>) = 11.335
9005
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Regular.ttf) normal normal 400 normal>) = 10.05
9006
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Verdana' (verdanaz.ttf) italic normal bold normal>) = 4.971363636363637
9007
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Anonymous Pro' (Anonymous Pro BI.ttf) italic normal bold normal>) = 11.335
9008
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Bold.ttf) normal normal bold normal>) = 10.335
9009
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Medium.otf) normal normal medium normal>) = 10.145
9010
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBold.otf) normal normal bold normal>) = 10.335
9011
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifItalic.otf) italic normal 400 normal>) = 11.05
9012
Added:
2019-10-17 22:19:04,679 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Regular.ttf) normal normal 400 normal>) = 10.05
9013
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Regular.otf) normal normal 400 normal>) = 10.05
9014
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comicbd.ttf) normal normal bold normal>) = 10.335
9015
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Hack' (Hack-Regular.ttf) normal normal regular normal>) = 10.05
9016
Added:
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
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Italic.ttf) italic normal 400 normal>) = 11.05
9018
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Serif' (LiberationSerif-Bold.ttf) normal normal bold normal>) = 10.335
9019
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-BoldItalic.ttf) italic normal bold normal>) = 11.335
9020
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbd.ttf) normal normal bold normal>) = 10.335
9021
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Comic Sans MS' (comic.ttf) normal normal 400 normal>) = 10.05
9022
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-BoldItalic.ttf) italic normal bold normal>) = 11.335
9023
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Bold.otf) normal normal bold normal>) = 10.335
9024
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLight.otf) normal normal light normal>) = 10.24
9025
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Semibold.otf) normal normal semibold normal>) = 10.24
9026
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-ExtraLightIt.otf) italic normal light normal>) = 11.24
9027
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Black.otf) normal normal black normal>) = 10.525
9028
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBold.otf) normal normal bold normal>) = 10.335
9029
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Arial' (ariali.ttf) italic normal 400 normal>) = 7.413636363636363
9030
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Courier New' (couri.ttf) italic normal 400 normal>) = 11.05
9031
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Georgia' (georgia.ttf) normal normal 400 normal>) = 10.05
9032
Added:
2019-10-17 22:19:04,680 - DEBUG - findfont: score(<Font 'Symbola' (Symbola.ttf) normal normal 400 normal>) = 10.05
9033
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Regular.ttf) normal normal 400 normal>) = 10.05
9034
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicMono' (OpenDyslexicMono-Regular.ttf) normal normal 400 normal>) = 10.05
9035
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
9036
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMono.otf) normal normal 400 normal>) = 10.05
9037
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebucbi.ttf) italic normal bold normal>) = 11.335
9038
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-SemiboldIt.otf) italic normal semibold normal>) = 11.24
9039
Added:
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
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Liberation Mono' (LiberationMono-Regular.ttf) normal normal 400 normal>) = 10.05
9041
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Regular.otf) normal normal regular normal>) = 10.05
9042
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Bold.ttf) normal normal bold normal>) = 10.335
9043
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-MediumIt.otf) italic normal medium normal>) = 11.145
9044
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoOblique.otf) oblique normal 400 normal>) = 11.05
9045
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Light.otf) normal normal light normal>) = 10.24
9046
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerifBoldItalic.otf) italic normal bold normal>) = 11.335
9047
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Georgia' (georgiaz.ttf) italic normal bold normal>) = 11.335
9048
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Hack' (Hack-BoldItalic.ttf) italic normal bold normal>) = 11.335
9049
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Droid Sans Mono' (DroidSansMono.ttf) normal normal 400 normal>) = 10.05
9050
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'OpenDyslexic3' (OpenDyslexic3-Bold.ttf) normal normal bold normal>) = 10.335
9051
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbi.ttf) italic normal roman normal>) = 11.145
9052
Added:
2019-10-17 22:19:04,681 - DEBUG - findfont: score(<Font 'FreeSans' (FreeSansBoldOblique.otf) oblique normal bold normal>) = 11.335
9053
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-Thin.otf) normal normal 400 normal>) = 10.05
9054
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Arial' (arial.ttf) normal normal 400 normal>) = 6.413636363636363
9055
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Droid Sans' (DroidSans-Bold.ttf) normal normal bold normal>) = 10.335
9056
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'FreeSerif' (FreeSerif.otf) normal normal 400 normal>) = 10.05
9057
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-BoldItalic.ttf) italic normal bold normal>) = 11.335
9058
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-LightItalic.otf) italic normal light normal>) = 11.24
9059
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Times New Roman' (timesbd.ttf) normal normal roman normal>) = 10.145
9060
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Cantarell' (Cantarell-ExtraBold.otf) normal normal bold normal>) = 10.335
9061
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Trebuchet MS' (trebuc.ttf) normal normal 400 normal>) = 10.05
9062
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Bold.ttf) normal normal bold normal>) = 10.335
9063
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'OpenDyslexicAlta' (OpenDyslexicAlta-Italic.ttf) italic normal 400 normal>) = 11.05
9064
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Bold.otf) normal normal bold normal>) = 10.335
9065
Added:
2019-10-17 22:19:04,682 - DEBUG - findfont: score(<Font 'Source Code Pro' (SourceCodePro-Light.otf) normal normal light normal>) = 10.24
9066
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Courier New' (courbd.ttf) normal normal bold normal>) = 10.335
9067
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Webdings' (webdings.ttf) normal normal 400 normal>) = 10.05
9068
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Verdana' (verdanai.ttf) italic normal 400 normal>) = 4.6863636363636365
9069
Added:
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
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Liberation Sans' (LiberationSans-Italic.ttf) italic normal 400 normal>) = 11.05
9071
Added:
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
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Times New Roman' (timesi.ttf) italic normal roman normal>) = 11.145
9073
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Droid Serif' (DroidSerif-Bold.ttf) normal normal bold normal>) = 10.335
9074
Added:
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
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'OpenDyslexic' (OpenDyslexic-Regular.ttf) normal normal 400 normal>) = 10.05
9076
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'FreeMono' (FreeMonoBold.otf) normal normal bold normal>) = 10.335
9077
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Georgia' (georgiab.ttf) normal normal bold normal>) = 10.335
9078
Added:
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
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Andale Mono' (andalemo.ttf) normal normal 400 normal>) = 10.05
9080
Added:
2019-10-17 22:19:04,683 - DEBUG - findfont: score(<Font 'Hermit' (Hermit-RegularItalic.otf) italic normal regular normal>) = 11.05
9081
Added:
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
Added:
2019-10-17 22:19:11,874 - DEBUG - $HOME=/home/blendux
9083
Added:
2019-10-17 22:19:11,875 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9084
Added:
2019-10-17 22:19:11,875 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9085
Added:
2019-10-17 22:19:11,880 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9086
Added:
2019-10-17 22:19:11,882 - DEBUG - matplotlib version 3.1.1
9087
Added:
2019-10-17 22:19:11,882 - DEBUG - interactive is False
9088
Added:
2019-10-17 22:19:11,882 - DEBUG - platform is linux
9089
Added:
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
Added:
2019-10-17 22:19:11,915 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9091
Added:
2019-10-17 22:19:11,916 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9092
Added:
2019-10-17 22:19:12,008 - DEBUG - Loaded backend qt5agg version unknown.
9093
Added:
2019-10-17 22:19:12,019 - DEBUG - Loaded backend tkagg version unknown.
9094
Added:
2019-10-17 22:19:12,019 - DEBUG - Loaded backend TkAgg version unknown.
9095
Added:
2019-10-17 22:19:12,034 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9096
Added:
2019-10-17 22:19:12,055 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9097
Added:
2019-10-17 22:19:12,056 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9098
Added:
2019-10-17 22:19:15,706 - DEBUG - $HOME=/home/blendux
9099
Added:
2019-10-17 22:19:15,706 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9100
Added:
2019-10-17 22:19:15,706 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9101
Added:
2019-10-17 22:19:15,711 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9102
Added:
2019-10-17 22:19:15,713 - DEBUG - matplotlib version 3.1.1
9103
Added:
2019-10-17 22:19:15,713 - DEBUG - interactive is False
9104
Added:
2019-10-17 22:19:15,713 - DEBUG - platform is linux
9105
Added:
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
Added:
2019-10-17 22:19:15,746 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9107
Added:
2019-10-17 22:19:15,747 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9108
Added:
2019-10-17 22:19:15,841 - DEBUG - Loaded backend qt5agg version unknown.
9109
Added:
2019-10-17 22:19:15,851 - DEBUG - Loaded backend tkagg version unknown.
9110
Added:
2019-10-17 22:19:15,851 - DEBUG - Loaded backend TkAgg version unknown.
9111
Added:
2019-10-17 22:19:15,867 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9112
Added:
2019-10-17 22:19:15,886 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9113
Added:
2019-10-17 22:19:15,887 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9114
Added:
2019-10-17 22:20:54,646 - DEBUG - $HOME=/home/blendux
9115
Added:
2019-10-17 22:20:54,646 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9116
Added:
2019-10-17 22:20:54,646 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9117
Added:
2019-10-17 22:20:54,651 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9118
Added:
2019-10-17 22:20:54,653 - DEBUG - matplotlib version 3.1.1
9119
Added:
2019-10-17 22:20:54,653 - DEBUG - interactive is False
9120
Added:
2019-10-17 22:20:54,653 - DEBUG - platform is linux
9121
Added:
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
Added:
2019-10-17 22:20:54,687 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9123
Added:
2019-10-17 22:20:54,688 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9124
Added:
2019-10-17 22:20:54,783 - DEBUG - Loaded backend qt5agg version unknown.
9125
Added:
2019-10-17 22:20:54,793 - DEBUG - Loaded backend tkagg version unknown.
9126
Added:
2019-10-17 22:20:54,794 - DEBUG - Loaded backend TkAgg version unknown.
9127
Added:
2019-10-17 22:20:54,811 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9128
Added:
2019-10-17 22:20:54,832 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9129
Added:
2019-10-17 22:20:54,833 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9130
Added:
2019-10-17 22:21:38,763 - DEBUG - $HOME=/home/blendux
9131
Added:
2019-10-17 22:21:38,763 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9132
Added:
2019-10-17 22:21:38,763 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9133
Added:
2019-10-17 22:21:38,768 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9134
Added:
2019-10-17 22:21:38,770 - DEBUG - matplotlib version 3.1.1
9135
Added:
2019-10-17 22:21:38,770 - DEBUG - interactive is False
9136
Added:
2019-10-17 22:21:38,770 - DEBUG - platform is linux
9137
Added:
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
Added:
2019-10-17 22:21:38,803 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9139
Added:
2019-10-17 22:21:38,804 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9140
Added:
2019-10-17 22:21:38,898 - DEBUG - Loaded backend qt5agg version unknown.
9141
Added:
2019-10-17 22:21:38,908 - DEBUG - Loaded backend tkagg version unknown.
9142
Added:
2019-10-17 22:21:38,908 - DEBUG - Loaded backend TkAgg version unknown.
9143
Added:
2019-10-17 22:21:38,927 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9144
Added:
2019-10-17 22:21:38,947 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9145
Added:
2019-10-17 22:21:38,948 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9146
Added:
2019-10-17 22:22:10,978 - DEBUG - $HOME=/home/blendux
9147
Added:
2019-10-17 22:22:10,978 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9148
Added:
2019-10-17 22:22:10,979 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9149
Added:
2019-10-17 22:22:10,984 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9150
Added:
2019-10-17 22:22:10,985 - DEBUG - matplotlib version 3.1.1
9151
Added:
2019-10-17 22:22:10,986 - DEBUG - interactive is False
9152
Added:
2019-10-17 22:22:10,986 - DEBUG - platform is linux
9153
Added:
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
Added:
2019-10-17 22:22:11,020 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9155
Added:
2019-10-17 22:22:11,021 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9156
Added:
2019-10-17 22:22:11,115 - DEBUG - Loaded backend qt5agg version unknown.
9157
Added:
2019-10-17 22:22:11,124 - DEBUG - Loaded backend tkagg version unknown.
9158
Added:
2019-10-17 22:22:11,125 - DEBUG - Loaded backend TkAgg version unknown.
9159
Added:
2019-10-17 22:22:11,141 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9160
Added:
2019-10-17 22:22:11,161 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9161
Added:
2019-10-17 22:22:11,162 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9162
Added:
2019-10-17 22:22:30,265 - DEBUG - $HOME=/home/blendux
9163
Added:
2019-10-17 22:22:30,265 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9164
Added:
2019-10-17 22:22:30,265 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9165
Added:
2019-10-17 22:22:30,270 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9166
Added:
2019-10-17 22:22:30,272 - DEBUG - matplotlib version 3.1.1
9167
Added:
2019-10-17 22:22:30,272 - DEBUG - interactive is False
9168
Added:
2019-10-17 22:22:30,272 - DEBUG - platform is linux
9169
Added:
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
Added:
2019-10-17 22:22:30,305 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9171
Added:
2019-10-17 22:22:30,307 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9172
Added:
2019-10-17 22:22:30,399 - DEBUG - Loaded backend qt5agg version unknown.
9173
Added:
2019-10-17 22:22:30,409 - DEBUG - Loaded backend tkagg version unknown.
9174
Added:
2019-10-17 22:22:30,410 - DEBUG - Loaded backend TkAgg version unknown.
9175
Added:
2019-10-17 22:22:30,424 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9176
Added:
2019-10-17 22:22:30,444 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9177
Added:
2019-10-17 22:22:30,445 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt
9178
Added:
2019-10-17 22:24:00,604 - DEBUG - $HOME=/home/blendux
9179
Added:
2019-10-17 22:24:00,604 - DEBUG - CONFIGDIR=/home/blendux/.config/matplotlib
9180
Added:
2019-10-17 22:24:00,605 - DEBUG - matplotlib data path: /usr/lib/python3.7/site-packages/matplotlib/mpl-data
9181
Added:
2019-10-17 22:24:00,610 - DEBUG - loaded rc file /usr/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
9182
Added:
2019-10-17 22:24:00,611 - DEBUG - matplotlib version 3.1.1
9183
Added:
2019-10-17 22:24:00,611 - DEBUG - interactive is False
9184
Added:
2019-10-17 22:24:00,611 - DEBUG - platform is linux
9185
Added:
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
Added:
2019-10-17 22:24:00,644 - DEBUG - CACHEDIR=/home/blendux/.cache/matplotlib
9187
Added:
2019-10-17 22:24:00,646 - DEBUG - Using fontManager instance from /home/blendux/.cache/matplotlib/fontlist-v310.json
9188
Added:
2019-10-17 22:24:00,742 - DEBUG - Loaded backend qt5agg version unknown.
9189
Added:
2019-10-17 22:24:00,752 - DEBUG - Loaded backend tkagg version unknown.
9190
Added:
2019-10-17 22:24:00,752 - DEBUG - Loaded backend TkAgg version unknown.
9191
Added:
2019-10-17 22:24:00,767 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer_info.txt
9192
Added:
2019-10-17 22:24:00,788 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/af2_info.txt
9193
Added:
2019-10-17 22:24:00,789 - DEBUG - Successfully wrote to file /home/blendux/Projects/Aircraft_Studio/save/stringer2_info.txt