MouseLand / Kilosort

Fast spike sorting with drift correction for up to a thousand channels
https://kilosort.readthedocs.io/en/latest/
GNU General Public License v3.0
431 stars 228 forks source link

Suggestion to avoid oom GPU error #704

Open Kayv-cmb opened 1 month ago

Kayv-cmb commented 1 month ago

Describe the issue:

Hi Kilosort people,

torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate 7.94 GiB (GPU 0; 31.74 GiB total capacity; 20.90 GiB already allocated; 4.59 GiB free; 26.57 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF

Do you have any suggestion to avoid coming into this issue? I am running on a slurm job and I can ask for more GPU but that doesn't solve the problem. Any recommendation as to what to do?(change parameters...).

kilosort version = 4.0.6

jacobpennington commented 1 month ago

The first thing you should try is updating to the most recent version of Kilosort. Aside from that, I would need to see your probe file and the settings you're using (either a screenshot of the GUI or copy-pasting them from code) to see if there's something causing more memory to be used than expected.

Also, just a side note: Kilosort4 is not set up to use multiple GPUs, so requesting additional GPUs on a cluster job will not do anything.

Kayv-cmb commented 1 month ago

probe.prb.zip This is my probe file, I am using standard setting, my recording is 30kHz and is 4hours long. It fail towards the end of the final Clustering

Kayv-cmb commented 1 month ago

that is the parameters {'batch_size': 60000, 'nblocks': 1, 'Th_universal': 9, 'Th_learned': 8, 'do_CAR': True, 'invert_sign': False, 'nt': 61, 'artifact_threshold': None, 'nskip': 25, 'whitening_range': 32, 'binning_depth': 5, 'sig_interp': 20, 'nt0min': None, 'dmin': None, 'dminx': 32, 'min_template_size': 10, 'template_sizes': 5, 'nearest_chans': 10, 'nearest_templates': 100, 'max_channel_distance': None, 'templates_from_data': True, 'n_templates': 6, 'n_pcs': 6, 'Th_single_ch': 6, 'acg_threshold': 0.2, 'ccg_threshold': 0.25, 'cluster_downsampling': 20, 'cluster_pcs': 64, 'x_centers': None, 'duplicate_spike_bins': 7, 'do_correction': True, 'keep_good_only': False, 'save_extra_kwargs': False, 'skip_kilosort_preprocessing': False, 'scaleproc': None, 'torch_device': 'auto'}

jacobpennington commented 1 month ago

Okay. It's unlikely it's related to the probe or settings then, since many other users have been sorting similar data without any problems. So, there are two possibilities I can think of:

1) There's something about your data in particular that makes the clustering fail. I can't really tell without seeing more output from the sorting. If you tried again after updating to the most recent version, there should be a kilosort4.log file in the results directory that you can upload here to help me check this.

2) Depending on how your compute cluster is set up, it's possible for multiple jobs to share the same GPU. For example, your job might have only been allocated 6GB of video memory which would result in that error. So it could be something as simple as needing to request additional GPU memory (not additional GPUs, just more memory on the same one). That is what I would check first before going down a debugging rabbit hole.

Kayv-cmb commented 1 month ago

It is also always happening during the 21 iterations of the final clustering, I have 3 different recordings with the same error out of 13 recordings. I will try to find this log file

Kayv-cmb commented 1 month ago

I did some investigation, I noticed that the GPU is always at 7.2 GiB of usage each iterations is approximately 30 min during the clustering , however on the problematic recording after the 21th iteration it get stuck, the usage keep stacking up it reach a point where it cannot assign more memory. Also the GPU-util showed by nvidia-smi is at 0% while stuck in the clustering before oom issue and between 60 to 100% while running correctly

I also request a GPU where I am alone on it.

If you have any idea on why this happening and where in the code I can have look to debug. Also there is no log file in my folder

Kayv-cmb commented 1 month ago

this is my output file from the job if its useful output.out.zip

jacobpennington commented 1 month ago

Thanks. I notice you're running KS4 through SpikeInterface, which is why you're not seeing a log file. I don't see anything in the output that would indicate why you're using so much video memory, similar length recordings with the same number of channels have not used anywhere near that much.

One possibility is that you're using SpikeInterface's preprocessing steps in addition to KS4's preprocessing, some other users have reported problems with that. We do not provide support for SpikeInterface, and recommend you run KS4 directly instead.

Kayv-cmb commented 1 month ago

My recording is preprocess through spikeinterface, but it then written to disk and I am reading the binary afterward. I also tried to use only kilosort but I have the same issue, I tried running through GUI and use only the openephys file. My CUDA version 12.1.1 do you think it could be a CUDA version problem?

jacobpennington commented 1 month ago

I suppose it's possible, but I don't think that's likely since PyTorch supports 12.1. Are you able to share the data so that I can try running it myself?

Kayv-cmb commented 1 month ago

It would be very difficult for me to share the data. I also tried with CUDA 12.2.0 same issue

Kayv-cmb commented 1 month ago

I am still trying to fix the error. I am looking into cleaning some variable that are not usefull that may leak into memory. I noticed that my GPU start to become huge during the first clustering, would you know which variable I can del from the memory to make some space on the GPU during clustering iteration?

jacobpennington commented 1 month ago

There is no single variable that would be responsible for that, the only reason you would see that much memory usage is if something is set up incorrectly. I've never exceeded ~10gb of video memory for a recording of similar size.

One other possibility, since you mentioned you're writing the spikeinterface preprocessing to disk: are you sure the data is still int16 at that point? Some other users that used that order of operations reported that it's saved as float32 data. Loading that as int16 effectively looks like random noise, which will allow the sorting to run but can cause all sorts of unexpected side-effects.

Kayv-cmb commented 4 weeks ago

I managed to sort one of the recording by going back to the raw data (OpenEphys recording). The GPU stay at 7gb for the full duration of the sorting. I checked my recording written by spike interface they are int16 data. I have 1 other recording with the same issue and even by going back to raw (OpenEphys) the issue is still present. I am still lost to what is causing the issue.

jacobpennington commented 4 weeks ago

Can you please share a screenshot of what the full KS4 gui looks like when you load that data?

nadirbt commented 3 weeks ago

I have a similar issue. In the final clustering step, it runs for a while and suddenly allocates too much VRAM and crashes. Do you have any idea why that would happen? This is the error log:

File "D:\CNEA.venv\src\kilosort\kilosort\run_kilosort.py", line 523, in cluster_spikes clu, Wall = clustering_qr.run(ops, st, tF, mode = 'template', device=device, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\CNEA.venv\src\kilosort\kilosort\clustering_qr.py", line 354, in run iclust, iclust0, M, iclust_init = cluster(Xd, nskip=nskip, lam=1, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\CNEA.venv\src\kilosort\kilosort\clustering_qr.py", line 120, in cluster kn = torch.from_numpy(kn).to(device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate 396.00 MiB. GPU

I have a 4070 Nvidia GPU with 12 GB of Dedicated GPU RAM

jacobpennington commented 3 weeks ago

Hello @nadirbt. I would have all the same questions for you that I asked above.

nadirbt commented 3 weeks ago

I am not using the kilosort gui. I am using my own data wrapper to enable data access through RecordingExtractorAsArray. I then run the run_kilosort functions without drift correction.

jacobpennington commented 3 weeks ago

@nadirbt By above I meant the full thread, not just the previous comment. What version of Kilosort4 are you using? Can you attach Kilosort4.log from the results directory? What type of probe are you using?

Kayv-cmb commented 3 weeks ago

Hello @jacobpennington, this is my full log and my screenshot from the gui : Screenshot 2024-06-17 at 10 00 31

kilosort4.log

jacobpennington commented 3 weeks ago

@Kayv-cmb Yeah, that is strange, especially if a similar recording is running fine... Everything does seem to be loading as expected. Unfortunately it's going to be really hard for me to debug without some data to reproduce it with, but I understand that's not always feasible. I have a couple more things you can try, though, to at least narrow it down:

1) Can you please update your probe file to specify a different value for kcoords for contacts on each shank? Previously this had no effect for KS4, but as of version 4.0.11 it will restrict the placement of templates to be within the bounds of each shank. That will remove some extraneous template positions (which will reduce the amount of memory and processing time needed) and align the templates to the contacts for the middle two shanks (which may help with template matching).

2) If the error persists after trying 1), can you try sorting a subset of the recording? For example, setting tmax = 3600 to only sort the first hour of data. That should tell us whether it's an issue of scaling due to recording duration.

Kayv-cmb commented 3 weeks ago

I set up the kcoords for contacts on each shank, and now the sorting is slower than before and cause oom issue during the search for spike. I will try sorting a subset by subset

nadirbt commented 2 weeks ago

@nadirbt By above I meant the full thread, not just the previous comment. What version of Kilosort4 are you using? Can you attach Kilosort4.log from the results directory? What type of probe are you using?

Here is the log: 06-13 15:42 main INFO Sorting D:\CNEA\src\2022_12_13_SHR3_1_10_08_09_Array_Recording_Intra1_40min.h5 06-13 15:42 main INFO ---------------------------------------- 06-13 15:42 main INFO Using GPU for PyTorch computations. Specify device to change this. 06-13 15:42 main DEBUG Initial ops: { 'n_chan_bin': 100, 'fs': 9415.0, 'batch_size': 9415, 'nblocks': 1, 'Th_universal': 9, 'Th_learned': 8, 'tmin': 140.50799920339884, 'tmax': inf, 'nt': 21, 'shift': None, 'scale': None, 'artifact_threshold': inf, 'nskip': 25, 'whitening_range': 32, 'binning_depth': 5, 'sig_interp': 20, 'drift_smoothing': [0.5, 0.5, 0.5], 'nt0min': 6, 'dmin': None, 'dminx': 20, 'min_template_size': 10, 'template_sizes': 10, 'nearest_chans': 10, 'nearest_templates': 100, 'max_channel_distance': None, 'templates_from_data': True, 'n_templates': 6, 'n_pcs': 6, 'Th_single_ch': 6, 'acg_threshold': 0.2, 'ccg_threshold': 0.25, 'cluster_downsampling': 20, 'x_centers': None, 'duplicate_spike_bins': 7, 'ntmin0': 8, 'filename': WindowsPath('D:/CNEA/src/2022_12_13_SHR3_1_10_08_09_Array_Recording_Intra1_40min.h5'), 'data_dir': WindowsPath('D:/CNEA/src'), 'data_dtype': 'float32', 'do_CAR': True, 'invert_sign': False, 'NTbuff': 9457, 'Nchan': 100, 'torch_device': 'cuda', 'save_preprocessed_copy': False, 'chanMap': array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]), 'xc': array([520., 520., 520., 520., 520., 520., 520., 520., 520., 520., 540., 540., 540., 540., 540., 540., 540., 540., 540., 540., 560., 560., 560., 560., 560., 560., 560., 560., 560., 560., 580., 580., 580., 580., 580., 580., 580., 580., 580., 580., 600., 600., 600., 600., 600., 600., 600., 600., 600., 600., 620., 620., 620., 620., 620., 620., 620., 620., 620., 620., 640., 640., 640., 640., 640., 640., 640., 640., 640., 640., 660., 660., 660., 660., 660., 660., 660., 660., 660., 660., 680., 680., 680., 680., 680., 680., 680., 680., 680., 680., 700., 700., 700., 700., 700., 700., 700., 700., 700., 700.], dtype=float32), 'yc': array([520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700., 520., 540., 560., 580., 600., 620., 640., 660., 680., 700.], dtype=float32), 'kcoords': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], dtype=float32), 'n_chan': 100}

06-13 15:42 kilosort.run_kilosort INFO
06-13 15:42 kilosort.run_kilosort INFO Computing preprocessing variables. 06-13 15:42 kilosort.run_kilosort INFO ---------------------------------------- 06-13 15:42 kilosort.run_kilosort INFO Preprocessing filters computed in 42.53s; total 42.54s 06-13 15:42 kilosort.run_kilosort DEBUG hp_filter shape: torch.Size([30122]) 06-13 15:42 kilosort.run_kilosort DEBUG whiten_mat shape: torch.Size([100, 100]) 06-13 15:42 main DEBUG First batch min, max: (-216.92535, 140.35715) 06-13 15:42 matplotlib.pyplot DEBUG Loaded backend qtagg version 5.15.10. 06-13 15:42 matplotlib.font_manager DEBUG findfont: Matching sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0. 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 0.33499999999999996 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 1.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 0.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf', name='DejaVu Serif Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf', name='STIXGeneral', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmr10.ttf', name='cmr10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf', name='STIXSizeFiveSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf', name='DejaVu Sans Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf', name='STIXGeneral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf', name='STIXGeneral', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf', name='cmmi10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf', name='STIXGeneral', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf', name='cmtt10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmex10.ttf', name='cmex10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmss10.ttf', name='cmss10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf', name='cmsy10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmb10.ttf', name='cmb10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 1.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbell.ttf', name='Corbel', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebuc.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PRISTINA.TTF', name='Pristina', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNBI.TTF', name='Arial', style='italic', variant='normal', weight=700, stretch='condensed', size='scalable')) = 7.8986363636363635 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRADHITC.TTF', name='Bradley Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VIVALDII.TTF', name='Vivaldi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiab.ttf', name='Georgia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbeli.ttf', name='Corbel', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRSCRIPT.TTF', name='French Script MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VINERITC.TTF', name='Viner Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguili.ttf', name='Segoe UI', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CURLZ_.TTF', name='Curlz MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Inkfree.ttf', name='Ink Free', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILB.TTF', name='Gill Sans MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICI.TTF', name='Century Gothic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ariblk.ttf', name='Arial', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 6.888636363636364 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COOPBL.TTF', name='Cooper Black', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FORTE.TTF', name='Forte', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeprb.ttf', name='Segoe Print', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OUTLOOK.TTF', name='MS Outlook', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolab.ttf', name='Consolas', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUAI.TTF', name='Book Antiqua', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambria.ttc', name='Cambria', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENTURY.TTF', name='Century', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguibli.ttf', name='Segoe UI', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PARCHM.TTF', name='Parchment', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICB.TTF', name='Century Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCEB.TTF', name='Tw Cen MT Condensed Extra Bold', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\POORICH.TTF', name='Poor Richard', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgia.ttf', name='Georgia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ZWAdobeF.TTF', name='ZWAdobeF', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\AGENCYB.TTF', name='Agency FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKI.TTF', name='Century Schoolbook', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\JOKERMAN.TTF', name='Jokerman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSBI.TTF', name='Bookman Old Style', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\couri.ttf', name='Courier New', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COPRGTB.TTF', name='Copperplate Gothic Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKEB.TTF', name='Rockwell Extra Bold', style='normal', variant='normal', weight=800, stretch='normal', size='scalable')) = 10.43 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOSI.TTF', name='Goudy Old Style', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNI.TTF', name='Arial', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 7.613636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelUIsl.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgunbd.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUABI.TTF', name='Book Antiqua', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSI.TTF', name='Lucida Sans', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\wingding.ttf', name='Wingdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILI.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisb.ttf', name='Segoe UI', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cour.ttf', name='Courier New', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARA.TTF', name='Garamond', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKI.TTF', name='Rockwell', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILSANUB.TTF', name='Gill Sans Ultra Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarali.ttf', name='Candara', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoesc.ttf', name='Segoe Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FELIXTI.TTF', name='Felix Titling', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyi.ttf', name='Microsoft Yi Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIST.TTF', name='Calisto MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRABKIT.TTF', name='Franklin Gothic Book', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constanb.ttf', name='Constantia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARLRDBD.TTF', name='Arial Rounded MT Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Nirmala.ttf', name='Nirmala UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\framdit.ttf', name='Franklin Gothic Medium', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyhbd.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOS.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\REFSAN.TTF', name='MS Reference Sans Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyhl.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=290, stretch='normal', size='scalable')) = 10.1545 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\taile.ttf', name='Microsoft Tai Le', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEBO.TTF', name='Lucida Sans Typewriter', style='oblique', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_I.TTF', name='Bodoni MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CBI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=700, stretch='condensed', size='scalable')) = 11.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\INFROMAN.TTF', name='Informal Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BLAR.TTF', name='Bodoni MT', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjh.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HATTEN.TTF', name='Haettenschweiler', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COPRGTL.TTF', name='Copperplate Gothic Light', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriaz.ttf', name='Cambria', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SitkaVF-Italic.ttf', name='Sitka', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SHOWG.TTF', name='Showcard Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PLAYBILL.TTF', name='Playbill', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCCB.TTF', name='Rockwell Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFB.TTF', name='Californian FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msgothic.ttc', name='MS Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GIGI.TTF', name='Gigi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\simsun.ttc', name='SimSun', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITEDI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisli.ttf', name='Segoe UI', style='italic', variant='normal', weight=350, stretch='normal', size='scalable')) = 11.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARABD.TTF', name='Garamond', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriab.ttf', name='Cambria', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolai.ttf', name='Consolas', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERTIBD.TTF', name='Perpetua Titling MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HTOWERT.TTF', name='High Tower Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFI.TTF', name='Californian FB', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CB.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SitkaVF.ttf', name='Sitka', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARAIT.TTF', name='Garamond', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CASTELAR.TTF', name='Castellar', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VLADIMIR.TTF', name='Vladimir Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arial.ttf', name='Arial', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 6.413636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKBI.TTF', name='Rockwell', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_B.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADM.TTF', name='Franklin Gothic Demi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanaz.ttf', name='Verdana', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 4.971363636363637 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILC.TTF', name='Gill Sans MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgunsl.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ntailub.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAMDCN.TTF', name='Franklin Gothic Medium Cond', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothB.ttc', name='Yu Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCM.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFR.TTF', name='Californian FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRITANIC.TTF', name='Britannic Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\sylfaen.ttf', name='Sylfaen', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\KUNSTLER.TTF', name='Kunstler Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\RAVIE.TTF', name='Ravie', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comici.ttf', name='Comic Sans MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\gadugi.ttf', name='Gadugi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucbi.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILBI_.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HARLOWSI.TTF', name='Harlow Solid Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\pala.ttf', name='Palatino Linotype', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\REFSPCL.TTF', name='MS Reference Specialty', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDYSTO.TTF', name='Goudy Stout', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\micross.ttf', name='Microsoft Sans Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKBI.TTF', name='Century Schoolbook', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesbd.ttf', name='Times New Roman', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consola.ttf', name='Consolas', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\bahnschrift.ttf', name='Bahnschrift', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\javatext.ttf', name='Javanese Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MAGNETOB.TTF', name='Magneto', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LEELAWDB.TTF', name='Leelawadee', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSDI.TTF', name='Lucida Sans', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\courbi.ttf', name='Courier New', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\tahomabd.ttf', name='Tahoma', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrii.ttf', name='Calibri', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-BOLD.TTF', name='Dubai', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERTILI.TTF', name='Perpetua Titling MT', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELLB.TTF', name='Bell MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiai.ttf', name='Georgia', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeui.ttf', name='Segoe UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mingliub.ttc', name='MingLiU-ExtB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriai.ttf', name='Cambria', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguihis.ttf', name='Segoe UI Historic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITE.TTF', name='Lucida Bright', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NIAGSOL.TTF', name='Niagara Solid', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\lucon.ttf', name='Lucida Console', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrili.ttf', name='Calibri', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXD.TTF', name='Lucida Fax', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\l_10646.ttf', name='Lucida Sans Unicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candaraz.ttf', name='Candara', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BASKVILL.TTF', name='Baskerville Old Face', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjhbd.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisym.ttf', name='Segoe UI Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuisl.ttf', name='Segoe UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palai.ttf', name='Palatino Linotype', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MISTRAL.TTF', name='Mistral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\impact.ttf', name='Impact', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ebrima.ttf', name='Ebrima', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNB.TTF', name='Arial', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 6.8986363636363635 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candaral.ttf', name='Candara', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\phagspa.ttf', name='Microsoft PhagsPa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NirmalaB.ttf', name='Nirmala UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELLI.TTF', name='Bell MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXDI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERI__.TTF', name='Perpetua', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjhl.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=290, stretch='normal', size='scalable')) = 10.1545 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constani.ttf', name='Constantia', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCBLKAD.TTF', name='Blackadder ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCC.TTF', name='Rockwell Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothL.ttc', name='Yu Gothic', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ariali.ttf', name='Arial', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 7.413636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ENGR.TTF', name='Engravers MT', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTB.TTF', name='Calisto MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEB.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constanz.ttf', name='Constantia', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERB.TTF', name='Perpetua', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHIC.TTF', name='Century Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LCALLIG.TTF', name='Lucida Calligraphy', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BAUHS93.TTF', name='Bauhaus 93', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\times.ttf', name='Times New Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesbi.ttf', name='Times New Roman', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arialbd.ttf', name='Arial', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 6.698636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSB.TTF', name='Bookman Old Style', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCM.TTF', name='Tw Cen MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITED.TTF', name='Lucida Bright', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENSCBK.TTF', name='Century Schoolbook', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothR.ttc', name='Yu Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SegUIVar.ttf', name='Segoe UI Variable', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolaz.ttf', name='Consolas', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ELEPHNTI.TTF', name='Elephant', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OLDENGL.TTF', name='Old English Text MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\WINGDNG3.TTF', name='Wingdings 3', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MSUIGHUR.TTF', name='Microsoft Uighur', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSB.TTF', name='Berlin Sans FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mvboli.ttf', name='MV Boli', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ONYX.TTF', name='Onyx', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MATURASC.TTF', name='Matura MT Script Capitals', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANS.TTF', name='Lucida Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelb.ttf', name='Corbel', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ebrimabd.ttf', name='Ebrima', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palabi.ttf', name='Palatino Linotype', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MTCORSVA.TTF', name='Monotype Corsiva', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiaz.ttf', name='Georgia', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibriz.ttf', name='Calibri', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 11.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\phagspab.ttf', name='Microsoft PhagsPa', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyh.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FREESCPT.TTF', name='Freestyle Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOS.TTF', name='Bookman Old Style', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothM.ttc', name='Yu Gothic', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASLGHT.TTF', name='Eras Light ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\simsunb.ttf', name='SimSun-ExtB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKB.TTF', name='Century Schoolbook', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAHVIT.TTF', name='Franklin Gothic Heavy', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTBI.TTF', name='Calisto MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucit.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palab.ttf', name='Palatino Linotype', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CHILLER.TTF', name='Chiller', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\WINGDNG2.TTF', name='Wingdings 2', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ALGER.TTF', name='Algerian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanab.ttf', name='Verdana', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 3.9713636363636367 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTI.TTF', name='Calisto MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCB.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCEDSCR.TTF', name='Edwardian Script ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\webdings.ttf', name='Webdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADMIT.TTF', name='Franklin Gothic Demi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GLECB.TTF', name='Gloucester MT Extra Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERBI_.TTF', name='Perpetua', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FTLTLT.TTF', name='Footlight MT Light', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MOD20.TTF', name='Modern No. 20', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\IMPRISHA.TTF', name='Imprint MT Shadow', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELL.TTF', name='Bell MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRABK.TTF', name='Franklin Gothic Book', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BERNHC.TTF', name='Bernard MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ELEPHNT.TTF', name='Elephant', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCMI.TTF', name='Tw Cen MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanai.ttf', name='Verdana', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 4.6863636363636365 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\symbol.ttf', name='Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuib.ttf', name='Segoe UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROGFonts-Regular_0.otf', name='ROG Fonts', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrib.ttf', name='Calibri', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OCRAEXT.TTF', name='OCR A Extended', style='normal', variant='normal', weight=400, stretch='expanded', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENTAUR.TTF', name='Centaur', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarab.ttf', name='Candara', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BROADW.TTF', name='Broadway', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuiz.ttf', name='Segoe UI', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-MEDIUM.TTF', name='Dubai', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADMCN.TTF', name='Franklin Gothic Demi Cond', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICBI.TTF', name='Century Gothic', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSR.TTF', name='Berlin Sans FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SNAP.TTF', name='Snap ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arialbi.ttf', name='Arial', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 7.698636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSD.TTF', name='Lucida Sans', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comicz.ttf', name='Comic Sans MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSI.TTF', name='Bookman Old Style', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PAPYRUS.TTF', name='Papyrus', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NirmalaS.ttf', name='Nirmala UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASMD.TTF', name='Eras Medium ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSDB.TTF', name='Berlin Sans FB Demi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\himalaya.ttf', name='Microsoft Himalaya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguibl.ttf', name='Segoe UI', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisbi.ttf', name='Segoe UI', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CR.TTF', name='Bodoni MT', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\taileb.ttf', name='Microsoft Tai Le', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUAB.TTF', name='Book Antiqua', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAX.TTF', name='Lucida Fax', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PALSCRI.TTF', name='Palace Script MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_PSTC.TTF', name='Bodoni MT', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\holomdl2.ttf', name='HoloLens MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GLSNECB.TTF', name='Gill Sans MT Ext Condensed Bold', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segmdl2.ttf', name='Segoe MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-LIGHT.TTF', name='Dubai', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibri.ttf', name='Calibri', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRUSHSCI.TTF', name='Brush Script MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCB__.TTF', name='Tw Cen MT Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAHV.TTF', name='Franklin Gothic Heavy', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mmrtextb.ttf', name='Myanmar Text', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\monbaiti.ttf', name='Mongolian Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITEI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_R.TTF', name='Bodoni MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALN.TTF', name='Arial', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 6.613636363636363 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GIL.TTF', name='Gill Sans MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COLONNA.TTF', name='Colonna MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ntailu.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCBI__.TTF', name='Tw Cen MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelli.ttf', name='Corbel', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASDEMI.TTF', name='Eras Demi ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comicbd.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-REGULAR.TTF', name='Dubai', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelawUI.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MAIAN.TTF', name='Maiandra GD', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguiemj.ttf', name='Segoe UI Emoji', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BKANT.TTF', name='Book Antiqua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MSUIGHUB.TTF', name='Microsoft Uighur', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\JUICE.TTF', name='Juice ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MTEXTRA.TTF', name='MT Extra', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comic.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TEMPSITC.TTF', name='Tempus Sans ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesi.ttf', name='Times New Roman', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HTOWERTI.TTF', name='High Tower Text', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEO.TTF', name='Lucida Sans Typewriter', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LEELAWAD.TTF', name='Leelawadee', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Gabriola.ttf', name='Gabriola', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\courbd.ttf', name='Courier New', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoepr.ttf', name='Segoe Print', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASBD.TTF', name='Eras Bold ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constan.ttf', name='Constantia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbel.ttf', name='Corbel', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BSSYM7.TTF', name='Bookshelf Symbol 7', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LHANDW.TTF', name='Lucida Handwriting', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPE.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelz.ttf', name='Corbel', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BLAI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOSB.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCKRIST.TTF', name='Kristen ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdana.ttf', name='Verdana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 3.6863636363636365 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgun.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\tahoma.ttf', name='Tahoma', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PER____.TTF', name='Perpetua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibril.ttf', name='Calibri', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\RAGE.TTF', name='Rage Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\STENCIL.TTF', name='Stencil', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NIAGENG.TTF', name='Niagara Engraved', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILLUBCD.TTF', name='Gill Sans Ultra Bold Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarai.ttf', name='Candara', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelaUIb.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candara.ttf', name='Candara', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoescb.ttf', name='Segoe Script', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mmrtext.ttf', name='Myanmar Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuii.ttf', name='Segoe UI', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuil.ttf', name='Segoe UI', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCRIPTBL.TTF', name='Script MT Bold', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucbd.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\gadugib.ttf', name='Gadugi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKB.TTF', name='Rockwell', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HARNGTON.TTF', name='Harrington', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\framd.ttf', name='Franklin Gothic Medium', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LATINWD.TTF', name='Wide Latin', style='normal', variant='normal', weight=400, stretch='expanded', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCK.TTF', name='Rockwell', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SansSerifCollection.ttf', name='Sans Serif Collection', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SegoeIcons.ttf', name='Segoe Fluent Icons', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\AGENCYR.TTF', name='Agency FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: Matching sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0 to DejaVu Sans ('d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf') with score of 0.050000. 06-13 15:42 matplotlib.font_manager DEBUG findfont: Matching sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0. 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 0.33499999999999996 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 1.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 0.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf', name='DejaVu Serif Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf', name='STIXGeneral', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmr10.ttf', name='cmr10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf', name='STIXSizeFiveSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf', name='DejaVu Sans Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf', name='STIXGeneral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf', name='STIXGeneral', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf', name='cmmi10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf', name='STIXGeneral', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf', name='cmtt10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmex10.ttf', name='cmex10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmss10.ttf', name='cmss10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf', name='cmsy10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\cmb10.ttf', name='cmb10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 1.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbell.ttf', name='Corbel', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebuc.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PRISTINA.TTF', name='Pristina', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNBI.TTF', name='Arial', style='italic', variant='normal', weight=700, stretch='condensed', size='scalable')) = 7.8986363636363635 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRADHITC.TTF', name='Bradley Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VIVALDII.TTF', name='Vivaldi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiab.ttf', name='Georgia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbeli.ttf', name='Corbel', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRSCRIPT.TTF', name='French Script MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VINERITC.TTF', name='Viner Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguili.ttf', name='Segoe UI', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CURLZ_.TTF', name='Curlz MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Inkfree.ttf', name='Ink Free', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILB.TTF', name='Gill Sans MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICI.TTF', name='Century Gothic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ariblk.ttf', name='Arial', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 6.888636363636364 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COOPBL.TTF', name='Cooper Black', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FORTE.TTF', name='Forte', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeprb.ttf', name='Segoe Print', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OUTLOOK.TTF', name='MS Outlook', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolab.ttf', name='Consolas', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUAI.TTF', name='Book Antiqua', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambria.ttc', name='Cambria', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENTURY.TTF', name='Century', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguibli.ttf', name='Segoe UI', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PARCHM.TTF', name='Parchment', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICB.TTF', name='Century Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCEB.TTF', name='Tw Cen MT Condensed Extra Bold', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\POORICH.TTF', name='Poor Richard', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgia.ttf', name='Georgia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ZWAdobeF.TTF', name='ZWAdobeF', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\AGENCYB.TTF', name='Agency FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKI.TTF', name='Century Schoolbook', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\JOKERMAN.TTF', name='Jokerman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSBI.TTF', name='Bookman Old Style', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\couri.ttf', name='Courier New', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COPRGTB.TTF', name='Copperplate Gothic Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKEB.TTF', name='Rockwell Extra Bold', style='normal', variant='normal', weight=800, stretch='normal', size='scalable')) = 10.43 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOSI.TTF', name='Goudy Old Style', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNI.TTF', name='Arial', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 7.613636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelUIsl.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgunbd.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUABI.TTF', name='Book Antiqua', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSI.TTF', name='Lucida Sans', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\wingding.ttf', name='Wingdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILI.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisb.ttf', name='Segoe UI', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cour.ttf', name='Courier New', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARA.TTF', name='Garamond', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKI.TTF', name='Rockwell', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILSANUB.TTF', name='Gill Sans Ultra Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarali.ttf', name='Candara', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoesc.ttf', name='Segoe Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FELIXTI.TTF', name='Felix Titling', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyi.ttf', name='Microsoft Yi Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIST.TTF', name='Calisto MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRABKIT.TTF', name='Franklin Gothic Book', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constanb.ttf', name='Constantia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARLRDBD.TTF', name='Arial Rounded MT Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Nirmala.ttf', name='Nirmala UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\framdit.ttf', name='Franklin Gothic Medium', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyhbd.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOS.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\REFSAN.TTF', name='MS Reference Sans Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyhl.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=290, stretch='normal', size='scalable')) = 10.1545 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\taile.ttf', name='Microsoft Tai Le', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEBO.TTF', name='Lucida Sans Typewriter', style='oblique', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_I.TTF', name='Bodoni MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CBI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=700, stretch='condensed', size='scalable')) = 11.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\INFROMAN.TTF', name='Informal Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BLAR.TTF', name='Bodoni MT', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjh.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HATTEN.TTF', name='Haettenschweiler', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COPRGTL.TTF', name='Copperplate Gothic Light', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriaz.ttf', name='Cambria', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SitkaVF-Italic.ttf', name='Sitka', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SHOWG.TTF', name='Showcard Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PLAYBILL.TTF', name='Playbill', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCCB.TTF', name='Rockwell Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFB.TTF', name='Californian FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msgothic.ttc', name='MS Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GIGI.TTF', name='Gigi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\simsun.ttc', name='SimSun', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITEDI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisli.ttf', name='Segoe UI', style='italic', variant='normal', weight=350, stretch='normal', size='scalable')) = 11.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARABD.TTF', name='Garamond', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriab.ttf', name='Cambria', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolai.ttf', name='Consolas', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERTIBD.TTF', name='Perpetua Titling MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HTOWERT.TTF', name='High Tower Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFI.TTF', name='Californian FB', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CB.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SitkaVF.ttf', name='Sitka', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GARAIT.TTF', name='Garamond', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CASTELAR.TTF', name='Castellar', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\VLADIMIR.TTF', name='Vladimir Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arial.ttf', name='Arial', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 6.413636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKBI.TTF', name='Rockwell', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_B.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADM.TTF', name='Franklin Gothic Demi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanaz.ttf', name='Verdana', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 4.971363636363637 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILC.TTF', name='Gill Sans MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgunsl.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ntailub.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAMDCN.TTF', name='Franklin Gothic Medium Cond', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothB.ttc', name='Yu Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCM.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALIFR.TTF', name='Californian FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRITANIC.TTF', name='Britannic Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\sylfaen.ttf', name='Sylfaen', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\KUNSTLER.TTF', name='Kunstler Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\RAVIE.TTF', name='Ravie', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comici.ttf', name='Comic Sans MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\gadugi.ttf', name='Gadugi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucbi.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILBI_.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HARLOWSI.TTF', name='Harlow Solid Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\pala.ttf', name='Palatino Linotype', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\REFSPCL.TTF', name='MS Reference Specialty', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDYSTO.TTF', name='Goudy Stout', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\micross.ttf', name='Microsoft Sans Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKBI.TTF', name='Century Schoolbook', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesbd.ttf', name='Times New Roman', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consola.ttf', name='Consolas', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\bahnschrift.ttf', name='Bahnschrift', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\javatext.ttf', name='Javanese Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MAGNETOB.TTF', name='Magneto', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LEELAWDB.TTF', name='Leelawadee', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSDI.TTF', name='Lucida Sans', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\courbi.ttf', name='Courier New', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\tahomabd.ttf', name='Tahoma', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrii.ttf', name='Calibri', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-BOLD.TTF', name='Dubai', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERTILI.TTF', name='Perpetua Titling MT', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELLB.TTF', name='Bell MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiai.ttf', name='Georgia', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeui.ttf', name='Segoe UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mingliub.ttc', name='MingLiU-ExtB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\cambriai.ttf', name='Cambria', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguihis.ttf', name='Segoe UI Historic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITE.TTF', name='Lucida Bright', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NIAGSOL.TTF', name='Niagara Solid', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\lucon.ttf', name='Lucida Console', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrili.ttf', name='Calibri', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXD.TTF', name='Lucida Fax', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\l_10646.ttf', name='Lucida Sans Unicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candaraz.ttf', name='Candara', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BASKVILL.TTF', name='Baskerville Old Face', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjhbd.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisym.ttf', name='Segoe UI Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuisl.ttf', name='Segoe UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palai.ttf', name='Palatino Linotype', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MISTRAL.TTF', name='Mistral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\impact.ttf', name='Impact', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ebrima.ttf', name='Ebrima', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALNB.TTF', name='Arial', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 6.8986363636363635 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candaral.ttf', name='Candara', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\phagspa.ttf', name='Microsoft PhagsPa', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NirmalaB.ttf', name='Nirmala UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELLI.TTF', name='Bell MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXDI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERI__.TTF', name='Perpetua', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msjhl.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=290, stretch='normal', size='scalable')) = 10.1545 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constani.ttf', name='Constantia', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCBLKAD.TTF', name='Blackadder ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCC.TTF', name='Rockwell Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothL.ttc', name='Yu Gothic', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ariali.ttf', name='Arial', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 7.413636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ENGR.TTF', name='Engravers MT', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTB.TTF', name='Calisto MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEB.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constanz.ttf', name='Constantia', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERB.TTF', name='Perpetua', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHIC.TTF', name='Century Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LCALLIG.TTF', name='Lucida Calligraphy', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BAUHS93.TTF', name='Bauhaus 93', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\times.ttf', name='Times New Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesbi.ttf', name='Times New Roman', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arialbd.ttf', name='Arial', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 6.698636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSB.TTF', name='Bookman Old Style', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCM.TTF', name='Tw Cen MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITED.TTF', name='Lucida Bright', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENSCBK.TTF', name='Century Schoolbook', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothR.ttc', name='Yu Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SegUIVar.ttf', name='Segoe UI Variable', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\consolaz.ttf', name='Consolas', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ELEPHNTI.TTF', name='Elephant', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OLDENGL.TTF', name='Old English Text MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\WINGDNG3.TTF', name='Wingdings 3', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MSUIGHUR.TTF', name='Microsoft Uighur', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSB.TTF', name='Berlin Sans FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mvboli.ttf', name='MV Boli', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ONYX.TTF', name='Onyx', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MATURASC.TTF', name='Matura MT Script Capitals', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANS.TTF', name='Lucida Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelb.ttf', name='Corbel', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ebrimabd.ttf', name='Ebrima', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palabi.ttf', name='Palatino Linotype', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MTCORSVA.TTF', name='Monotype Corsiva', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\georgiaz.ttf', name='Georgia', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibriz.ttf', name='Calibri', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 11.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\phagspab.ttf', name='Microsoft PhagsPa', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\msyh.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FREESCPT.TTF', name='Freestyle Script', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOS.TTF', name='Bookman Old Style', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\YuGothM.ttc', name='Yu Gothic', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASLGHT.TTF', name='Eras Light ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\simsunb.ttf', name='SimSun-ExtB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCHLBKB.TTF', name='Century Schoolbook', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAHVIT.TTF', name='Franklin Gothic Heavy', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTBI.TTF', name='Calisto MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucit.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\palab.ttf', name='Palatino Linotype', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CHILLER.TTF', name='Chiller', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\WINGDNG2.TTF', name='Wingdings 2', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ALGER.TTF', name='Algerian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanab.ttf', name='Verdana', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 3.9713636363636367 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CALISTI.TTF', name='Calisto MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCB.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCEDSCR.TTF', name='Edwardian Script ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\webdings.ttf', name='Webdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADMIT.TTF', name='Franklin Gothic Demi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GLECB.TTF', name='Gloucester MT Extra Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PERBI_.TTF', name='Perpetua', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FTLTLT.TTF', name='Footlight MT Light', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MOD20.TTF', name='Modern No. 20', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\IMPRISHA.TTF', name='Imprint MT Shadow', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BELL.TTF', name='Bell MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRABK.TTF', name='Franklin Gothic Book', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BERNHC.TTF', name='Bernard MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ELEPHNT.TTF', name='Elephant', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCMI.TTF', name='Tw Cen MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdanai.ttf', name='Verdana', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 4.6863636363636365 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\symbol.ttf', name='Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuib.ttf', name='Segoe UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROGFonts-Regular_0.otf', name='ROG Fonts', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibrib.ttf', name='Calibri', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\OCRAEXT.TTF', name='OCR A Extended', style='normal', variant='normal', weight=400, stretch='expanded', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\CENTAUR.TTF', name='Centaur', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarab.ttf', name='Candara', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BROADW.TTF', name='Broadway', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuiz.ttf', name='Segoe UI', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-MEDIUM.TTF', name='Dubai', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRADMCN.TTF', name='Franklin Gothic Demi Cond', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOTHICBI.TTF', name='Century Gothic', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSR.TTF', name='Berlin Sans FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SNAP.TTF', name='Snap ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\arialbi.ttf', name='Arial', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 7.698636363636363 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LSANSD.TTF', name='Lucida Sans', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comicz.ttf', name='Comic Sans MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOOKOSI.TTF', name='Bookman Old Style', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PAPYRUS.TTF', name='Papyrus', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NirmalaS.ttf', name='Nirmala UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASMD.TTF', name='Eras Medium ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRLNSDB.TTF', name='Berlin Sans FB Demi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\himalaya.ttf', name='Microsoft Himalaya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguibl.ttf', name='Segoe UI', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguisbi.ttf', name='Segoe UI', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_CR.TTF', name='Bodoni MT', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\taileb.ttf', name='Microsoft Tai Le', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ANTQUAB.TTF', name='Book Antiqua', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAX.TTF', name='Lucida Fax', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PALSCRI.TTF', name='Palace Script MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_PSTC.TTF', name='Bodoni MT', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\holomdl2.ttf', name='HoloLens MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GLSNECB.TTF', name='Gill Sans MT Ext Condensed Bold', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segmdl2.ttf', name='Segoe MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-LIGHT.TTF', name='Dubai', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibri.ttf', name='Calibri', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BRUSHSCI.TTF', name='Brush Script MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCCB__.TTF', name='Tw Cen MT Condensed', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\FRAHV.TTF', name='Franklin Gothic Heavy', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mmrtextb.ttf', name='Myanmar Text', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\monbaiti.ttf', name='Mongolian Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LBRITEI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_R.TTF', name='Bodoni MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ARIALN.TTF', name='Arial', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 6.613636363636363 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GIL.TTF', name='Gill Sans MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\COLONNA.TTF', name='Colonna MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ntailu.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TCBI__.TTF', name='Tw Cen MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelli.ttf', name='Corbel', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASDEMI.TTF', name='Eras Demi ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comicbd.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\DUBAI-REGULAR.TTF', name='Dubai', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelawUI.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MAIAN.TTF', name='Maiandra GD', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\seguiemj.ttf', name='Segoe UI Emoji', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BKANT.TTF', name='Book Antiqua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MSUIGHUB.TTF', name='Microsoft Uighur', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\JUICE.TTF', name='Juice ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\MTEXTRA.TTF', name='MT Extra', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\comic.ttf', name='Comic Sans MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\TEMPSITC.TTF', name='Tempus Sans ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\timesi.ttf', name='Times New Roman', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HTOWERTI.TTF', name='High Tower Text', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPEO.TTF', name='Lucida Sans Typewriter', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LEELAWAD.TTF', name='Leelawadee', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Gabriola.ttf', name='Gabriola', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\courbd.ttf', name='Courier New', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoepr.ttf', name='Segoe Print', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ERASBD.TTF', name='Eras Bold ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\constan.ttf', name='Constantia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbel.ttf', name='Corbel', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BSSYM7.TTF', name='Bookshelf Symbol 7', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LHANDW.TTF', name='Lucida Handwriting', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LTYPE.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\corbelz.ttf', name='Corbel', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\BOD_BLAI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GOUDOSB.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ITCKRIST.TTF', name='Kristen ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\verdana.ttf', name='Verdana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 3.6863636363636365 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\malgun.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\tahoma.ttf', name='Tahoma', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.fontmanager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\PER____.TTF', name='Perpetua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\calibril.ttf', name='Calibri', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\RAGE.TTF', name='Rage Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\STENCIL.TTF', name='Stencil', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\NIAGENG.TTF', name='Niagara Engraved', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\GILLUBCD.TTF', name='Gill Sans Ultra Bold Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candarai.ttf', name='Candara', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LFAXI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LeelaUIb.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\Candara.ttf', name='Candara', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoescb.ttf', name='Segoe Script', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\mmrtext.ttf', name='Myanmar Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuii.ttf', name='Segoe UI', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\segoeuil.ttf', name='Segoe UI', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SCRIPTBL.TTF', name='Script MT Bold', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\trebucbd.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\gadugib.ttf', name='Gadugi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCKB.TTF', name='Rockwell', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\HARNGTON.TTF', name='Harrington', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\framd.ttf', name='Franklin Gothic Medium', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\LATINWD.TTF', name='Wide Latin', style='normal', variant='normal', weight=400, stretch='expanded', size='scalable')) = 10.25 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\ROCK.TTF', name='Rockwell', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SansSerifCollection.ttf', name='Sans Serif Collection', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\SegoeIcons.ttf', name='Segoe Fluent Icons', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: score(FontEntry(fname='C:\Windows\Fonts\AGENCYR.TTF', name='Agency FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05 06-13 15:42 matplotlib.font_manager DEBUG findfont: Matching sans-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=12.0 to DejaVu Sans ('d:\CNEA\.venv\Lib\site-packages\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf') with score of 0.050000. 06-13 15:43 kilosort.run_kilosort INFO
06-13 15:43 kilosort.run_kilosort INFO Extracting spikes using templates 06-13 15:43 kilosort.run_kilosort INFO ---------------------------------------- 06-13 15:43 kilosort.spikedetect INFO Re-computing universal templates from data. 06-13 16:04 kilosort.run_kilosort INFO 1166494 spikes extracted in 1205.31s; total 1305.71s 06-13 16:04 kilosort.run_kilosort DEBUG st0 shape: (1166494, 6) 06-13 16:04 kilosort.run_kilosort DEBUG tF shape: torch.Size([1166494, 10, 6]) 06-13 16:04 kilosort.run_kilosort INFO
06-13 16:04 kilosort.run_kilosort INFO First clustering 06-13 16:04 kilosort.run_kilosort INFO ---------------------------------------- 06-13 16:04 kilosort.run_kilosort INFO 216 clusters found, in 48.61s; total 1354.32s 06-13 16:04 kilosort.run_kilosort DEBUG clu shape: (1166494,) 06-13 16:04 kilosort.run_kilosort DEBUG Wall shape: torch.Size([216, 100, 6]) 06-13 16:04 kilosort.run_kilosort INFO
06-13 16:04 kilosort.run_kilosort INFO Extracting spikes using cluster waveforms 06-13 16:04 kilosort.run_kilosort INFO ---------------------------------------- 06-13 16:26 kilosort.run_kilosort INFO 27419693 spikes extracted in 1301.07s; total 2655.39s 06-13 16:26 kilosort.run_kilosort DEBUG st shape: (27419693, 3) 06-13 16:26 kilosort.run_kilosort DEBUG tF shape: torch.Size([27419693, 10, 6]) 06-13 16:26 kilosort.run_kilosort DEBUG iCC shape: torch.Size([10, 100]) 06-13 16:26 kilosort.run_kilosort DEBUG iU shape: torch.Size([216]) 06-13 16:26 kilosort.run_kilosort INFO
06-13 16:26 kilosort.run_kilosort INFO Final clustering 06-13 16:26 kilosort.run_kilosort INFO ----------------------------------------

I am using version 0.101.0.

This is how I define my probe: pg = recording.get_probegroup() write_prb('probe.prb', pg) probe = io.load_probe('probe.prb')

jacobpennington commented 2 weeks ago

@nadirbt That is your SpikeInterface version, not Kilosort4's version. The first thing to try is updating to the latest version of Kilosort4 and running it without SpikeInterface. If the error persists, we can go from there.

Aside from that, there are some things in your settings that look off. Your batch size is set equal to your sampling rate, so batches are being loaded 1 second at a time. I would recommend increasing batch_size to twice your sampling rate, or possibly 3-4 times the sampling rate since your probe has fewer channels than Neuropixels. I also noticed you have a value set for ntmin0, which is not a valid parameter (it's nt0min). That won't cause an error, but it also won't change the value.