You are not logged in.

#1 2021-12-13 13:52:48

zaxdan69
Member
Registered: 2016-06-04
Posts: 271

Problems after update to python 3.10

Seems that python 3.10 broke some things(at least for me). I have problems with kodi crash and I cannot downgrade it to previous version because it need python 3.9 libraries, so it doesn't run.
The problem I have comes from sqlite 3 and the error is this:

File "/usr/lib/python3.10/sqlite3/dbapi2.py", line 83, in register_adapters_and_converters

And just now I get the same error when tried to use setup.py file for subsync:
https://github.com/sc0ty/subsync
Probably this will cause problems with other programs too but those I found until now. Is there any fix about this? Do I need to downgrade to python 3.9(at least for now)?

Offline

#2 2021-12-13 13:56:59

schard
Member
From: Hannover
Registered: 2016-05-06
Posts: 1,933
Website

Re: Problems after update to python 3.10

Please provide the full traceback and not just the last line.

Offline

#3 2021-12-13 14:17:37

zaxdan69
Member
Registered: 2016-06-04
Posts: 271

Re: Problems after update to python 3.10

Sorry, I deleted subsync source code, because I downloaded the newer 0.17 version(I hade 0.16), which I didn't use also because I found it and installed from aur. The error was only this though for subsync. Now again it doesn't work but with different errors:

Slider.SetValue(): argument 1 has unexpected type 'float'

Traceback (most recent call last):
  File "/usr/lib/python3.10/site-packages/subsync/__main__.py", line 73, in gui
    win = MainWin(None, task)
  File "/usr/lib/python3.10/site-packages/subsync/gui/mainwin.py", line 71, in __init__
    self.m_sliderMaxDist.SetValue(settings().windowSize / 60.0)
TypeError: Slider.SetValue(): argument 1 has unexpected type 'float'

*(those maybe are unrelated and most program's issue which I solve it for now by convert the float number to int)

My main problem is kodi though which I use a lot and the errors there, which are similar with subsync's setup.py, but more are those:

ERROR <general>: Exception ignored deletion of interned string failed
 ERROR <general>: :
                                                   
  ERROR <general>: Traceback (most recent call last):
                                                   
 ERROR <general>:   File "/usr/lib/python3.10/sqlite3/dbapi2.py", line 83, in register_adapters_and_converters
                                                   
 ERROR <general>:     
 ERROR <general>: register_converter("timestamp", convert_timestamp)
 ERROR <general>: 
                                                   
 ERROR <general>: KeyError
 ERROR <general>: : 
 ERROR <general>: 'timepart_full'
 ERROR <general>: 
                                                   
 DEBUG <general>: .

Last edited by zaxdan69 (2021-12-13 14:27:19)

Offline

#4 2021-12-13 14:22:35

schard
Member
From: Hannover
Registered: 2016-05-06
Posts: 1,933
Website

Re: Problems after update to python 3.10

Well, that's some completely unrelated error. From the context I assume that there is a GUI slider element, that's being set to a particular value which is a float.
I assume, that it only accepts int, hence the error. But I don't think that this is Python 3.10-related.

Offline

#5 2021-12-13 14:28:52

zaxdan69
Member
Registered: 2016-06-04
Posts: 271

Re: Problems after update to python 3.10

I don't(I just edited my post).

Offline

#6 2021-12-13 14:59:17

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: Problems after update to python 3.10

I think the issue is broader scope.  Several python plugins for Kodi are affected as well.

Youtube: https://github.com/anxdpanic/plugin.vid … issues/255
IMDB trailers: https://forum.kodi.tv/showthread.php?ti … pid3075547

ERROR <general>: Traceback (most recent call last):
ERROR <general>:   File "/usr/lib/python3.10/sqlite3/dbapi2.py", line 83, in register_adapters_and_converters
ERROR <general>:     
ERROR <general>: register_converter("timestamp", convert_timestamp)
ERROR <general>: 
ERROR <general>: KeyError
ERROR <general>: : 
ERROR <general>: 'timepart_full'
ERROR <general>:                                              
ERROR <general>: Exception ignored deletion of interned string failed
ERROR <general>: :

Last edited by graysky (2021-12-13 17:34:35)


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#7 2021-12-13 16:32:22

bibinne
Member
Registered: 2018-11-01
Posts: 43

Re: Problems after update to python 3.10

See here for me : https://bbs.archlinux.org/viewtopic.php … 1#p2008621
Troubles with python.....

Offline

#8 2021-12-13 18:58:13

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: Problems after update to python 3.10

See asavah's reply here.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#9 2021-12-13 19:07:40

bibinne
Member
Registered: 2018-11-01
Posts: 43

Re: Problems after update to python 3.10

Thanks, almost all my python programs are broken.
Manage at least to make kodi works by downgrading, for the rest it will wait.

Offline

#10 2021-12-13 19:08:35

Maniaxx
Member
Registered: 2014-05-14
Posts: 732

Re: Problems after update to python 3.10


sys2064

Offline

#11 2021-12-13 19:31:14

zaxdan69
Member
Registered: 2016-06-04
Posts: 271

Re: Problems after update to python 3.10

bibinne wrote:

Thanks, almost all my python programs are broken.
Manage at least to make kodi works by downgrading, for the rest it will wait.

How? That was the first I did and it couldn't start because :

/usr/lib/kodi/kodi.bin: error while loading shared libraries: libpython3.9.so.1.0: cannot open shared object file: No such file or directory

Offline

#12 2021-12-13 19:40:45

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: Problems after update to python 3.10


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#13 2021-12-13 21:11:46

jot
Member
Registered: 2007-04-21
Posts: 6

Re: Problems after update to python 3.10

zaxdan69 wrote:
bibinne wrote:

Thanks, almost all my python programs are broken.
Manage at least to make kodi works by downgrading, for the rest it will wait.

How? That was the first I did and it couldn't start because :

/usr/lib/kodi/kodi.bin: error while loading shared libraries: libpython3.9.so.1.0: cannot open shared object file: No such file or directory

You need to also downgrade kodi to 19.3-1. It works for me.

Offline

#14 2021-12-14 08:48:35

zaxdan69
Member
Registered: 2016-06-04
Posts: 271

Re: Problems after update to python 3.10

Thanks, I figured out. I did downgrade kodi but I didn't have python3.9. After I installed it from aur kodi started without issues.

Offline

#15 2021-12-14 11:33:30

ghen
Member
From: Belgium
Registered: 2010-08-31
Posts: 121

Re: Problems after update to python 3.10

Downgrading to python 3.10.0 is enough, not necessarily back to 3.9 (with all dependants).
Or rebuild python 3.10.1 with the patch from https://bugs.archlinux.org/task/73002.

Last edited by ghen (2021-12-14 11:33:52)

Offline

#16 2021-12-14 13:26:32

12804
Member
Registered: 2021-12-14
Posts: 2

Re: Problems after update to python 3.10

ghen wrote:

Downgrading to python 3.10.0 is enough, not necessarily back to 3.9 (with all dependants).
Or rebuild python 3.10.1 with the patch from https://bugs.archlinux.org/task/73002.

I found downgrading the easiest method, that didn't (seemingly) break anything so far. How fast can we expect the patch to go upstream? Or will the change be compensated in some other way?

Offline

#17 2021-12-16 14:33:55

bibinne
Member
Registered: 2018-11-01
Posts: 43

Re: Problems after update to python 3.10

Downgrading to python 3.10.0-1 is not enough for me,

############## Kodi CRASH LOG ###############

################ SYSTEM INFO ################
 Date: jeu. 16 déc. 2021 10:31:09 AST
 Kodi Options: 
 Arch: x86_64
 Kernel: Linux 5.15.8-arch1-1 #1 SMP PREEMPT Tue, 14 Dec 2021 12:28:02 +0000
 Release: Arch Linux
############## END SYSTEM INFO ##############

############### STACK TRACE #################
=====>  Core file: /home/bibi/core (2021-12-16 10:31:10.252952370 -0400)
        =========================================
[New LWP 26891]
[New LWP 26910]
[New LWP 26897]
[New LWP 26883]
[New LWP 26885]
[New LWP 26919]
[New LWP 26878]
[New LWP 26904]
[New LWP 26924]
[New LWP 26939]
[New LWP 26894]
[New LWP 26825]
[New LWP 26902]
[New LWP 26908]
[New LWP 26875]
[New LWP 26822]
[New LWP 26887]
[New LWP 26928]
[New LWP 26813]
[New LWP 26900]
[New LWP 26893]
[New LWP 26889]
[New LWP 26820]
[New LWP 26834]
[New LWP 26823]
[New LWP 26818]
[New LWP 26899]
[New LWP 26821]
[New LWP 26832]
[New LWP 26929]
[New LWP 26827]
[New LWP 26903]
[New LWP 26835]
[New LWP 26837]
[New LWP 26879]
[New LWP 26833]
[New LWP 26828]
[New LWP 26907]
[New LWP 26836]
[New LWP 26831]
[New LWP 26839]
[New LWP 26912]
[New LWP 26880]
[New LWP 26830]
[New LWP 26829]
[New LWP 26882]
[New LWP 26881]
[New LWP 26914]
[New LWP 26890]
[New LWP 26913]
[New LWP 26838]
[New LWP 26911]
[New LWP 26915]
[New LWP 26930]
[New LWP 26892]
[New LWP 26898]
[New LWP 26876]
[New LWP 26840]
[New LWP 26931]
[New LWP 26872]
[New LWP 26916]
[New LWP 26906]
[New LWP 26896]
[New LWP 26933]
[New LWP 26901]
[New LWP 26905]
[New LWP 26909]
[New LWP 26920]
[New LWP 26895]
[New LWP 26925]
[New LWP 26877]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
Core was generated by `/usr/lib/kodi/kodi.bin'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x00007f5fba0cfb82 in _PyObject_GC_New () from /usr/lib/libpython3.10.so.1.0
[Current thread is 1 (Thread 0x7f5efe7fc640 (LWP 26891))]

Thread 71 (Thread 0x7f5f167fd640 (LWP 26877)):
#0  0x00007f5fb8fca4db in fdatasync () at /usr/lib/libc.so.6
#1  0x00007f5fb96c881a in  () at /usr/lib/libsqlite3.so.0
#2  0x00007f5fb96cbe84 in  () at /usr/lib/libsqlite3.so.0
#3  0x00007f5fb96cf38b in sqlite3PagerCommitPhaseOne () at /usr/lib/libsqlite3.so.0
#4  0x00007f5fb96597b0 in sqlite3BtreeCommitPhaseOne () at /usr/lib/libsqlite3.so.0
#5  0x00007f5fb970adec in sqlite3VdbeHalt () at /usr/lib/libsqlite3.so.0
#6  0x00007f5fb9703c11 in sqlite3VdbeExec () at /usr/lib/libsqlite3.so.0
#7  0x00007f5fb9705188 in sqlite3_step () at /usr/lib/libsqlite3.so.0
#8  0x00007f5fb96be1c6 in sqlite3_exec () at /usr/lib/libsqlite3.so.0
#9  0x000055f9f185298c in dbiplus::SqliteDataset::exec(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#10 0x000055f9f1924af8 in ADDON::CAddonDatabase::SetRepoUpdateData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, ADDON::CAddonDatabase::RepoUpdateData const&) ()
#11 0x000055f9f196e448 in ADDON::CRepositoryUpdateJob::DoWork() ()
#12 0x000055f9f1618cf9 in CJobWorker::Process() ()
#13 0x000055f9f168d794 in CThread::Action() ()
#14 0x000055f9f1fdfdab in  ()
#15 0x000055f9f1687948 in  ()
#16 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f895df10) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#17 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#18 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 70 (Thread 0x7f5e88f34640 (LWP 26925)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c0af34 in PVR::CPVRManager::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f40356790) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 69 (Thread 0x7f5ee7fff640 (LWP 26895)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f8173 in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0e1d23 in PyObject_CallFunction () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba12ec81 in PyImport_Import () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1ad8dd in PyImport_ImportModule () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5f84489c54 in PyInit__decimal () at /usr/lib/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so
#22 0x00007f5fba1c5abd in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#158 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#159 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#160 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#161 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#162 0x000055f9f168d794 in CThread::Action() ()
#163 0x000055f9f1fdfdab in  ()
#164 0x000055f9f1687948 in  ()
#165 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d38420) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#166 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#167 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 68 (Thread 0x7f5e8a7fc640 (LWP 26920)):
#0  0x00007f5fb9fa8a2c in recv () at /usr/lib/libpthread.so.0
#1  0x00007f5f4a2b8d09 in tvheadend::utilities::TCPSocket::Read(void*, unsigned long, unsigned long) () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#2  0x00007f5f4a29e96a in tvheadend::HTSPConnection::ReadMessage() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#3  0x00007f5f4a2a1235 in tvheadend::HTSPConnection::Process() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#4  0x00007f5f4a27686b in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#5  0x00007f5f4a277de8 in std::thread::_State_impl<std::thread::_Invoker<std::tuple<kodi::tools::CThread::CreateThread(bool)::{lambda(kodi::tools::CThread*, std::promise<bool>)#1}, kodi::tools::CThread*, std::promise<bool> > > >::_M_run() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#6  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f404e4230) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 67 (Thread 0x7f5eabfff640 (LWP 26909)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f124755f in NPT_BsdUdpSocket::Receive(NPT_DataBuffer&, NPT_SocketAddress*) ()
#3  0x000055f9f11bdad5 in PLT_InputDatagramStream::Read(void*, unsigned int, unsigned int*) ()
#4  0x000055f9f120de4a in NPT_BufferedInputStream::ReadLine(char*, unsigned int, unsigned int*, bool) ()
#5  0x000055f9f12188b0 in NPT_BufferedInputStream::ReadLine(NPT_String&, unsigned int, bool) ()
#6  0x000055f9f121702a in NPT_HttpResponse::Parse(NPT_BufferedInputStream&, NPT_HttpResponse*&) ()
#7  0x000055f9f11fbd78 in PLT_SsdpSearchTask::DoRun() ()
#8  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#9  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#10 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#11 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 66 (Thread 0x7f5ec27fc640 (LWP 26905)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba694a6c in  () at /usr/lib/libavahi-common.so.3
#2  0x00007f5fba6945f1 in avahi_simple_poll_run () at /usr/lib/libavahi-common.so.3
#3  0x00007f5fba6947c9 in avahi_simple_poll_iterate () at /usr/lib/libavahi-common.so.3
#4  0x00007f5fba6949fe in avahi_simple_poll_loop () at /usr/lib/libavahi-common.so.3
#5  0x00007f5fba694acb in  () at /usr/lib/libavahi-common.so.3
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 65 (Thread 0x7f5ee4ff9640 (LWP 26901)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0e8917 in PyObject_VectorcallMethod () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1a7f64 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba10ee0f in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#171 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#172 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#173 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#174 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#175 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#176 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#177 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#178 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#179 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#180 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#181 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#182 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#183 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#184 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#185 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#186 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#187 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#188 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#189 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#190 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#191 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#192 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#193 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#194 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#195 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#196 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#197 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#198 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#199 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#200 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#201 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#202 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#203 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#204 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#205 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#206 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#207 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#208 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#209 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#210 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#211 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#212 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#213 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#214 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#215 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#216 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#217 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#218 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#219 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#220 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#221 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#222 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#223 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#224 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#225 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#226 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#227 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#228 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#229 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#230 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#231 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#232 0x000055f9f168d794 in CThread::Action() ()
#233 0x000055f9f1fdfdab in  ()
#234 0x000055f9f1687948 in  ()
#235 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d73d00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#236 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#237 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 64 (Thread 0x7f5e79ffb640 (LWP 26933)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f1223b11 in NPT_HttpConnectionManager::Run() ()
#4  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#5  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#6  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 63 (Thread 0x7f5ee77fe640 (LWP 26896)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#94 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#95 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#96 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#97 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#98 0x000055f9f168d794 in CThread::Action() ()
#99 0x000055f9f1fdfdab in  ()
#100 0x000055f9f1687948 in  ()
#101 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f70c8240) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#102 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#103 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 62 (Thread 0x7f5ec1ffb640 (LWP 26906)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f124755f in NPT_BsdUdpSocket::Receive(NPT_DataBuffer&, NPT_SocketAddress*) ()
#3  0x000055f9f11bdad5 in PLT_InputDatagramStream::Read(void*, unsigned int, unsigned int*) ()
#4  0x000055f9f120de4a in NPT_BufferedInputStream::ReadLine(char*, unsigned int, unsigned int*, bool) ()
#5  0x000055f9f12188b0 in NPT_BufferedInputStream::ReadLine(NPT_String&, unsigned int, bool) ()
#6  0x000055f9f121960c in NPT_HttpRequest::Parse(NPT_BufferedInputStream&, NPT_SocketAddress const*, NPT_HttpRequest*&) ()
#7  0x000055f9f11e814c in PLT_HttpServerSocketTask::Read(NPT_Reference<NPT_BufferedInputStream>&, NPT_HttpRequest*&, NPT_HttpRequestContext*) ()
#8  0x000055f9f11d81fb in PLT_HttpServerSocketTask::DoRun() ()
#9  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#10 0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#11 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#12 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 61 (Thread 0x7f5e8bfff640 (LWP 26916)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f1618b09 in CJobManager::GetNextJob(CJobWorker const*) ()
#3  0x000055f9f1618d1c in CJobWorker::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f6cc40e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 60 (Thread 0x7f5f4b18c640 (LWP 26872)):
#0  0x00007f5fb8fc389c in read () at /usr/lib/libc.so.6
#1  0x00007f5fb8f55c14 in __GI__IO_file_underflow () at /usr/lib/libc.so.6
#2  0x00007f5fb8f56e66 in _IO_default_uflow () at /usr/lib/libc.so.6
#3  0x00007f5fb8f49f2c in _IO_getline_info () at /usr/lib/libc.so.6
#4  0x00007f5fb8f48e8a in fgets () at /usr/lib/libc.so.6
#5  0x000055f9f1c541d7 in CDNSNameCache::Lookup(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) ()
#6  0x000055f9f1e7f9c5 in XFILE::CCurlFile::ParseAndCorrectUrl(CURL&) ()
#7  0x000055f9f1e8b7b0 in XFILE::CCurlFile::Open(CURL const&) ()
#8  0x000055f9f1e91b38 in XFILE::CFile::Open(CURL const&, unsigned int) ()
#9  0x000055f9f1e91e8f in XFILE::CFile::Open(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int) ()
#10 0x000055f9f1e905d4 in XFILE::CFileCache::Open(CURL const&) ()
#11 0x000055f9f1e91d94 in XFILE::CFile::Open(CURL const&, unsigned int) ()
#12 0x000055f9f20169b9 in  ()
#13 0x000055f9f19644c2 in ADDON::CRepository::FetchChecksum(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, int&) ()
#14 0x000055f9f196d58b in ADDON::CRepository::FetchIfChanged(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::vector<std::shared_ptr<ADDON::CAddonInfo>, std::allocator<std::shared_ptr<ADDON::CAddonInfo> > >&, int&) const ()
#15 0x000055f9f196e2e2 in ADDON::CRepositoryUpdateJob::DoWork() ()
#16 0x000055f9f1618cf9 in CJobWorker::Process() ()
#17 0x000055f9f168d794 in CThread::Action() ()
#18 0x000055f9f1fdfdab in  ()
#19 0x000055f9f1687948 in  ()
#20 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f6cc5550) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#21 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#22 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 59 (Thread 0x7f5e7bfff640 (LWP 26931)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f1618b09 in CJobManager::GetNextJob(CJobWorker const*) ()
#3  0x000055f9f1618d1c in CJobWorker::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e84000b60) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 58 (Thread 0x7f5f6cff9640 (LWP 26840)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 57 (Thread 0x7f5f16ffe640 (LWP 26876)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1e8a20f in XFILE::CCurlFile::CReadState::FillBuffer(unsigned int) ()
#2  0x000055f9f1e68703 in XFILE::CCurlFile::CReadState::Connect(unsigned int) ()
#3  0x000055f9f1e8ba25 in XFILE::CCurlFile::Open(CURL const&) ()
#4  0x000055f9f1e8b21d in XFILE::CCurlFile::Service(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) ()
#5  0x000055f9f165f7d2 in CScraperUrl::Get(CScraperUrl::SUrlEntry const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, XFILE::CCurlFile&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#6  0x000055f9f1962f02 in ADDON::CScraper::InternalRun(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CScraperUrl const&, XFILE::CCurlFile&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*) ()
#7  0x000055f9f1971434 in ADDON::CScraper::Run(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CScraperUrl const&, XFILE::CCurlFile&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*) ()
#8  0x000055f9f198650f in ADDON::CScraper::FindMovie(XFILE::CCurlFile&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, bool) ()
#9  0x000055f9f1556059 in CVideoInfoDownloader::InternalFindMovie(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, std::vector<CScraperUrl, std::allocator<CScraperUrl> >&, bool) ()
#10 0x000055f9f1568313 in VIDEO::CVideoInfoScanner::FindVideo(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, std::shared_ptr<ADDON::CScraper> const&, CScraperUrl&, CGUIDialogProgress*) ()
#11 0x000055f9f15575ed in VIDEO::CVideoInfoScanner::RetrieveInfoForMovie(CFileItem*, bool, std::shared_ptr<ADDON::CScraper>&, bool, CScraperUrl*, CGUIDialogProgress*) ()
#12 0x000055f9f1559d50 in VIDEO::CVideoInfoScanner::RetrieveVideoInfo(CFileItemList&, bool, CONTENT_TYPE, bool, CScraperUrl*, bool, CGUIDialogProgress*) ()
#13 0x000055f9f155aef1 in VIDEO::CVideoInfoScanner::DoScan(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#14 0x000055f9f155afbf in VIDEO::CVideoInfoScanner::DoScan(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#15 0x000055f9f154a2bc in VIDEO::CVideoInfoScanner::Process() ()
#16 0x000055f9f149e1a6 in CVideoLibraryScanningJob::Work(CVideoDatabase&) ()
#17 0x000055f9f1484745 in CVideoLibraryJob::DoWork() ()
#18 0x000055f9f1618cf9 in CJobWorker::Process() ()
#19 0x000055f9f168d794 in CThread::Action() ()
#20 0x000055f9f1fdfdab in  ()
#21 0x000055f9f1687948 in  ()
#22 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f895de00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#23 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#24 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 56 (Thread 0x7f5ee67fc640 (LWP 26898)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#96 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#97 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#98 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#99 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#100 0x000055f9f168d794 in CThread::Action() ()
#101 0x000055f9f1fdfdab in  ()
#102 0x000055f9f1687948 in  ()
#103 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d4f1e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#104 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#105 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 55 (Thread 0x7f5efdffb640 (LWP 26892)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2bc00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 54 (Thread 0x7f5e7a7fc640 (LWP 26930)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b351be in PVR::CPVRTimers::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e740544e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 53 (Thread 0x7f5ea8ff9640 (LWP 26915)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x00007f5fba434586 in  () at /usr/lib/libmicrohttpd.so.12
#2  0x00007f5fba434df9 in  () at /usr/lib/libmicrohttpd.so.12
#3  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#4  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 52 (Thread 0x7f5eaaffd640 (LWP 26911)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f11eef1f in PLT_SsdpDeviceAnnounceTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 51 (Thread 0x7f5f6dffb640 (LWP 26838)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 50 (Thread 0x7f5ea9ffb640 (LWP 26913)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1c8615c in JSONRPC::CTCPServer::Process() ()
#2  0x000055f9f168d794 in CThread::Action() ()
#3  0x000055f9f1fdfdab in  ()
#4  0x000055f9f1687948 in  ()
#5  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d6abd0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 49 (Thread 0x7f5efeffd640 (LWP 26890)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d410d0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 48 (Thread 0x7f5ea97fa640 (LWP 26914)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x00007f5fba434586 in  () at /usr/lib/libmicrohttpd.so.12
#2  0x00007f5fba434df9 in  () at /usr/lib/libmicrohttpd.so.12
#3  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#4  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 47 (Thread 0x7f5f0ffff640 (LWP 26881)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c2dd7a in PERIPHERALS::CPeripheralBus::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d29420) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 46 (Thread 0x7f5f0f7fe640 (LWP 26882)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c2dd7a in PERIPHERALS::CPeripheralBus::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d29ef0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 45 (Thread 0x7f5f91b73640 (LWP 26829)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 44 (Thread 0x7f5f91372640 (LWP 26830)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 43 (Thread 0x7f5f14ffa640 (LWP 26880)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x000055f9f131b56b in PERIPHERALS::CPeripheralBusUSB::WaitForUpdate() ()
#2  0x000055f9f131b789 in PERIPHERALS::CPeripheralBusUSB::Process() ()
#3  0x000055f9f168d794 in CThread::Action() ()
#4  0x000055f9f1fdfdab in  ()
#5  0x000055f9f1687948 in  ()
#6  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2bbd0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 42 (Thread 0x7f5eaa7fc640 (LWP 26912)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1c729d1 in SOCKETS::CSocketListener::Listen(int) ()
#2  0x000055f9f1c6df41 in EVENTSERVER::CEventServer::Run() ()
#3  0x000055f9f1c6e1a9 in EVENTSERVER::CEventServer::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d7ead0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 41 (Thread 0x7f5f6d7fa640 (LWP 26839)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 40 (Thread 0x7f5f90b71640 (LWP 26831)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 39 (Thread 0x7f5f6effd640 (LWP 26836)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 38 (Thread 0x7f5ec17fa640 (LWP 26907)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f1244fc7 in NPT_BsdTcpServerSocket::WaitForNewClient(NPT_Socket*&, int, unsigned int) ()
#3  0x000055f9f11d9548 in PLT_HttpListenTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 37 (Thread 0x7f5f92374640 (LWP 26828)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 36 (Thread 0x7f5f84fd0640 (LWP 26833)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 35 (Thread 0x7f5f157fb640 (LWP 26879)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba580d15 in CEC::CCECClient::Process() () at /usr/lib/libcec.so.6
#3  0x00007f5fba5854ae in P8PLATFORM::CThread::ThreadHandler(void*) () at /usr/lib/libcec.so.6
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 34 (Thread 0x7f5f6e7fc640 (LWP 26837)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 33 (Thread 0x7f5f6f7fe640 (LWP 26835)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 32 (Thread 0x7f5ec37fe640 (LWP 26903)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f640) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 31 (Thread 0x7f5fb0bc7640 (LWP 26827)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 30 (Thread 0x7f5e7affd640 (LWP 26929)):
#0  0x00007f5fb9fa903f in pread64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb96c7485 in  () at /usr/lib/libsqlite3.so.0
#2  0x00007f5fb96cb58f in  () at /usr/lib/libsqlite3.so.0
#3  0x00007f5fb96cfe1f in  () at /usr/lib/libsqlite3.so.0
#4  0x00007f5fb9652683 in  () at /usr/lib/libsqlite3.so.0
#5  0x00007f5fb965a6e0 in sqlite3BtreeTableMoveto () at /usr/lib/libsqlite3.so.0
#6  0x00007f5fb970959d in sqlite3VdbeFinishMoveto () at /usr/lib/libsqlite3.so.0
#7  0x00007f5fb96fec7b in sqlite3VdbeExec () at /usr/lib/libsqlite3.so.0
#8  0x00007f5fb9705188 in sqlite3_step () at /usr/lib/libsqlite3.so.0
#9  0x00007f5fb96be1c6 in sqlite3_exec () at /usr/lib/libsqlite3.so.0
#10 0x000055f9f185298c in dbiplus::SqliteDataset::exec(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#11 0x000055f9f1834b6f in CDatabase::ExecuteQuery(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#12 0x000055f9f1835a6b in CDatabase::DeleteValues(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CDatabase::Filter const&) ()
#13 0x000055f9f1b80098 in PVR::CPVREpgDatabase::DeleteEpgTags(int, CDateTime const&) ()
#14 0x000055f9f1b8c09d in PVR::CPVREpg::Update(long, long, int, int, std::shared_ptr<PVR::CPVREpgDatabase> const&, bool) ()
#15 0x000055f9f1b8c89e in PVR::CPVREpgContainer::UpdateEPG(bool) ()
#16 0x000055f9f1b8fa88 in PVR::CPVREpgContainer::Process() ()
#17 0x000055f9f168d794 in CThread::Action() ()
#18 0x000055f9f1fdfdab in  ()
#19 0x000055f9f1687948 in  ()
#20 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e74054510) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#21 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#22 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 29 (Thread 0x7f5f857d1640 (LWP 26832)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 28 (Thread 0x7f5fb32e0640 (LWP 26821)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1321556 in CLirc::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f5edd8a0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 27 (Thread 0x7f5ee5ffb640 (LWP 26899)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#124 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#125 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#126 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#127 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#128 0x000055f9f168d794 in CThread::Action() ()
#129 0x000055f9f1fdfdab in  ()
#130 0x000055f9f1687948 in  ()
#131 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5ce20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#132 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#133 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 26 (Thread 0x7f5fb42e2640 (LWP 26818)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fb89a6f01 in __gthread_cond_wait (__mutex=<optimized out>, __cond=<optimized out>) at /build/gcc/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/gthr-default.h:865
#3  std::__condvar::wait(std::mutex&) (__m=<optimized out>, this=<optimized out>) at /build/gcc/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_mutex.h:155
#4  std::condition_variable::wait(std::unique_lock<std::mutex>&) (this=<optimized out>, __lock=<optimized out>) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/condition_variable.cc:41
#5  0x000055f9f1e2b78e in ANNOUNCEMENT::CAnnouncementManager::Process() ()
#6  0x000055f9f168d794 in CThread::Action() ()
#7  0x000055f9f1fdfdab in  ()
#8  0x000055f9f1687948 in  ()
#9  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f5f2aca0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#10 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#11 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 25 (Thread 0x7f5fb2129640 (LWP 26823)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba39bc39 in pa_threaded_mainloop_wait () at /usr/lib/libpulse.so.0
#3  0x000055f9f1f41d98 in CAESinkPULSE::AddPackets(unsigned char**, unsigned int, unsigned int) ()
#4  0x000055f9f1f511fe in ActiveAE::CActiveAESink::OutputSamples(ActiveAE::CSampleBuffer*) ()
#5  0x000055f9f1f51c90 in ActiveAE::CActiveAESink::StateMachine(int, Actor::Protocol*, Actor::Message*) ()
#6  0x000055f9f1f52a4e in ActiveAE::CActiveAESink::Process() ()
#7  0x000055f9f168d794 in CThread::Action() ()
#8  0x000055f9f1fdfdab in  ()
#9  0x000055f9f1687948 in  ()
#10 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f98000b60) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#11 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#12 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 24 (Thread 0x7f5f6ffff640 (LWP 26834)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 23 (Thread 0x7f5fb3ae1640 (LWP 26820)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba39aae4 in  () at /usr/lib/libpulse.so.0
#2  0x00007f5fba3844b9 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x00007f5fba38e709 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x00007f5fba38e7c1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x00007f5fba39ec9e in  () at /usr/lib/libpulse.so.0
#6  0x00007f5fb8570403 in  () at /usr/lib/pulseaudio/libpulsecommon-15.0.so
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 22 (Thread 0x7f5eff7fe640 (LWP 26889)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#84 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#85 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#86 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#87 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#88 0x000055f9f168d794 in CThread::Action() ()
#89 0x000055f9f1fdfdab in  ()
#90 0x000055f9f1687948 in  ()
#91 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d36b20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#92 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#93 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 21 (Thread 0x7f5efd7fa640 (LWP 26893)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#40 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#41 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#42 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#43 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#44 0x000055f9f168d794 in CThread::Action() ()
#45 0x000055f9f1fdfdab in  ()
#46 0x000055f9f1687948 in  ()
#47 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3c000) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#48 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#49 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 20 (Thread 0x7f5ee57fa640 (LWP 26900)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0cec90 in  () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba0ecf22 in PyEval_RestoreThread () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba1b2eb6 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba1a3961 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1b2a5e in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba10adec in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#167 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#168 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#169 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#170 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#171 0x000055f9f168d794 in CThread::Action() ()
#172 0x000055f9f1fdfdab in  ()
#173 0x000055f9f1687948 in  ()
#174 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f890) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#175 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#176 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 19 (Thread 0x7f5fb42e5ac0 (LWP 26813)):
#0  0x00007f5fb8f9aa95 in clock_nanosleep@GLIBC_2.2.5 () at /usr/lib/libc.so.6
#1  0x00007f5fb8f9fc77 in nanosleep () at /usr/lib/libc.so.6
#2  0x00007f5fb8fcaa99 in usleep () at /usr/lib/libc.so.6
#3  0x000055f9f1fa553e in CGLContextEGL::SwapBuffers() ()
#4  0x000055f9f1fa8a69 in non-virtual thunk to KODI::WINDOWING::X11::CWinSystemX11GLContext::PresentRenderImpl(bool) ()
#5  0x000055f9f12dd6b2 in CRenderSystemGL::PresentRender(bool, bool) ()
#6  0x000055f9f15a82d6 in CGraphicContext::Flip(bool, bool) ()
#7  0x000055f9f19c165b in  ()
#8  0x000055f9f1a4b885 in CXBApplicationEx::Run(CAppParamParser const&) ()
#9  0x000055f9f111007c in main ()

Thread 18 (Thread 0x7f5e7b7fe640 (LWP 26928)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b510f3 in PVR::CPVRGUIInfo::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e74032950) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 17 (Thread 0x7f5f0cff9640 (LWP 26887)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a8f6f in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1193a6 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0e4b09 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba118f15 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10a01f in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0f42aa in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#136 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#137 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#138 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#139 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#140 0x000055f9f168d794 in CThread::Action() ()
#141 0x000055f9f1fdfdab in  ()
#142 0x000055f9f1687948 in  ()
#143 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5bc80) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#144 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#145 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 16 (Thread 0x7f5fb292a640 (LWP 26822)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1f2cfdb in ActiveAE::CActiveAE::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f62feb20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 15 (Thread 0x7f5f48987640 (LWP 26875)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a8f6f in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1193a6 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0e4b09 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba118f15 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10a01f in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ee3e9 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#171 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#172 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#173 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#174 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#175 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#176 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#177 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#178 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#179 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#180 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#181 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#182 0x00007f5fba0ef3c8 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#183 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#184 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#185 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#186 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#187 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#188 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#189 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#190 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#191 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#192 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#193 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#194 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#195 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#196 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#197 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#198 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#199 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#200 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#201 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#202 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#203 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#204 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#205 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#206 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#207 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#208 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#209 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#210 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#211 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#212 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#213 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#214 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#215 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#216 0x000055f9f168d794 in CThread::Action() ()
#217 0x000055f9f1fdfdab in  ()
#218 0x000055f9f1687948 in  ()
#219 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f89325c0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#220 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#221 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 14 (Thread 0x7f5ec0ff9640 (LWP 26908)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f11ca620 in PLT_CtrlPointHouseKeepingTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 13 (Thread 0x7f5ec3fff640 (LWP 26902)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f7414 in _PyObject_FastCallDictTstate () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1065c7 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f814b in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0f31ec in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#18 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#19 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#20 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#21 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#22 0x000055f9f168d794 in CThread::Action() ()
#23 0x000055f9f1fdfdab in  ()
#24 0x000055f9f1687948 in  ()
#25 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d737d0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#26 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#27 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 12 (Thread 0x7f5fb1928640 (LWP 26825)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba39aae4 in  () at /usr/lib/libpulse.so.0
#2  0x00007f5fba3844b9 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x00007f5fba38e709 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x00007f5fba38e7c1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x00007f5fba39ec9e in  () at /usr/lib/libpulse.so.0
#6  0x00007f5fb8570403 in  () at /usr/lib/pulseaudio/libpulsecommon-15.0.so
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 11 (Thread 0x7f5efcff9640 (LWP 26894)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f8173 in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0f31ec in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba1a245d in PyObject_CallFunctionObjArgs () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0fc9a9 in _PyObject_GenericGetAttrWithDict () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba1009ed in  () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe6a5 in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#142 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#143 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#144 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#145 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#146 0x000055f9f168d794 in CThread::Action() ()
#147 0x000055f9f1fdfdab in  ()
#148 0x000055f9f1687948 in  ()
#149 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d27770) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#150 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#151 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 10 (Thread 0x7f5f0d7fa640 (LWP 26939)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b5fe1d in PVR::CPVRGUIProgressHandler::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e84002180) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 9 (Thread 0x7f5e89ffb640 (LWP 26924)):
#0  0x00007f5fb8f9aa95 in clock_nanosleep@GLIBC_2.2.5 () at /usr/lib/libc.so.6
#1  0x00007f5fb8f9fc77 in nanosleep () at /usr/lib/libc.so.6
#2  0x00007f5f0c4238a7 in  () at /usr/lib/kodi/addons/pvr.iptvsimple/pvr.iptvsimple.so.7.6.13
#3  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f40660e80) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 8 (Thread 0x7f5ec2ffd640 (LWP 26904)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#16 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#17 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#18 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#19 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#20 0x000055f9f168d794 in CThread::Action() ()
#21 0x000055f9f1fdfdab in  ()
#22 0x000055f9f1687948 in  ()
#23 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d72ac0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#24 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#25 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 7 (Thread 0x7f5f15ffc640 (LWP 26878)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0cec90 in  () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba0ecf22 in PyEval_RestoreThread () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba1c0f13 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#120 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#121 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#122 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#123 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#124 0x000055f9f168d794 in CThread::Action() ()
#125 0x000055f9f1fdfdab in  ()
#126 0x000055f9f1687948 in  ()
#127 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8979220) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#128 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#129 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 6 (Thread 0x7f5e8affd640 (LWP 26919)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x00007f5f4a26c33e in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#3  0x00007f5f4a27686b in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#4  0x00007f5f4a277de8 in std::thread::_State_impl<std::thread::_Invoker<std::tuple<kodi::tools::CThread::CreateThread(bool)::{lambda(kodi::tools::CThread*, std::promise<bool>)#1}, kodi::tools::CThread*, std::promise<bool> > > >::_M_run() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#5  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f4061a160) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 5 (Thread 0x7f5f0dffb640 (LWP 26885)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#12 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#13 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#14 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#15 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#16 0x000055f9f168d794 in CThread::Action() ()
#17 0x000055f9f1fdfdab in  ()
#18 0x000055f9f1687948 in  ()
#19 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5bbc0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#20 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#21 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 4 (Thread 0x7f5f0effd640 (LWP 26883)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c60984 in PERIPHERALS::CEventScanner::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3e010) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 3 (Thread 0x7f5ee6ffd640 (LWP 26897)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#40 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#41 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#42 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#43 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#44 0x000055f9f168d794 in CThread::Action() ()
#45 0x000055f9f1fdfdab in  ()
#46 0x000055f9f1687948 in  ()
#47 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f860) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#48 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#49 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 2 (Thread 0x7f5eab7fe640 (LWP 26910)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f1244fc7 in NPT_BsdTcpServerSocket::WaitForNewClient(NPT_Socket*&, int, unsigned int) ()
#3  0x000055f9f11d9548 in PLT_HttpListenTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 1 (Thread 0x7f5efe7fc640 (LWP 26891)):
#0  0x00007f5fba0cfb82 in _PyObject_GC_New () at /usr/lib/libpython3.10.so.1.0
#1  0x00007f5fba0fc6c7 in _PyObject_GenericGetAttrWithDict () at /usr/lib/libpython3.10.so.1.0
#2  0x00007f5fba0faf84 in _PyObject_GetAttrId () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba1a7493 in PyFile_WriteObject () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba05b3c5 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba226a78 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fd933 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba05b05d in _PyErr_WriteUnraisableMsg () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0173b4 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f8ed1 in _PyDict_DelItem_KnownHash () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0d3733 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0e3ffb in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1004b5 in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fbfe7 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0d8571 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5f2c03ad16 in  () at /usr/lib/python3.10/lib-dynload/_sqlite3.cpython-310-x86_64-linux-gnu.so
#17 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#171 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#172 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#173 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#174 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#175 0x000055f9f168d794 in CThread::Action() ()
#176 0x000055f9f1fdfdab in  ()
#177 0x000055f9f1687948 in  ()
#178 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3ea10) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#179 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#180 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6
############# END STACK TRACE ###############

################# LOG FILE ##################

2021-12-16 10:31:02.916 T:26813    INFO <general>: -----------------------------------------------------------------------
2021-12-16 10:31:02.916 T:26813    INFO <general>: Starting Kodi (19.3 (19.3.0) Git:20211203-nogitfound). Platform: Linux x86 64-bit
2021-12-16 10:31:02.916 T:26813    INFO <general>: Using Release Kodi x64
2021-12-16 10:31:02.916 T:26813    INFO <general>: Kodi compiled 2021-12-03 by GCC 11.1.0 for Linux x86 64-bit version 5.12.3 (330755)
2021-12-16 10:31:02.916 T:26813    INFO <general>: Running on Arch Linux rolling, kernel: Linux x86 64-bit version 5.15.8-arch1-1
2021-12-16 10:31:02.916 T:26813    INFO <general>: FFmpeg version/source: 4.3.2-Kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: Host CPU: AMD Ryzen 5 2400G with Radeon Vega Graphics    , 8 cores available
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmc/ is mapped to: /usr/share/kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmcbin/ is mapped to: /usr/lib/kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmcbinaddons/ is mapped to: /usr/lib/kodi/addons
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://masterprofile/ is mapped to: /home/bibi/.kodi/userdata
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://envhome/ is mapped to: /home/bibi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://home/ is mapped to: /home/bibi/.kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://temp/ is mapped to: /home/bibi/.kodi/temp
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://logpath/ is mapped to: /home/bibi/.kodi/temp
2021-12-16 10:31:02.916 T:26813    INFO <general>: The executable running is: /usr/lib/kodi/kodi.bin
2021-12-16 10:31:02.916 T:26813    INFO <general>: Local hostname: bibi-server
2021-12-16 10:31:02.916 T:26813    INFO <general>: Log File is located: /home/bibi/.kodi/temp/kodi.log
2021-12-16 10:31:02.916 T:26813    INFO <general>: -----------------------------------------------------------------------
2021-12-16 10:31:02.916 T:26813    INFO <general>: loading settings
2021-12-16 10:31:02.917 T:26813    INFO <general>: special://profile/ is mapped to: special://masterprofile/
2021-12-16 10:31:02.923 T:26813    INFO <general>: No settings file to load (special://xbmc/system/advancedsettings.xml)
2021-12-16 10:31:02.924 T:26813    INFO <general>: Loaded settings file from special://profile/advancedsettings.xml
2021-12-16 10:31:02.924 T:26813    INFO <general>: Contents of special://profile/advancedsettings.xml are...
                                                   <advancedsettings version="1.0">
                                                     <videoextensions>
                                                       <add>.ex1|.part</add>
                                                     </videoextensions>
                                                     <cache>
                                                       <buffermode>0</buffermode>
                                                       <memorysize>1073741824</memorysize>
                                                       <readfactor>30</readfactor>
                                                     </cache>
                                                   </advancedsettings>
                                                   
2021-12-16 10:31:02.924 T:26813    INFO <general>: Default Video Player: VideoPlayer
2021-12-16 10:31:02.924 T:26813    INFO <general>: Default Audio Player: paplayer
2021-12-16 10:31:02.924 T:26813    INFO <general>: Disabled debug logging due to GUI setting. Level 0.
2021-12-16 10:31:02.924 T:26813    INFO <general>: Log level changed to "INFO"
2021-12-16 10:31:02.924 T:26813    INFO <general>: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
2021-12-16 10:31:02.927 T:26813    INFO <general>: creating subdirectories
2021-12-16 10:31:02.927 T:26813    INFO <general>: userdata folder: special://masterprofile/
2021-12-16 10:31:02.927 T:26813    INFO <general>: recording folder: 
2021-12-16 10:31:02.927 T:26813    INFO <general>: screenshots folder: 
2021-12-16 10:31:02.929 T:26813    INFO <general>: Running database version Addons33
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.flac v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.kodi.builtin.aac v1.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.kodi.builtin.wma v1.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.lame v19.1.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.vorbis v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.wav v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: catchuptvandmore.kodi.krypton.beta v0.0.6 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: catchuptvandmore.kodi.krypton.release v0.0.6 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: chamchenko-dev v0.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: context.venom v1.2.0 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.default v1.0.16 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.dreamcast v1.0.10 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.gamecube v1.0.3 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.n64 v1.0.12 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.nds v1.0.11 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.pcfx v1.0.13 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.pcfx.mouse v1.0.14 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.ps.dualshock v1.0.12 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.saturn v1.0.11 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.snes v1.0.15 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.wiimote v1.0.4 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro v19.0.0 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.beetle-psx v0.9.44.33 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.desmume v0.0.1.17 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.flycast v0.1.0.39 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.gambatte v0.5.0.26 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mame2015_libretro_buildbot v1.2020.18339 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mame2016_libretro_buildbot v1.2020.18301 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mednafen_pcfx_libretro_buildbot v1.2021.18807 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mednafen_psx_hw_libretro_buildbot v1.2021.18808 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.melonds v0.9.3.23 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mgba v0.9.2.28 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mupen64plus-nx v2.2.0.22 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.nestopia v1.51.1.21 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.parallel_n64 v2.0.0.19 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.scummvm v2.1.1.20 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.snes9x v1.60.0.27 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.vitaquake3_libretro_buildbot v1.2021.18762 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.yabause v0.9.15.30 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.retroarch v8.167.3 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.adaptive v19.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.ffmpegdirect v1.21.8 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.rtmp v19.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.audioengine v1.1.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.filesystem v1.1.6 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.general v1.0.5 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.gui v5.15.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.main v1.3.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.network v1.0.4 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.tools v1.0.4 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.audiodecoder v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.audioencoder v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.game v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.imagedecoder v2.1.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.inputstream v3.0.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.peripheral v2.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.pvr v7.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.screensaver v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.vfs v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.videocodec v2.0.2 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.visualization v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.resource v1.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.album.universal v3.1.6 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.artists.universal v4.3.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.allmusic.com v3.2.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.fanart.tv v3.6.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.imdb.com v3.2.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.musicbrainz.org v2.2.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.theaudiodb.com v2.0.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.themoviedb.org v3.2.17 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.generic.albums v1.0.14 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.generic.artists v1.0.14 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.local v1.0.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.themoviedb.org v5.2.6 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.themoviedb.org.python v1.5.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org v3.5.13 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org.python v1.4.10 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: peripheral.joystick v19.0.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.audio.listenliveeu v1.2.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.AML v1.0.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.advanced.emulator.launcher v0.10.1-alpha installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.iagl v3.0.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.iptv.merge v0.21.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.retrobiostool v0.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.FranceTVPluzz v1.1.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.GulliReplay v3.0.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.catchuptvandmore v0.2.37~beta02 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.dailymotion_com v2.4.3+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.fantasticc v2.4.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.francetv v2.0.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.freplay v0.6.16 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nasa v3.0.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nbainternational v0.0.1~beta17 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.netflix v1.18.2+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nhklive v4.0.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.plutotv v1.5.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.themoviedb.helper v4.4.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.tubed v1.0.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.tyl0re.arte v1.1.0+matrix.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.vstream v1.6.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.youtube v6.8.18+matrix.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.hts v8.4.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.iptvsimple v7.6.13 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.vdr.vnsi v8.2.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.JUL1EN094 v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.castagnait v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.catchup4kodi v1.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.covenant v0.5 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.emby.kodi v1.0.6 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.exodusredux v0.0.8 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.frenchdj v0.0.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.jsergio v1.0.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.kodi_libretro_buildbot_game_addons v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.kodinerds v7.0.1.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.openmeta v1.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.openscrapers v1.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.sandmann79-py3.plugins v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.slyguy v0.0.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.solbero v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.tva.common v4.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.venom v1.19 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.vstream v0.0.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmc.org v3.2.5 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmcadult v1.0.7 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmchub v4.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.zachmorris v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.zomboided.plugins v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.catchuptvandmore v1.0.12 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.recordlabels.white v0.0.7 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.clear v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.phenominence v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.silver v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.studios.white v0.0.28 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.multi v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.prairie v0.0.5 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.single v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.animated v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.cloud.animated v2.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.default v1.1.9 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.hd.animated v1.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.outline v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.white v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.language.en_gb v2.0.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.language.fr_fr v9.0.49 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.uisounds.kodi v1.0.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.asteroids v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.biogenesis v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.greynetic v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.matrixtrails v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.pingpong v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.pyro v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.stars v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.xbmc.builtin.black v1.0.34 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.xbmc.builtin.dim v1.0.64 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.artistslideshow v3.3.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.cdartmanager v4.2.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.cu.lrclyrics v6.3.9 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.embuary.helper v2.0.8 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.embuary.info v2.0.8 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.extendedinfo v5.6.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.globalsearch v9.0.5 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.image.resource.select v3.0.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.keymap v1.1.4 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.addon.signals v0.0.6+matrix.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.archive_tool v2.0.3 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.arrow v1.0.3.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.autocompletion v2.0.3 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.backports.functools_lru_cache v1.6.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.beautifulsoup v3.2.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.beautifulsoup4 v4.9.3+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.bottle v0.12.18+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.certifi v2020.12.05+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.chardet v4.0.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.codequick v1.0.2+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.dateutil v2.8.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.defusedxml v0.6.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.dropbox v9.4.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.future v0.18.2+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.html5lib v1.0.1+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.htmlement v1.0.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.idna v2.10.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.inputstreamhelper v0.5.8+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.kodi-six v0.1.3.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.kodi65 v1.2.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.metadatautils v1.0.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.metahandler v5.0.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.musicbrainz v0.6.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.mutagen v1.44.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.myconnpy v8.0.18+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.parsedom v2.5.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pil v5.1.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pycryptodome v3.4.3 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pyqrcode v1.2.1+matrix.4 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pytz v2019.3.0+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pyxbmct v1.3.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.requests v2.25.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.routing v0.2.3+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simplecache v2.0.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simpleeval v0.9.10 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simplejson v3.17.0+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.six v1.15.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.slyguy v0.48.6 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.soupsieve v2.1.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.t1mlib v4.0.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.thetvdb v1.0.12 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.tubed.api v1.0.10 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.typing_extensions v3.7.4.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.tzlocal v2.0.0+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.unidecode v1.1.1+matrix.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.urllib3 v1.26.4+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.webencodings v0.5.1+matrix.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.xbmcswift2 v19.0.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.youtube.dl v21.303.0+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.openweathermap.maps v1.0.6 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.screensaver.multi_slideshow v0.1.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.colorpicker v2.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.service v1.1.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.widgets v1.0.22 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skinshortcuts v2.0.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.tubecast v1.4.8+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.xbmcbackup v1.6.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.iptv.manager v0.2.3+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.library.data.provider v0.4.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.smartish.widgets v0.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.bsplayer v0.2.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.opensubtitles v5.1.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.rvm.addic7ed v3.1.8+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.shooter v2.0.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.upnext v1.1.5+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.xbmc.versioncheck v0.5.21+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.aeon.nox.silvo v8.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.arctic.zephyr.mod v1.1.62 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.bello.7 v7.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.confluence v4.7.13 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.estouchy v3.0.6 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.estuary v3.0.5 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: slyguy.dependencies v0.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: slyguy.pluto.tv.provider v0.5.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: superrepo.kodi.jarvis.all v0.7.04 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: vfs.libarchive v2.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: vfs.rar v4.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.projectm v19.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.shadertoy v19.1.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.spectrum v19.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.waveform v19.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.gismeteo v0.5.2+matrix.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.multi v0.0.6 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.openweathermap.extended v5.0.2 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: webinterface.default v19.x-2.4.8 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.addon v19.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.core v0.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.gui v5.15.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.json v12.4.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.metadata v2.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.python v3.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.webinterface v1.0.0 installed
2021-12-16 10:31:03.016 T:26813    INFO <general>: Selected Logind/UPower as PowerSyscall
2021-12-16 10:31:03.037 T:26813   ERROR <general>: DBus error: org.freedesktop.DBus.Error.InvalidArgs - La propriété « OnLowBattery » n’existe pas
2021-12-16 10:31:03.045 T:26822 WARNING <general>: Pulseaudio module module-allow-passthrough not loaded - opening PT devices might fail
2021-12-16 10:31:03.046 T:26822    INFO <general>: Found 1 Lists of Devices
2021-12-16 10:31:03.046 T:26822    INFO <general>: Enumerated PULSE devices:
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 1
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : Default
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : Default
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: Default Output Device (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 2
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : alsa_output.usb-GeneralPlus_USB_Audio_Device-00.analog-stereo
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : USB Audio Device Stéréo analogique
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: Haut-parleurs (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 3
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : alsa_output.pci-0000_0b_00.1.hdmi-surround-extra1
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : Raven/Raven2/Fenghuang HDMI/DP Audio Controller Digital Surround 5.1 (HDMI 2)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: HDMI / DisplayPort 2 (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR, BL, BR, FC, LFE
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26823    INFO <general>: CActiveAESink::OpenSink - initialize sink
2021-12-16 10:31:03.059 T:26823    INFO <general>: PulseAudio: Opened device Default in pcm mode with Buffersize 150 ms Periodsize 50 ms
2021-12-16 10:31:03.063 T:26813    INFO <general>: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts...
2021-12-16 10:31:03.077 T:26813    INFO <general>: Available videomodes (xrandr):
2021-12-16 10:31:03.077 T:26813    INFO <general>: Output 'HDMI-A-0' has 40 modes
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x57 Name:1920x1080 Refresh:60.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x67 Name:1920x1080 Refresh:50.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x68 Name:1920x1080 Refresh:59.940201 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x69 Name:1920x1080 Refresh:30.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6a Name:1920x1080 Refresh:25.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6b Name:1920x1080 Refresh:24.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6c Name:1920x1080 Refresh:29.970100 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6d Name:1920x1080 Refresh:23.976080 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6e Name:1680x1050 Refresh:59.883251 Width:1680 Height:1050
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6f Name:2880x576 Refresh:50.000000 Width:2880 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.355556
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x59 Name:1600x900 Refresh:60.000000 Width:1600 Height:900
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x70 Name:2880x480 Refresh:60.000000 Width:2880 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.296296
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x71 Name:2880x480 Refresh:59.940060 Width:2880 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.296296
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5a Name:1280x1024 Refresh:75.024673 Width:1280 Height:1024
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5b Name:1280x1024 Refresh:60.019741 Width:1280 Height:1024
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x72 Name:1440x900 Refresh:59.901459 Width:1440 Height:900
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x73 Name:1280x800 Refresh:59.909550 Width:1280 Height:800
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5e Name:1152x864 Refresh:75.000000 Width:1152 Height:864
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x74 Name:1280x720 Refresh:60.000000 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x75 Name:1280x720 Refresh:50.000000 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x76 Name:1280x720 Refresh:59.940201 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x77 Name:1440x576 Refresh:50.000000 Width:1440 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.711111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x60 Name:1024x768 Refresh:75.028580 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x78 Name:1024x768 Refresh:70.069359 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x61 Name:1024x768 Refresh:60.003841 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x79 Name:1440x480 Refresh:60.000000 Width:1440 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.592593
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7a Name:1440x480 Refresh:59.940060 Width:1440 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.592593
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7b Name:832x624 Refresh:74.551270 Width:832 Height:624
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7c Name:800x600 Refresh:72.187569 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x62 Name:800x600 Refresh:75.000000 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x63 Name:800x600 Refresh:60.316540 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7d Name:720x576 Refresh:50.000000 Width:720 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7e Name:720x480 Refresh:60.000000 Width:720 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.185185
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7f Name:720x480 Refresh:59.940060 Width:720 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.185185
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x64 Name:640x480 Refresh:75.000000 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x80 Name:640x480 Refresh:72.808800 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x81 Name:640x480 Refresh:66.666672 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x82 Name:640x480 Refresh:60.000000 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x65 Name:640x480 Refresh:59.940479 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x66 Name:720x400 Refresh:70.081657 Width:720 Height:400
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.987654
2021-12-16 10:31:03.077 T:26813    INFO <general>: CApplication::CreateGUI - using the x11 windowing system
2021-12-16 10:31:03.077 T:26813    INFO <general>: Checking resolution 18
2021-12-16 10:31:03.098 T:26813    INFO <general>: DPMS: X11 extension not present, power-saving will not be available
2021-12-16 10:31:03.098 T:26813    INFO <general>: RetroPlayer[PROCESS]: Registering process control for X11
2021-12-16 10:31:03.098 T:26813    INFO <general>: RetroPlayer[RENDER]: Registering renderer factory for OpenGL
2021-12-16 10:31:03.151 T:26813    INFO <general>: Using visual 0x21
2021-12-16 10:31:03.605 T:26813    INFO <general>: VAAPI::Close - closing decoder context
2021-12-16 10:31:03.717 T:26813    INFO <general>: CRenderSystemGL::InitRenderSystem - Version: 4.6 (Core Profile) Mesa 21.3.1, Major: 4, Minor: 6
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_VENDOR = AMD
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_RENDERER = AMD Radeon Vega 11 Graphics (RAVEN, DRM 3.42.0, 5.15.8-arch1-1, LLVM 13.0.0)
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_VERSION = 4.6 (Core Profile) Mesa 21.3.1
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_SHADING_LANGUAGE_VERSION = 4.60
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX = 5242880
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX = 2097152
2021-12-16 10:31:03.718 T:26813    INFO <general>: GL_EXTENSIONS = GL_AMD_conservative_depth GL_AMD_depth_clamp_separate GL_AMD_draw_buffers_blend GL_AMD_framebuffer_multisample_advanced GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_performance_monitor GL_AMD_pinned_memory GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gl_spirv GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_sparse_buffer GL_ARB_spirv_extensions GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_
ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_meminfo GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_demote_to_helper_invocation GL_EXT_depth_bounds_test GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_shader_image_load_formatted GL_EXT_shader_image_load_store GL_EXT_shader_integer_mix GL_EXT_shader_samples_identical GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_mirror_clamp GL_EXT_texture_sRGB GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_decode GL_EXT_texture_shadow_lod GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_EXT_window_rectangles GL_IBM_multimode_draw_arrays GL_INTEL_blackhole_render GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_framebuffer_flip_y GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_NVX_gpu_memory_info GL_NV_alpha_to_coverage_dither_control GL_NV_compute_shader_derivatives GL_NV_conditional_render GL_NV_copy_image GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_shader_atomic_int64 GL_NV_texture_barrier GL_NV_vdpau_interop GL_OES_EGL_image GL_S3_s3tc 
2021-12-16 10:31:03.751 T:26813    INFO <general>: CWinSystemX11::SetFullScreen - calling xrandr
2021-12-16 10:31:03.751 T:26813    INFO <general>: XRANDR: /usr/lib/kodi/kodi-xrandr --screen 0 --output HDMI-A-0 --mode 0x67
2021-12-16 10:31:03.841 T:26813    INFO <general>: GL: Maximum texture width: 16384
2021-12-16 10:31:03.915 T:26821    INFO <general>: Loading special://xbmc/system/Lircmap.xml
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'mceusb'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'XboxDVDDongle'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'Microsoft_Xbox'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'PinnacleSysPCTVRemote'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'anysee'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'iMON-PAD'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'Antec_Veris_RM200'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'MCE_via_iMON'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'TwinHanRemote'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'linux-input-layer'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'mediacenter'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput-32'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput-64'
2021-12-16 10:31:03.956 T:26813    INFO <general>: GL: Enabling VSYNC
2021-12-16 10:31:03.960 T:26813    INFO <general>: load keymapping
2021-12-16 10:31:03.960 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/appcommand.xml
2021-12-16 10:31:03.960 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.SiriRemote.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/gamepad.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/joystick.xml
2021-12-16 10:31:03.962 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/keyboard.xml
2021-12-16 10:31:03.963 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/mouse.xml
2021-12-16 10:31:03.963 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/remote.xml
2021-12-16 10:31:03.964 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/touchscreen.xml
2021-12-16 10:31:03.964 T:26813    INFO <general>: GUI format 1920x1080, Display HDMI-A-0: 1920x1080 @ 50.00Hz
2021-12-16 10:31:03.964 T:26813    INFO <general>: CLangInfo: loading resource.language.fr_fr language information...
2021-12-16 10:31:03.965 T:26813    INFO <general>: global locale set to fr_FR.UTF-8
2021-12-16 10:31:03.965 T:26813    INFO <general>: CLangInfo: loading resource.language.fr_fr language strings...
2021-12-16 10:31:03.974 T:26813 WARNING <general>: CRepository::ParseDirConfiguration: Repository has MD5 hashes enabled - this hash function is broken and will only guard against unintentional data corruption
2021-12-16 10:31:03.974 T:26813 WARNING <general>: Repository add-on superrepo.kodi.jarvis.all uses plain HTTP for add-on downloads in path http://redirect.superrepo.org/v7/addons/ - this is insecure and will make your Kodi installation vulnerable to attacks if enabled!
2021-12-16 10:31:04.068 T:26872    INFO <general>: Running database version Addons33
2021-12-16 10:31:04.069 T:26872    INFO <general>: Running database version ViewModes6
2021-12-16 10:31:04.070 T:26872    INFO <general>: Running database version Textures13
2021-12-16 10:31:04.074 T:26872    INFO <general>: Running database version MyMusic82
2021-12-16 10:31:04.076 T:26872    INFO <general>: Running database version MyVideos119
2021-12-16 10:31:04.077 T:26872    INFO <general>: Running database version TV38
2021-12-16 10:31:04.077 T:26872    INFO <general>: Running database version Epg13
2021-12-16 10:31:04.078 T:26813    INFO <general>: start dvd mediatype detection
2021-12-16 10:31:04.089 T:26813    INFO <general>: Unloaded skin
2021-12-16 10:31:04.090 T:26813    INFO <general>:   load skin from: /home/bibi/.kodi/addons/skin.aeon.nox.silvo/ (version: 8.0.1)
2021-12-16 10:31:04.090 T:26813    INFO <general>:   load fonts for skin...
2021-12-16 10:31:04.092 T:26813    INFO <general>: Loading skin includes from /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9/Includes.xml
2021-12-16 10:31:04.207 T:26813    INFO <general>: Loading fonts from /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9/Font.xml
2021-12-16 10:31:04.267 T:26813    INFO <general>:   load new skin...
2021-12-16 10:31:04.267 T:26813    INFO <general>: Loading custom window XMLs from skin path /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9
2021-12-16 10:31:04.276 T:26813    INFO <general>:   initialize new skin...
2021-12-16 10:31:04.276 T:26813    INFO <general>: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.277 T:26813    INFO <general>: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.277 T:26813    INFO <general>: Loading skin file: custom_1134_PausedOverlay.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.278 T:26813    INFO <general>: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.283 T:26813    INFO <general>: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.285 T:26813    INFO <general>: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.285 T:26813    INFO <general>: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.286 T:26813    INFO <general>: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.287 T:26813    INFO <general>: Loading resource://resource.uisounds.kodi/sounds.xml
2021-12-16 10:31:04.294 T:26813    INFO <general>:   skin loaded...
2021-12-16 10:31:04.294 T:26813    INFO <general>: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
2021-12-16 10:31:04.296 T:26875    INFO <general>: initializing python engine.
2021-12-16 10:31:04.296 T:26813    INFO <general>: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
2021-12-16 10:31:04.353 T:26878    INFO <general>: initializing python engine.
2021-12-16 10:31:04.356 T:26813 WARNING <general>: JSONRPC: Could not parse type "Setting.Details.SettingList"
2021-12-16 10:31:04.356 T:26813    INFO <general>: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting")
2021-12-16 10:31:04.356 T:26813    INFO <general>: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting
2021-12-16 10:31:04.362 T:26813    INFO <general>: JSONRPC v12.4.0: Successfully initialized
2021-12-16 10:31:04.368 T:26813    INFO <general>: AddOnLog: peripheral.joystick: Enabling joystick interface "linux"
2021-12-16 10:31:04.369 T:26813    INFO <general>: Register - new keyboard device registered on application->keyboard: Clavier (0000:0000)
2021-12-16 10:31:04.369 T:26813    INFO <general>: Register - new mouse device registered on application->mouse: Souris (0000:0000)
2021-12-16 10:31:04.369 T:26813    INFO <general>: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
2021-12-16 10:31:04.370 T:26813    INFO <general>: Loaded playercorefactory configuration
2021-12-16 10:31:04.370 T:26813    INFO <general>: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
2021-12-16 10:31:04.370 T:26813    INFO <general>: special://masterprofile/playercorefactory.xml does not exist. Skipping.
2021-12-16 10:31:04.370 T:26813    INFO <general>: removing tempfiles
2021-12-16 10:31:04.370 T:26813    INFO <general>: UpdateLibraries: Starting video library startup scan
2021-12-16 10:31:04.373 T:26885    INFO <general>: initializing python engine.
2021-12-16 10:31:04.376 T:26813    INFO <general>: Skipped 18 duplicate messages..
2021-12-16 10:31:04.376 T:26813    INFO <general>: initialize done
2021-12-16 10:31:04.376 T:26904    INFO <general>: initializing python engine.
2021-12-16 10:31:04.376 T:26813    INFO <general>: Running the application...
2021-12-16 10:31:04.378 T:26813 WARNING <general>: CRepository::ParseDirConfiguration: Repository has MD5 hashes enabled - this hash function is broken and will only guard against unintentional data corruption
2021-12-16 10:31:04.378 T:26813 WARNING <general>: Repository add-on superrepo.kodi.jarvis.all uses plain HTTP for add-on downloads in path http://redirect.superrepo.org/v7/addons/ - this is insecure and will make your Kodi installation vulnerable to attacks if enabled!
2021-12-16 10:31:04.380 T:26813    INFO <general>: starting zeroconf publishing
2021-12-16 10:31:04.380 T:26813    INFO <general>: starting upnp client
2021-12-16 10:31:04.381 T:26813    INFO <general>: starting upnp renderer
2021-12-16 10:31:04.383 T:26912    INFO <general>: ES: Starting UDP Event server on port 9777
2021-12-16 10:31:04.383 T:26912    INFO <general>: UDP: Listening on port 9777 (ipv6 : true)
2021-12-16 10:31:04.383 T:26813   ERROR <general>: JSONRPC Server: Failed to connect to sdpd
2021-12-16 10:31:04.384 T:26813    INFO <general>: JSONRPC Server: Successfully initialized
2021-12-16 10:31:04.384 T:26813    INFO <CWebserver[8085]>: Started
2021-12-16 10:31:04.385 T:26916   ERROR <general>: GetDirectory - Error getting s:live|i:songs/
2021-12-16 10:31:04.457 T:26813    INFO <general>: Skipped 1 duplicate messages..
2021-12-16 10:31:04.457 T:26813    INFO <general>: GL: Maximum texture width: 16384
2021-12-16 10:31:04.475 T:26813    INFO <general>: GL: Enabling VSYNC
2021-12-16 10:31:04.499 T:26872    INFO <general>: AddOnLog: pvr.hts: starting PVR client
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Received permissions:
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   administrator              : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   HTSP streaming             : 1
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   HTSP DVR                   : 1
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Failed/aborted DVR         : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   anonymous HTSP only        : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   global connection limit    : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   DVR connection limit       : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   streaming connection limit : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Available streaming profiles:
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Name: htsp, Comment: HTSP Default Stream Settings
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts: Request async EPG (7 days)
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts: Async updates requested
2021-12-16 10:31:04.506 T:26919    INFO <general>: AddOnLog: pvr.hts: Async updates initialised
2021-12-16 10:31:04.510 T:26876    INFO <general>: VideoInfoScanner: Starting scan ..
2021-12-16 10:31:04.518 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - Create - Creating the PVR IPTV Simple add-on
2021-12-16 10:31:04.520 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/24 heures dans la nature - Au coeur du désert d'Atacama-eea167a1-01ca-4d3b-9236-778c007d096d.mp4', it won't be added to the library.
2021-12-16 10:31:04.521 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Ben Harper & The Innocent Criminals - Jah Work (A Lewis Marnell Tribute)-lc2n58vzhz8.webm', it won't be added to the library.
2021-12-16 10:31:04.522 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Bigflo & Oli - Dommage-8AF-Sm8d8yk.webm', it won't be added to the library.
2021-12-16 10:31:04.522 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Bigflo & Oli - Pour un pote ft. Jean Dujardin-99AS1Rq5dIM.mkv', it won't be added to the library.
2021-12-16 10:31:04.523 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Brassens, une vie de lettres-5bc5d29e-8308-11ea-894c-000d3a23d482.mp4', it won't be added to the library.
2021-12-16 10:31:04.524 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Claudio Capéo - Un homme debout (clip officiel)-Y9GCM9DZUJo.mkv', it won't be added to the library.
2021-12-16 10:31:04.524 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Et le singe inventa la culture-047075-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.525 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Épaves et pollution - Les larmes noires de l’océan-047526-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.526 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Grand Corps Malade - Pocahontas - Clip Officiel-BC7oHfBErr8.webm', it won't be added to the library.
2021-12-16 10:31:04.526 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Jean-Jacques Goldman - On ira (Clip officiel)-flP-hF4O5ZM.mkv', it won't be added to the library.
2021-12-16 10:31:04.527 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadPlayList Playlist Loaded - 4 (ms)
2021-12-16 10:31:04.527 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadPlayList - Loaded 102 channels.
2021-12-16 10:31:04.527 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Jean-Jacques Goldman de l'intérieur-d93951da-227d-428f-8810-bd1d53914763.mp4', it won't be added to the library.
2021-12-16 10:31:04.528 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/L'énigme du Taj Mahal-9a8061b0-d3b7-483a-88c2-40c14b3ffdd0.mp4', it won't be added to the library.
2021-12-16 10:31:04.528 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/La ruée vers l'or-046387-000-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.529 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le cosmos dans tous ses états - Le Big Bang-852fd92a-9373-4d37-9e64-1c11b09e294c.mp4', it won't be added to the library.
2021-12-16 10:31:04.530 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le cosmos dans tous ses états - Les étoiles extrêmes-084cb54a-704b-4379-82af-b3e1931356ac.mp4', it won't be added to the library.
2021-12-16 10:31:04.530 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le Mississippi, indomptable géant-cd2a2049-49a2-485e-b4c9-6bc58eae1427.mp4', it won't be added to the library.
2021-12-16 10:31:04.531 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les fabuleux pouvoirs de l'hypnose-062230-000-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.532 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (1_4)-068406-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.532 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (2_4)-068406-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.533 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (3_4)-068406-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.534 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (4_4)-068406-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.535 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Né en 17 à Leindenstadt   Jean Jacques Goldman wmv-UnSz5YYEc1Y.webm', it won't be added to the library.
2021-12-16 10:31:04.536 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Selah Sue - Raggamuffin (Official Video)--IunmW3wI5Q.mp4', it won't be added to the library.
2021-12-16 10:31:04.537 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Stromae - Alors On Danse (Clip Officiel)-VHoT4N43jK8.mkv', it won't be added to the library.
2021-12-16 10:31:04.538 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Stromae - Formidable (ceci n'est pas une leçon)-S_xH7noaqTA.mkv', it won't be added to the library.
2021-12-16 10:31:04.539 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/The Killing - Saison 1 (9_20)-040374-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.540 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Trois villes à la conquête du monde  - Amsterdam, Londres, New York (1_4)-069809-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.540 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Tsunamis, une menace planétaire-080103-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.542 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/2018-06-23.14.55.108-0.rec/00001.ts', it won't be added to the library.
2021-12-16 10:31:04.549 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) 700 requins - Épisode 1  le mystère de Fakavara  ARVR360  ARTE.MP4', it won't be added to the library.
2021-12-16 10:31:04.550 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) 700 requins - Épisode 2  au cœur de la meute  ARVR360  ARTE.MP4', it won't be added to the library.
2021-12-16 10:31:04.551 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) Arte reportage HD  Expédition Antarctica sur les traces du manchot empereur  Nature vesv.MP4', it won't be added to the library.
2021-12-16 10:31:04.552 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[ DOCUMENTAIRE ] Expédition Antarctica -  Sur les traces de l'Empereur [HD].mp4', it won't be added to the library.
2021-12-16 10:31:04.553 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[MG]-TV|EU|S|Immobi.Blue.Planet.II.S01E04.Big.Blue.HDTV.x264-CREED.mkv', it won't be added to the library.
2021-12-16 10:31:04.554 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2008-Whale.Shark.avi', it won't be added to the library.
2021-12-16 10:31:04.555 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Great.White.Shark,A.Living.Legend.mkv', it won't be added to the library.
2021-12-16 10:31:04.556 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Polar.Bears.and.Grizzlies.avi', it won't be added to the library.
2021-12-16 10:31:04.557 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Snow.Monkies.HDTV.720p.mkv', it won't be added to the library.
2021-12-16 10:31:04.557 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/6 Documentaire Papouasie expedition au coeur d un monde perdu 2016 HDTV 720p - YouTube_720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.558 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/6 Une plongée à Cocos l'île aux requins - Documentaire - YouTube_360p.mp4', it won't be added to the library.
2021-12-16 10:31:04.559 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/700 requins dans la nuit.mp4', it won't be added to the library.
2021-12-16 10:31:04.560 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Abysses, La vie dans les profondeurs extrêmes - Documentaire Animalier.mp4', it won't be added to the library.
2021-12-16 10:31:04.561 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Aventures en terre animale-051052-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.561 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.1of6.Marvelous.Motions.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.562 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.3of6.Fantastic.Feeding.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.563 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.4of6.Devious.Defences.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.564 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.5of6.Puzzling.Partners.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.564 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Des chiens et des hommes  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.565 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire - Ushuaia Nature - Okavango - (8) - La Grande Foret Equatoriale.avi', it won't be added to the library.
2021-12-16 10:31:04.566 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire Les requins de la Grande Barriere Australie -.mp4', it won't be added to the library.
2021-12-16 10:31:04.566 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire nature animalier - Planète Terre 04l11 - Les déserts - BBC 2006. Arte.mpg', it won't be added to the library.
2021-12-16 10:31:04.567 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Ce que Darwin ne savait pas encore (Documentaire Arte) 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.568 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com L’énigme De La Migration Verticale Sous-Marine 720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.569 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 1_4 - Les Gagnants de l'Evolution (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.569 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 3_4 - Techniques de Survie (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.570 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 4_4 - Fin du Jeu (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.571 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/La vie des requins documentaire complet en francais YouTube.mp4', it won't be added to the library.
2021-12-16 10:31:04.572 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Le Monde Mystérieux Des Serpents.mp4', it won't be added to the library.
2021-12-16 10:31:04.572 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Les Larmes Des Crocodiles documentaire complet HD - YouTube_720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.573 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Mexique  les géants des Caraïbes  Mystérieuse planète  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.574 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Quand baleines et tortues nous montrent le chemin-080093-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.575 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Reportage Arte - Evolution - Les Armes De L'evolution - Docu Fr Tvdivx5.11 2P Dodelio.avi', it won't be added to the library.
2021-12-16 10:31:04.575 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Takaya, le loup solitaire  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.576 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/vie_des_chiens_et_chats.mp4', it won't be added to the library.
2021-12-16 10:31:04.576 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadChannelEpgs - Loaded '102' EPG channels.
2021-12-16 10:31:04.577 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/1985_Lakers_vs_Celtics_NBA_Finals_Game_5_Serenity.avi', it won't be added to the library.
2021-12-16 10:31:04.578 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/1987_Lakers_vs_Celtics_NBA_Finals_Game_4_Serenity.avi', it won't be added to the library.
2021-12-16 10:31:04.578 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/19980308.RS.-.Bulls.at.KnT.avi', it won't be added to the library.
2021-12-16 10:31:04.579 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls @ Knicks 1993 ECF Game 5_ Michael Jordan 29_10_14..flv', it won't be added to the library.
2021-12-16 10:31:04.579 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 1 - Michael Jordan 31 points.flv', it won't be added to the library.
2021-12-16 10:31:04.580 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 4 - Michael Jordan 29 points.flv', it won't be added to the library.
2021-12-16 10:31:04.580 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 5 - Michael Jordan 37 points (am.flv', it won't be added to the library.
2021-12-16 10:31:04.581 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 6 - Michael Jordan 21 points.flv', it won't be added to the library.
2021-12-16 10:31:04.581 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 7 - Michael Jordan 42 points.flv', it won't be added to the library.
2021-12-16 10:31:04.582 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks - 1993 playoffs Game 6.flv', it won't be added to the library.
2021-12-16 10:31:04.582 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks 1992 Playoffs Game 3 (1 of 2).flv', it won't be added to the library.
2021-12-16 10:31:04.583 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks 1992 Playoffs Game 3 (2 of 2).flv', it won't be added to the library.
2021-12-16 10:31:04.583 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Chicago Bulls @ New York Knicks _ 1993 Playoffs _ ECF Game 1.flv', it won't be added to the library.
2021-12-16 10:31:04.584 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Chicago Bulls @ New York Knicks _ 1993 Playoffs _ ECF Game 2.flv', it won't be added to the library.
2021-12-16 10:31:04.584 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/fbion.com Intérieur Sport _ Délivrance (Euro Basket 2013) 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.585 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/La_vid_o_du_jour_le_Top_50_des_dunks_NCAA_Basket_USA_-_Les_n.flv', it won't be added to the library.
2021-12-16 10:31:04.585 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Le_cadeau_du_jour_les_20_plus_beaux_dunks_de_l_histoire_des_.flv', it won't be added to the library.
2021-12-16 10:31:04.586 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Le_mix_du_matin_les_plus_beaux_dunks_de_l_histoire_de_YouTub.mp4', it won't be added to the library.
2021-12-16 10:31:04.586 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Michael Jordan 54pts (1993 NBA ECF G4).flv', it won't be added to the library.
2021-12-16 10:31:04.587 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/NBA Playoffs 15.05.2011 West Semifinal Game 7 Grizzlies@Thunder HD by peacemaker.mkv', it won't be added to the library.
2021-12-16 10:31:04.587 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/New York Knicks @ Chicago Bulls _ 1993 Playoffs _ ECF Game 3.flv', it won't be added to the library.
2021-12-16 10:31:04.589 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/1929 -2 La Grande dépression documentaire de William Karel (France, 2009, 52 mn) ARTE 2009-10-28.avi', it won't be added to the library.
2021-12-16 10:31:04.589 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme (5-6)_Arte_2014_10_28_22_45.mp4', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 1l6 - Adam Smith, à l'origine du libre marché (Fr-Canada.2014)_ARTE HD.2014-10-14_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 1l6 - Adam Smith, à l'origine du libre marché -ARTE HD.2014-10-14.mp4', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 2l6 - 'La richesse des nations', nouvel évangile -ARTE HD.2014-10-14.mp4', it won't be added to the library.
2021-12-16 10:31:04.591 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 2l6 - 'la Richesse Des Nations', Nouvel Évangile (Fr-Canada 2014) Arte Hd 2014-10-14 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.591 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 3l6 - Ricardo et Malthus, vous avez dit liberté -ARTE HD.2014-10-21.mp4', it won't be added to the library.
2021-12-16 10:31:04.592 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 4l6 - Et si Marx avait raison -ARTE HD.2014-10-21.mp4', it won't be added to the library.
2021-12-16 10:31:04.592 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 5l6 - Keynes-Hayek, un combat truqué (Fr-Canada.2014)_ARTE HD.2014-10-28_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.593 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 6l6 - Arte_2014_10_28_23_40.mp4', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme 2l6 'La richesse des nations', nouvel _vangile (Fr Canada2014)_ARTE HD2014 10 14_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme.E06.Final.TVRIP.X264.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme_(3-6)_Arte_2014.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.595 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme_(4-6)_Arte_2014.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.596 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Noire finance - 1l2 - La grande pompe à phynances (Fr.2012)_Arte.2012-10-02_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.596 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Noire finance - 2l2 - Le bal des vautours (Fr.2012)_Arte.2012-10-02_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.599 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Amazing Japan (FR) - Le Film [partie 1_2] - [大鳥居 STUDIO](1080p_H.264-AAC).mp4', it won't be added to the library.
2021-12-16 10:31:04.600 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/C'est toujours pas sorcier - Le cycle de l'eau-ccded349-c64d-49a2-85d9-b60f01176919.mp4', it won't be added to the library.
2021-12-16 10:31:04.600 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Docu Canal Tokyo _ 東京(360p_H.264-AAC).mp4', it won't be added to the library.
2021-12-16 10:31:04.601 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/En.Tatanes.A.Manhattan.DOC.FRENCH.PDTV.x264-DEAL.mp4', it won't be added to the library.
2021-12-16 10:31:04.601 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Féerique Islande   La plus grande île volcanique du monde-8nA9GnPwHYQ.mkv', it won't be added to the library.
2021-12-16 10:31:04.602 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/toke.de.tokyo.mp4', it won't be added to the library.
2021-12-16 10:31:04.602 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/x18dtwm_maboul-de-seoul-part1_travel.mp4', it won't be added to the library.
2021-12-16 10:31:04.603 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/x18dtx3_maboul-de-seoul-part2_travel.mp4', it won't be added to the library.
2021-12-16 10:31:04.615 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadEpgEntries - Loaded '5808' EPG entries.
2021-12-16 10:31:04.615 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadEPG - EPG Loaded - 88 (ms)
2021-12-16 10:31:04.616 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: Create Starting separate client update thread...
2021-12-16 10:31:04.616 T:26872    INFO <general>: PVR Manager: Starting
2021-12-16 10:31:04.631 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Albert Einstein , Le génie du 20e Siècle. (documentaire arte)-Ll3mDQx07Yg.mp4', it won't be added to the library.
2021-12-16 10:31:04.632 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Céphalopodes  - le règne des ventouses-087495-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.632 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Cinquante nuances de requins-093637-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.633 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Corleone le parrain des parrains (1_2)-049813-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.634 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Corleone le parrain des parrains (2_2)-049813-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.634 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Dans le bleu de la Méditerranée (Prix du 'meilleur film du Monde Sous-Marin')-8x6KupC83d4.webm', it won't be added to the library.
2021-12-16 10:31:04.635 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Einstein  - De l'enfance rebelle à l'année du miracle, à 26 ans-cc7XSTpTQKs.mp4', it won't be added to the library.
2021-12-16 10:31:04.636 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/En Apnée - Film DOCUMENTAIRE Complet (Plongée)-LIeLwfLJ9BY.mkv', it won't be added to the library.
2021-12-16 10:31:04.636 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/fbion.com La Chine 6000 ans d'Histoire partie 1 - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.637 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/L'ivresse des profondeurs-093654-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.637 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La grande épidémie de myopie _ Demain, tous myopes  _ ARTE-MotIPbNq6-k.mkv', it won't be added to the library.
2021-12-16 10:31:04.638 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La pieuvre géante du Pacifique-086928-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.638 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - Aux origines de l'Europe-041012-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.639 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - L'Asie d'aujourd'hui-041012-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.639 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - L'Europe d'aujourd'hui-041012-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.640 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - Les origines de l'Asie-041012-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.641 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents-046377-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.641 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents-046377-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.642 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les coulisses de l'histoire - La dénazification-090597-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.642 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les mystères du mont La Pérouse-093658-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.643 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les nouveaux secrets de notre hérédité _ ARTE-Mq2Djy7xw0k.mkv', it won't be added to the library.
2021-12-16 10:31:04.643 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les secrets révélés de la Bible-041368-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.644 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Mystérieux trous noirs-082521-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.644 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Nus et culottés - Objectif Caraïbes-3c90d381-24bb-4ec8-87be-a62773e7c827.fhls_v5_os-2218.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.645 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Nus et culottés - Objectif Caraïbes-3c90d381-24bb-4ec8-87be-a62773e7c827.fhls_v5_os-2218.mp4.part-Frag152.part', it won't be added to the library.
2021-12-16 10:31:04.725 T:26925    INFO <general>: PVR Manager: Started
2021-12-16 10:31:04.880 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/(8) Les Grandes Batailles - La Bataille de Stalingrad.mp4', it won't be added to the library.
2021-12-16 10:31:04.880 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/[DOC] - La guerre froide sous-marine - (arte-TV juin 2005 Film DivX Documentaire Reportage Atomique URSS USA mondiale missiles de Cuba).avi', it won't be added to the library.
2021-12-16 10:31:04.881 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/[Docu] Histoire Médiévale - 1631, Massacre À Magdebourg - 2006 Arte - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.881 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/13 Journées dans la vie de Picasso (ARTE - DVDrip) Xvid 175min - Fr - Documental.avi', it won't be added to the library.
2021-12-16 10:31:04.882 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Afghanistan - Pays meurtri par la guerre (1_4)-081554-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.883 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 2l6 (GB.2002)_Histoire.2014-11-14_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.883 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 5l6 (GB.2002)_Histoire.2014-12-06_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.884 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 6l6 (GB.2002)_Histoire.2014-12-13_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.884 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Berlin 1945 - Le journal d'une capitale (1_2)-091182-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.885 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Berlin 1945 - Le journal d'une capitale (2_2)-091182-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.885 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 1l7 - Entre le Tigre et l'Euphrate (GB.2011)_Arte.2012-09-01_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.886 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 3l7 - La conquête arabe (GB.2011)_Arte.2012-09-01_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.887 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 4l7 - L'âge d'or islamique (GB.2011)_Arte.2012-09-08_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.888 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 6l7 - L'ascension de l'empire Ottoman (GB.2011)_Arte.2012-09-15_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.888 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 7l7 - L'Empire ottoman et le monde occidental (GB.2011)_Arte.2012-09-15_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.889 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De L'orient À L'occident - 2l7 - Le Triomphe Du Monothéisme (Gb 2011) Arte 2012-09-01 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.889 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De L'orient À L'occident - 5l7 - Le Creuset Asiatique (Gb 2011) Arte 2012-09-08 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.890 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 1 sur 4 - La fin des Cathares (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.890 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 2 sur 4 - Les larmes de l'Espagne (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.891 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 3 sur 4 - La guerre des idées (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.891 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 4 sur 4 - La fin de l'inquisition (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.892 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - De Nuremberg À Nuremberg -1ère et 2ème Partie - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.892 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Histoire Antique - Les Germains - 1 - Barbares Contre Romains.avi', it won't be added to the library.
2021-12-16 10:31:04.893 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Les Romanov - Gloire et chute des Tsars de Russie (All.2013)_ARTE HD.2013-09-01_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.894 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Secrets d'Histoire - Moi, Charles Quint, Maître du Monde Fr2.2013-09-03.mp4', it won't be added to the library.
2021-12-16 10:31:04.894 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 1Sur4 - Les Celtes primitifs (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.895 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 2Sur4 - Les Goths féroces (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.896 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 3Sur4 - Grecs et Perses (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.896 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les batisseurs d'empires - Grandeur et decadence de Carthage (Planete.08-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.897 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les bâtisseurs d'empires - Rome -1l2- Ambition et conquête (Planète.24-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.897 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les bâtisseurs d'empires - Rome -2l2- Fortune et déclin (Planète.24-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.898 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Les Germains - 1l4 - Barbares Contre Romains - Arte 2009-02-14 Clo2 Adserone.avi', it won't be added to the library.
2021-12-16 10:31:04.898 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Germains - 1l4 - Barbares Contre Romains.avi', it won't be added to the library.
2021-12-16 10:31:04.899 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Les Grandes Inventions De L'antiquité - Ces Machines Venues D'orient (2007).avi', it won't be added to the library.
2021-12-16 10:31:04.900 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 03l13 - La marche de César.avi', it won't be added to the library.
2021-12-16 10:31:04.900 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 04l13 - La forêt de la mort.avi', it won't be added to the library.
2021-12-16 10:31:04.901 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 02-13 - Spartacus.avi', it won't be added to the library.
2021-12-16 10:31:04.901 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et Décadence d' un Empire - 10l13 - Constantin, premier empereur Chretien.avi', it won't be added to the library.
2021-12-16 10:31:04.902 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 01l13 - Rome Contre Les Barbares.avi', it won't be added to the library.
2021-12-16 10:31:04.903 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 03l13 - La marche de César 1_3.avi', it won't be added to the library.
2021-12-16 10:31:04.903 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 05l13 - Comment Claude Est Devenu Britannicus.avi', it won't be added to the library.
2021-12-16 10:31:04.904 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 08l13 - La colère des dieux.avi', it won't be added to the library.
2021-12-16 10:31:04.904 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 09l13 - Aurelien, le sauveur de l' em.avi', it won't be added to the library.
2021-12-16 10:31:04.905 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et Décadence d' un Empire - 12l13 - Le maître du jeu.avi', it won't be added to the library.
2021-12-16 10:31:04.906 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 13l13 - Le dernier empereur.avi', it won't be added to the library.
2021-12-16 10:31:04.906 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire du Vietnam 3 sur 6 - Dien Bien Phu (1953-1954, guerre Indochine, colonisation) Chaine Histoire TVRip XviD par Ca.avi', it won't be added to the library.
2021-12-16 10:31:04.907 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire esclavage - L'esclavage dans l'histoire des Etats-Unis (Toute L'histoire 10-12-2007).avi', it won't be added to the library.
2021-12-16 10:31:04.907 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Les Grandes Batailles - La Bataille De Tannenberg (Chaine Histoire-2000).avi', it won't be added to the library.
2021-12-16 10:31:04.908 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 1 Sur 8 - Le Paysan.avi', it won't be added to the library.
2021-12-16 10:31:04.908 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 2 Sur 8 - Le Moine.avi', it won't be added to the library.
2021-12-16 10:31:04.909 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 3 Sur 8 - La Damoiselle.avi', it won't be added to the library.
2021-12-16 10:31:04.910 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 4 sur 8 - Le Ménestrel.avi', it won't be added to the library.
2021-12-16 10:31:04.910 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 5 Sur 8 - Le Chevalier.avi', it won't be added to the library.
2021-12-16 10:31:04.911 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 6 sur 8 - Le Philosophe.avi', it won't be added to the library.
2021-12-16 10:31:04.911 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 7 Sur 8 - Le Hors La Loi.avi', it won't be added to the library.
2021-12-16 10:31:04.912 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 8 Sur 8 - Le Roi.avi', it won't be added to the library.
2021-12-16 10:31:04.913 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - HITLER - Mengele Le rapport final - Les dossiers secrets du nazisme - [V.P.K].avi', it won't be added to the library.
2021-12-16 10:31:04.913 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - La Chute De Rome - 1l2 Empire Romain L'anarchie Militaire - 2009 - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.914 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - La Chute De Rome - 2l2 La fin de l'empire romain d'occident.avi', it won't be added to the library.
2021-12-16 10:31:04.914 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Les Barbares - Les Vikings.avi', it won't be added to the library.
2021-12-16 10:31:04.915 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire.-.Histoire.Antique.-.Les.Barbares.-.4Sur4.-.Les.Huns.(2007).avi', it won't be added to the library.
2021-12-16 10:31:04.916 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Einsatzgruppen, les Commandos De La Mort-Part 1-Les fosses-De juin à Décembre 1941-Documentaire Infrarouge-France2-16-4-2004.avi', it won't be added to the library.
2021-12-16 10:31:04.916 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com (Documentaire Arte) Hiroshima, la véritable histoire (70 ans plus tard...) 720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.917 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com La Chine 6000 ans d'Histoire partie 1 - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.918 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com Le Secret Des Templiers - Documentaire entier 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.918 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com Le Secret Des Templiers - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.919 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  apogée et agonie  1945-1957  Partie 3  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.919 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  la prolifération des camps - 1934-1945  Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.920 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  les origines - 1917-1933  Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.920 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire medievale - Leonard de Vinci - Dans les secrets de Leonard de Vinci - 2007 Fr 2.avi', it won't be added to the library.
2021-12-16 10:31:04.921 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - La Mort Noire.avi', it won't be added to the library.
2021-12-16 10:31:04.922 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Le Trésor Des Nibelungen Sur Les Traces De Siegfried (2007).avi', it won't be added to the library.
2021-12-16 10:31:04.922 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire médiévale - Les grandes Batailles - 1415 AZINCOURT - 54m.avi', it won't be added to the library.
2021-12-16 10:31:04.923 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Les Grandes Batailles - 1529, Le Siège de Vienne [Arte, 2006].avi', it won't be added to the library.
2021-12-16 10:31:04.924 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Les Normands, Une Dynastie De Conquerants - 2l3 Royaumes De Méditerranée Fr5.2009-04-20.avi', it won't be added to the library.
2021-12-16 10:31:04.924 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Sacré Moyen-Âge - 3 sur 8 - La demoiselle Chaine Histoire TVRip XviD par CaribouProd.avi', it won't be added to the library.
2021-12-16 10:31:04.925 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Hitler, pourquoi sa défaite était annoncée  Les coulisses de l'histoire  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.925 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Hiver 42-43 - L'espoir change de camp (All.2012)_Arte.2012-12-11_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.926 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'Europe, le berceau de l'humanité   ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.927 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 1 Sur 3 - Les Gardiens De L'église (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.927 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 2 Sur 3 - Les Géoles De L'esprit (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.928 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 3 Sur 3 - Le Feu De La Foi (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.929 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La fin du IIIème Reich (La bataille de Berlin).mp4', it won't be added to the library.
2021-12-16 10:31:04.929 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (1of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.930 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (2of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.931 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (3of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.931 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Somme, la guerre secrète des tunnels (BBC.2012)_Histoire.2014-11-02_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.932 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La_face_cachée_1_sur_6_des_monarques_européens_Chaine_Histoire_TVRip_XviD_par_CaribouProd.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.932 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La_face_cachée_2_sur_6_des_Papes_Chaine_Histoire_TVRip_XviD_par_CaribouProd.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.933 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le dernier empire  La fin des Ottomans %231  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.934 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes - Arte - Geopolitique Et Religion - Dvdrip By Batman.avi', it won't be added to the library.
2021-12-16 10:31:04.934 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes Moyen Orient Pivot Geopolotique.avi', it won't be added to the library.
2021-12-16 10:31:04.935 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes Une Planète En Sursis (Documentaire D'Arte) Dvdrip French Divx5.1 By Fritz.avi', it won't be added to the library.
2021-12-16 10:31:04.935 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Droit De Savoir - Spéciale Tsunami TVrip TF1 by dgematt.avi', it won't be added to the library.
2021-12-16 10:31:04.936 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/LES ANNÉES NOIRES DE L'ALGÉRIE 1988 2000-HKUdxXlmsEA.f134.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.937 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les bourreaux de Staline - Katyn, 1940-087406-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.937 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les Complices D'hitler - Donitz Le Successeur (Documentaire).avi', it won't be added to the library.
2021-12-16 10:31:04.938 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France - Henri II (1519-1559).mp4', it won't be added to the library.
2021-12-16 10:31:04.938 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France - Louis XIII (1601-1643).mp4', it won't be added to the library.
2021-12-16 10:31:04.939 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire - 1519-1547-1559 - VALOIS - Henri II ( le Roi Gentilhomme).mkv', it won't be added to the library.
2021-12-16 10:31:04.939 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 01 sur 30 - Clovis-1.mp4', it won't be added to the library.
2021-12-16 10:31:04.940 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 01 sur 30 - Clovis.mp4', it won't be added to the library.
2021-12-16 10:31:04.941 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 02 sur 30 - Dagobe.mp4', it won't be added to the library.
2021-12-16 10:31:04.941 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 03 sur 30 - Charles.Martel_Pepin.mp4', it won't be added to the library.
2021-12-16 10:31:04.942 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 04 sur 30 - Charlemagne.mp4', it won't be added to the library.
2021-12-16 10:31:04.942 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 05 sur 30 - Hugues.Capet.mp4', it won't be added to the library.
2021-12-16 10:31:04.943 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 05 sur 30 - Hugues.mp4', it won't be added to the library.
2021-12-16 10:31:04.944 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siècles d'histoire - 03 - Charles Martel et Pépin le Bref (Fr.2013)_Toute l'histoire.2013-09-11_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.944 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siècles d'histoire - Charles VIII, l'affable (Fr.2013)_Toute l'histoire.2014-10-28_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.945 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.refrains.du.nazisme-.doc.arte.fr.tvrip.xvid-lame.75.min.-.by.GlObuL.Team.avi', it won't be added to the library.
2021-12-16 10:31:04.945 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.01.Clovis,.Premier.Roi.Des.Francs.FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.946 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.12.François.1er,.Le.Grand.Roi,.Le.Roi.De.La.Renaissance.(Part.1).FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.946 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.16.Henri.IV,.Le.Bon.Roi.,Le.Roi.De.Navarre.(Part.1).FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.947 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Mengele, le médecin de la mort (Documentaire).avi', it won't be added to the library.
2021-12-16 10:31:04.948 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Napoléon, la campagne de Russie - 2l2 - La Berezina (Fr.2014)_ARTE HD.2015-01-10_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.948 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Napoléon,_la_campagne_de_Russie_Arte_2015_01_10_20_50_x264.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.949 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Nuit et brouillard - 1955 - Documentaire (A.Resnais) - indexed by peerates.net.avi', it won't be added to the library.
2021-12-16 10:31:04.949 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Paris les grands travaux d'Hausmann.mp4', it won't be added to the library.
2021-12-16 10:31:04.950 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Points de repères - Koursk, la Russie contre-attaque-080944-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.950 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Quand l'histoire fait dates-069117-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.951 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage Arte - 2004-07 - Les Secrets Des Essais Nucleaires Urss Usa 1h25 -Alpha0.avi', it won't be added to the library.
2021-12-16 10:31:04.952 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage La traque des nazis (1-2).mp4', it won't be added to the library.
2021-12-16 10:31:04.952 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage La traque des nazis (2-2).mp4', it won't be added to the library.
2021-12-16 10:31:04.953 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Seconde Guerre Mondiale - Einsatzgruppen, les Commandos de la Mort - Part 2 - Les buchers 1942 a 1945 - Documentaire Infrarouge-France 2-23-4-09.avi', it won't be added to the library.
2021-12-16 10:31:04.954 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Secrets.D'Histoire.44.Elizabeth.II,.Dans.L'Intimité.Du.Règne.FR.DVB-Rikou.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.954 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Staline et les bourreaux de Katyn, 1940  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.955 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Terres indiennes (2008) - 1l5 - Au temps du Mayflower_Arte.2010-02-06_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.956 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (1_14)-039036-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.956 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (2_14)-039036-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.957 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (3_14)-039036-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.957 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (4_14)-039036-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.958 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (5_14)-039036-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.958 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (6_14)-039036-006-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.959 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (7_14)-039036-007-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.959 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (8_14)-039036-008-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.960 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (9_14)-039036-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.961 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (10_14)-039036-010-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.961 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (11_14)-039036-011-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.962 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (12_14)-039036-012-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.962 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (13_14)-039036-013-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.963 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (14_14)-039036-014-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.963 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Une espèce à part (intégrale)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.965 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/musique/IAM, Youssoupha, Kery James... histoire du rap conscient  Saveur Bitume (intégrale)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.966 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Ethiopie  Le toit de l'Afrique  Mystérieuse planète  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.966 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/fbion.com [Documentaire en intégralité] La Voie du Petit Dragon - Trek TV 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.967 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/fbion.com Sur le toit du monde - l'histoire de la première ascension de l'Everest (Documentaire 2018) 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.967 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Jacques Mayol  L'homme dauphin  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.968 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Vivre dans le désert du Sahara  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.972 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Astronomie - L'univers Et Ses Mystères - 4x05 - La Chasse Aux Planètes Annelées.avi', it won't be added to the library.
2021-12-16 10:31:04.973 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Astronomie - L'univers Et Ses Mysteres - 19 - Matiére Noire Et Energie Sombre.avi', it won't be added to the library.
2021-12-16 10:31:04.974 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/bathyscaphe.mp4', it won't be added to the library.
2021-12-16 10:31:04.974 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Concilier l'infiniment grand et l'infiniment petit  Einstein-Hawking Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.975 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/DOC - L'univers Et Ses Mysteres - 14 - Exoplanetes.avi', it won't be added to the library.
2021-12-16 10:31:04.975 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/DOC - L'univers Et Ses Mysteres - 67 - Merveilles -Du Systeme Solaire 04.avi', it won't be added to the library.
2021-12-16 10:31:04.976 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/documentaire - arte - La magie du cosmos - 3l4 - la mécanique quantique.avi', it won't be added to the library.
2021-12-16 10:31:04.976 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire - Arte - Les Héritiers Du Dr Mengele - Cobayes Humains Pendant La Guerre Froide Fr-Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.977 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire - Astronomie - L'univers Et Ses Mystères - 028 - Le Temps Dans Le Cosmos.avi', it won't be added to the library.
2021-12-16 10:31:04.978 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire Astronomie - L'Univers 2011 - Les Limites du Cosmos USA Arte 2010 Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.978 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire Scientifique - Destination Cosmos - 1 Sur 3 - Chasseurs De Planètes.avi', it won't be added to the library.
2021-12-16 10:31:04.979 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_-_Le_pouvoir_caché_des_virus_1280x720.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.979 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_1_sur_3_-_Chasseurs_de_Planètes.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.980 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_2_Sur_3_-_Météorites_Et_Astéroïdes.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.980 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_3_Sur_3_-_Les_Secrets_De_L'Univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.981 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/E = mc² , la formule expliquée par Etienne Klein - Matière à contredire-ZCFG3Jx3tIU.mp4', it won't be added to the library.
2021-12-16 10:31:04.981 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/E_mc_-_Une_biographie_d_une_quation_d_Einstein.mp4', it won't be added to the library.
2021-12-16 10:31:04.982 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Echelle_de_distance_dans_l_univers.mp4', it won't be added to the library.
2021-12-16 10:31:04.982 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Ce que Darwin ne savait pas encore (Documentaire Arte) 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.983 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP02 - De quelle matière est fait notre monde 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.983 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP03- Quel est le secret de la vie 360P(1).mp4', it won't be added to the library.
2021-12-16 10:31:04.984 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP04- Qu'est ce que l'énergie 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.984 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Les Yeux dans l'Univers - Documentaire en français 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.985 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Notre Univers - Documentaire en français 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.985 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Science grand format - Les cathédrales gothiques 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.986 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Il était une fois les gènes (1_2)-078143-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.986 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Il était une fois les gènes (2_2)-078143-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.987 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (1_3)-050724-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.987 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (2_3)-050724-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (3_3)-050724-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers de Stephen Hawking - Au-dela des trous noirs fr.divx', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers Et Ses Mysteres - 4 - Jupiter , La Planete Geante.avi', it won't be added to the library.
2021-12-16 10:31:04.989 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mysteres - 09 - Galaxies.avi', it won't be added to the library.
2021-12-16 10:31:04.989 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mysteres - 41 - Sexe dans l'espace.avi', it won't be added to the library.
2021-12-16 10:31:04.990 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mystères - 040 - La vitesse de la lumière.avi', it won't be added to the library.
2021-12-16 10:31:04.990 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mystères - Galaxies.avi', it won't be added to the library.
2021-12-16 10:31:04.991 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mystères - Les énigmes inexpliquées.avi', it won't be added to the library.
2021-12-16 10:31:04.991 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mystères Des extraterrestres sur notre planète DOC FR.mp4', it won't be added to the library.
2021-12-16 10:31:04.992 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.07.Mercure.et.Venus.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.992 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.08.Saturne.et.ses.anneaux.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.993 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.27.Les.Nebuleuses.720p.x264.avi', it won't be added to the library.
2021-12-16 10:31:04.993 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.29.Les.Objets.Monstrueux.de.l'Univers.720p.x264..avi', it won't be added to the library.
2021-12-16 10:31:04.994 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.42.Une.autre.Terre.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.994 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.54.Science-Fiction.et.fait.scientifique.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.995 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.03.La.fin.de.la.Terre.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.996 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.04.Jupiter,la.planète.géante.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.996 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.10.Vie.et.mort.d'une.étoile.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.997 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.13.A.la.recherche.de.la.Vie.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.997 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.15.Les.trous.cosmiques.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.998 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.34.Les.univers.parallèles.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.998 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.41.Sexe.dans.l'espace.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.999 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L.Expansion.de.L.Univers.est.elle.Infinie.DOC.FRENCH.720p.HDTV.x264-SRiZ.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.999 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La découverte de la relativité générale  Einstein-Hawking Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.000 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La fabuleuse histoire de la science - 1. Qu'est-ce que l'univers.avi', it won't be added to the library.
2021-12-16 10:31:05.000 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La fin de l'univers.avi', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (1_4)-038827-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (2_4)-038827-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (3_4)-038827-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.002 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (4_4)-038827-004-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:05.002 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos - 1l4 - Documentaire-Arte-French.avi', it won't be added to the library.
2021-12-16 10:31:05.003 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos - 4l4 - Univers ou multi-univers (USA.2011)_ARTE HD.2012-11-08_clo2.avi', it won't be added to the library.
2021-12-16 10:31:05.003 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La_gravité_(_gravitation)_HD_720p_-_Nouveau_documentaire_science_complet_en_francais.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:05.004 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Le grand mystère des mathématiques-061655-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.004 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Le jeûne, une nouvelle thérapie -043980-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.005 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les fabuleux pouvoirs de l'hypnose-062230-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.005 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les pouvoirs du cerveau - Notre intelligence dévoilée-057414-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.006 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les_Plus_Gros_Trous_Noirs_de_l'Univers_.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:05.006 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Maîtriser l'énergie des étoiles, la révolution de demain  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.007 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Mystérieux trous noirs (version longue en français)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.007 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Pasteur et Koch  un duel de géants dans le monde des microbes - ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.008 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Qu'est-ce que l'espace   La magie du cosmos Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.008 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Qu'est-ce que le temps   La magie du cosmos Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.009 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (1_5)-050567-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.009 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (2_5)-050567-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.010 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (3_5)-050567-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.010 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (4_5)-050567-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (5_5)-050567-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/sciences_grand_format_jupiter.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Stephen_Hawking_01_-_Dieu_a-t-il_créé_l'univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.012 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Stephen_Hawking_02_-_La_Clé_de_l'univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.012 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/The.Universe.12.Les.Endroits.Les.Plus.Dangereux.De.L'Univers.FR.DVDRip-LuCarD84.[tvu.org.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.013 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Trous_noirs_nouveau_documentaire_science_complet_2013_NEW.mp4', it won't be added to the library.
2021-12-16 10:31:05.013 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Xenius - Microscopes  - rendre visible l'invisible-078162-021-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.155 T:26886    INFO <general>: CPythonInvoker(3, /usr/share/kodi/addons/inputstream.ffmpegdirect/resources/lib/runner.py): script successfully run
2021-12-16 10:31:05.162 T:26885    INFO <general>: [ context.venom ]  service started
2021-12-16 10:31:05.162 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.settings
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.traktManager
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.clearProviders
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.clearBookmark
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.rescrape
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.playFromHere
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.autoPlay
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.sourceSelect
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.findSimilar
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.browseSeries
2021-12-16 10:31:05.166 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.browseEpisodes
2021-12-16 10:31:05.174 T:26886    INFO <general>: Python interpreter stopped
2021-12-16 10:31:05.459 T:26888    INFO <general>: CPythonInvoker(5, /home/bibi/.kodi/addons/plugin.video.catchuptvandmore/service.py): script successfully run
2021-12-16 10:31:05.463 T:26888    INFO <general>: Python interpreter stopped
2021-12-16 10:31:05.775 T:26903    INFO <general>: [service.upnext] UpNextMonitor -> Service started
2021-12-16 10:31:06.131 T:26889    INFO <general>: [plugin.video.netflix (0)] The debug logging is set as DISABLED
2021-12-16 10:31:06.156 T:26891   ERROR <general>: Exception ignored deletion of interned string failed
2021-12-16 10:31:06.156 T:26891   ERROR <general>: :
                                                   
2021-12-16 10:31:06.156 T:26891   ERROR <general>: Traceback (most recent call last):
                                                   
2021-12-16 10:31:06.156 T:26891   ERROR <general>:   File "/usr/lib/python3.10/sqlite3/dbapi2.py", line 83, in register_adapters_and_converters
                                                   
2021-12-16 10:31:06.166 T:26891   ERROR <general>:     
2021-12-16 10:31:06.166 T:26891   ERROR <general>: register_converter("timestamp", convert_timestamp)
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 
                                                   
2021-12-16 10:31:06.166 T:26891   ERROR <general>: KeyError
2021-12-16 10:31:06.166 T:26891   ERROR <general>: : 
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 'timepart_full'
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 
                                                   
############### END LOG FILE ################

############ END Kodi CRASH LOG #############

Last edited by bibinne (2021-12-16 14:34:37)

Offline

#18 2021-12-16 14:37:02

12804
Member
Registered: 2021-12-14
Posts: 2

Re: Problems after update to python 3.10

bibinne wrote:

Downgrading to python 3.10.0-1 is not enough for me,

############## Kodi CRASH LOG ###############

################ SYSTEM INFO ################
 Date: jeu. 16 déc. 2021 10:31:09 AST
 Kodi Options: 
 Arch: x86_64
 Kernel: Linux 5.15.8-arch1-1 #1 SMP PREEMPT Tue, 14 Dec 2021 12:28:02 +0000
 Release: Arch Linux
############## END SYSTEM INFO ##############

############### STACK TRACE #################
=====>  Core file: /home/bibi/core (2021-12-16 10:31:10.252952370 -0400)
        =========================================
[New LWP 26891]
[New LWP 26910]
[New LWP 26897]
[New LWP 26883]
[New LWP 26885]
[New LWP 26919]
[New LWP 26878]
[New LWP 26904]
[New LWP 26924]
[New LWP 26939]
[New LWP 26894]
[New LWP 26825]
[New LWP 26902]
[New LWP 26908]
[New LWP 26875]
[New LWP 26822]
[New LWP 26887]
[New LWP 26928]
[New LWP 26813]
[New LWP 26900]
[New LWP 26893]
[New LWP 26889]
[New LWP 26820]
[New LWP 26834]
[New LWP 26823]
[New LWP 26818]
[New LWP 26899]
[New LWP 26821]
[New LWP 26832]
[New LWP 26929]
[New LWP 26827]
[New LWP 26903]
[New LWP 26835]
[New LWP 26837]
[New LWP 26879]
[New LWP 26833]
[New LWP 26828]
[New LWP 26907]
[New LWP 26836]
[New LWP 26831]
[New LWP 26839]
[New LWP 26912]
[New LWP 26880]
[New LWP 26830]
[New LWP 26829]
[New LWP 26882]
[New LWP 26881]
[New LWP 26914]
[New LWP 26890]
[New LWP 26913]
[New LWP 26838]
[New LWP 26911]
[New LWP 26915]
[New LWP 26930]
[New LWP 26892]
[New LWP 26898]
[New LWP 26876]
[New LWP 26840]
[New LWP 26931]
[New LWP 26872]
[New LWP 26916]
[New LWP 26906]
[New LWP 26896]
[New LWP 26933]
[New LWP 26901]
[New LWP 26905]
[New LWP 26909]
[New LWP 26920]
[New LWP 26895]
[New LWP 26925]
[New LWP 26877]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
Core was generated by `/usr/lib/kodi/kodi.bin'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x00007f5fba0cfb82 in _PyObject_GC_New () from /usr/lib/libpython3.10.so.1.0
[Current thread is 1 (Thread 0x7f5efe7fc640 (LWP 26891))]

Thread 71 (Thread 0x7f5f167fd640 (LWP 26877)):
#0  0x00007f5fb8fca4db in fdatasync () at /usr/lib/libc.so.6
#1  0x00007f5fb96c881a in  () at /usr/lib/libsqlite3.so.0
#2  0x00007f5fb96cbe84 in  () at /usr/lib/libsqlite3.so.0
#3  0x00007f5fb96cf38b in sqlite3PagerCommitPhaseOne () at /usr/lib/libsqlite3.so.0
#4  0x00007f5fb96597b0 in sqlite3BtreeCommitPhaseOne () at /usr/lib/libsqlite3.so.0
#5  0x00007f5fb970adec in sqlite3VdbeHalt () at /usr/lib/libsqlite3.so.0
#6  0x00007f5fb9703c11 in sqlite3VdbeExec () at /usr/lib/libsqlite3.so.0
#7  0x00007f5fb9705188 in sqlite3_step () at /usr/lib/libsqlite3.so.0
#8  0x00007f5fb96be1c6 in sqlite3_exec () at /usr/lib/libsqlite3.so.0
#9  0x000055f9f185298c in dbiplus::SqliteDataset::exec(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#10 0x000055f9f1924af8 in ADDON::CAddonDatabase::SetRepoUpdateData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, ADDON::CAddonDatabase::RepoUpdateData const&) ()
#11 0x000055f9f196e448 in ADDON::CRepositoryUpdateJob::DoWork() ()
#12 0x000055f9f1618cf9 in CJobWorker::Process() ()
#13 0x000055f9f168d794 in CThread::Action() ()
#14 0x000055f9f1fdfdab in  ()
#15 0x000055f9f1687948 in  ()
#16 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f895df10) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#17 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#18 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 70 (Thread 0x7f5e88f34640 (LWP 26925)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c0af34 in PVR::CPVRManager::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f40356790) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 69 (Thread 0x7f5ee7fff640 (LWP 26895)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f8173 in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0e1d23 in PyObject_CallFunction () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba12ec81 in PyImport_Import () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1ad8dd in PyImport_ImportModule () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5f84489c54 in PyInit__decimal () at /usr/lib/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so
#22 0x00007f5fba1c5abd in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#158 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#159 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#160 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#161 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#162 0x000055f9f168d794 in CThread::Action() ()
#163 0x000055f9f1fdfdab in  ()
#164 0x000055f9f1687948 in  ()
#165 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d38420) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#166 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#167 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 68 (Thread 0x7f5e8a7fc640 (LWP 26920)):
#0  0x00007f5fb9fa8a2c in recv () at /usr/lib/libpthread.so.0
#1  0x00007f5f4a2b8d09 in tvheadend::utilities::TCPSocket::Read(void*, unsigned long, unsigned long) () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#2  0x00007f5f4a29e96a in tvheadend::HTSPConnection::ReadMessage() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#3  0x00007f5f4a2a1235 in tvheadend::HTSPConnection::Process() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#4  0x00007f5f4a27686b in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#5  0x00007f5f4a277de8 in std::thread::_State_impl<std::thread::_Invoker<std::tuple<kodi::tools::CThread::CreateThread(bool)::{lambda(kodi::tools::CThread*, std::promise<bool>)#1}, kodi::tools::CThread*, std::promise<bool> > > >::_M_run() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#6  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f404e4230) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 67 (Thread 0x7f5eabfff640 (LWP 26909)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f124755f in NPT_BsdUdpSocket::Receive(NPT_DataBuffer&, NPT_SocketAddress*) ()
#3  0x000055f9f11bdad5 in PLT_InputDatagramStream::Read(void*, unsigned int, unsigned int*) ()
#4  0x000055f9f120de4a in NPT_BufferedInputStream::ReadLine(char*, unsigned int, unsigned int*, bool) ()
#5  0x000055f9f12188b0 in NPT_BufferedInputStream::ReadLine(NPT_String&, unsigned int, bool) ()
#6  0x000055f9f121702a in NPT_HttpResponse::Parse(NPT_BufferedInputStream&, NPT_HttpResponse*&) ()
#7  0x000055f9f11fbd78 in PLT_SsdpSearchTask::DoRun() ()
#8  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#9  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#10 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#11 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 66 (Thread 0x7f5ec27fc640 (LWP 26905)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba694a6c in  () at /usr/lib/libavahi-common.so.3
#2  0x00007f5fba6945f1 in avahi_simple_poll_run () at /usr/lib/libavahi-common.so.3
#3  0x00007f5fba6947c9 in avahi_simple_poll_iterate () at /usr/lib/libavahi-common.so.3
#4  0x00007f5fba6949fe in avahi_simple_poll_loop () at /usr/lib/libavahi-common.so.3
#5  0x00007f5fba694acb in  () at /usr/lib/libavahi-common.so.3
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 65 (Thread 0x7f5ee4ff9640 (LWP 26901)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0e8917 in PyObject_VectorcallMethod () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1a7f64 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba10ee0f in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#171 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#172 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#173 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#174 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#175 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#176 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#177 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#178 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#179 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#180 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#181 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#182 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#183 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#184 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#185 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#186 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#187 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#188 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#189 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#190 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#191 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#192 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#193 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#194 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#195 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#196 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#197 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#198 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#199 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#200 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#201 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#202 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#203 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#204 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#205 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#206 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#207 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#208 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#209 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#210 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#211 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#212 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#213 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#214 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#215 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#216 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#217 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#218 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#219 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#220 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#221 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#222 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#223 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#224 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#225 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#226 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#227 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#228 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#229 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#230 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#231 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#232 0x000055f9f168d794 in CThread::Action() ()
#233 0x000055f9f1fdfdab in  ()
#234 0x000055f9f1687948 in  ()
#235 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d73d00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#236 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#237 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 64 (Thread 0x7f5e79ffb640 (LWP 26933)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f1223b11 in NPT_HttpConnectionManager::Run() ()
#4  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#5  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#6  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 63 (Thread 0x7f5ee77fe640 (LWP 26896)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#94 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#95 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#96 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#97 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#98 0x000055f9f168d794 in CThread::Action() ()
#99 0x000055f9f1fdfdab in  ()
#100 0x000055f9f1687948 in  ()
#101 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f70c8240) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#102 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#103 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 62 (Thread 0x7f5ec1ffb640 (LWP 26906)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f124755f in NPT_BsdUdpSocket::Receive(NPT_DataBuffer&, NPT_SocketAddress*) ()
#3  0x000055f9f11bdad5 in PLT_InputDatagramStream::Read(void*, unsigned int, unsigned int*) ()
#4  0x000055f9f120de4a in NPT_BufferedInputStream::ReadLine(char*, unsigned int, unsigned int*, bool) ()
#5  0x000055f9f12188b0 in NPT_BufferedInputStream::ReadLine(NPT_String&, unsigned int, bool) ()
#6  0x000055f9f121960c in NPT_HttpRequest::Parse(NPT_BufferedInputStream&, NPT_SocketAddress const*, NPT_HttpRequest*&) ()
#7  0x000055f9f11e814c in PLT_HttpServerSocketTask::Read(NPT_Reference<NPT_BufferedInputStream>&, NPT_HttpRequest*&, NPT_HttpRequestContext*) ()
#8  0x000055f9f11d81fb in PLT_HttpServerSocketTask::DoRun() ()
#9  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#10 0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#11 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#12 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 61 (Thread 0x7f5e8bfff640 (LWP 26916)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f1618b09 in CJobManager::GetNextJob(CJobWorker const*) ()
#3  0x000055f9f1618d1c in CJobWorker::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f6cc40e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 60 (Thread 0x7f5f4b18c640 (LWP 26872)):
#0  0x00007f5fb8fc389c in read () at /usr/lib/libc.so.6
#1  0x00007f5fb8f55c14 in __GI__IO_file_underflow () at /usr/lib/libc.so.6
#2  0x00007f5fb8f56e66 in _IO_default_uflow () at /usr/lib/libc.so.6
#3  0x00007f5fb8f49f2c in _IO_getline_info () at /usr/lib/libc.so.6
#4  0x00007f5fb8f48e8a in fgets () at /usr/lib/libc.so.6
#5  0x000055f9f1c541d7 in CDNSNameCache::Lookup(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) ()
#6  0x000055f9f1e7f9c5 in XFILE::CCurlFile::ParseAndCorrectUrl(CURL&) ()
#7  0x000055f9f1e8b7b0 in XFILE::CCurlFile::Open(CURL const&) ()
#8  0x000055f9f1e91b38 in XFILE::CFile::Open(CURL const&, unsigned int) ()
#9  0x000055f9f1e91e8f in XFILE::CFile::Open(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int) ()
#10 0x000055f9f1e905d4 in XFILE::CFileCache::Open(CURL const&) ()
#11 0x000055f9f1e91d94 in XFILE::CFile::Open(CURL const&, unsigned int) ()
#12 0x000055f9f20169b9 in  ()
#13 0x000055f9f19644c2 in ADDON::CRepository::FetchChecksum(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, int&) ()
#14 0x000055f9f196d58b in ADDON::CRepository::FetchIfChanged(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::vector<std::shared_ptr<ADDON::CAddonInfo>, std::allocator<std::shared_ptr<ADDON::CAddonInfo> > >&, int&) const ()
#15 0x000055f9f196e2e2 in ADDON::CRepositoryUpdateJob::DoWork() ()
#16 0x000055f9f1618cf9 in CJobWorker::Process() ()
#17 0x000055f9f168d794 in CThread::Action() ()
#18 0x000055f9f1fdfdab in  ()
#19 0x000055f9f1687948 in  ()
#20 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f6cc5550) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#21 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#22 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 59 (Thread 0x7f5e7bfff640 (LWP 26931)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f1618b09 in CJobManager::GetNextJob(CJobWorker const*) ()
#3  0x000055f9f1618d1c in CJobWorker::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e84000b60) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 58 (Thread 0x7f5f6cff9640 (LWP 26840)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 57 (Thread 0x7f5f16ffe640 (LWP 26876)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1e8a20f in XFILE::CCurlFile::CReadState::FillBuffer(unsigned int) ()
#2  0x000055f9f1e68703 in XFILE::CCurlFile::CReadState::Connect(unsigned int) ()
#3  0x000055f9f1e8ba25 in XFILE::CCurlFile::Open(CURL const&) ()
#4  0x000055f9f1e8b21d in XFILE::CCurlFile::Service(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) ()
#5  0x000055f9f165f7d2 in CScraperUrl::Get(CScraperUrl::SUrlEntry const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, XFILE::CCurlFile&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#6  0x000055f9f1962f02 in ADDON::CScraper::InternalRun(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CScraperUrl const&, XFILE::CCurlFile&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*) ()
#7  0x000055f9f1971434 in ADDON::CScraper::Run(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CScraperUrl const&, XFILE::CCurlFile&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*) ()
#8  0x000055f9f198650f in ADDON::CScraper::FindMovie(XFILE::CCurlFile&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, bool) ()
#9  0x000055f9f1556059 in CVideoInfoDownloader::InternalFindMovie(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, std::vector<CScraperUrl, std::allocator<CScraperUrl> >&, bool) ()
#10 0x000055f9f1568313 in VIDEO::CVideoInfoScanner::FindVideo(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, std::shared_ptr<ADDON::CScraper> const&, CScraperUrl&, CGUIDialogProgress*) ()
#11 0x000055f9f15575ed in VIDEO::CVideoInfoScanner::RetrieveInfoForMovie(CFileItem*, bool, std::shared_ptr<ADDON::CScraper>&, bool, CScraperUrl*, CGUIDialogProgress*) ()
#12 0x000055f9f1559d50 in VIDEO::CVideoInfoScanner::RetrieveVideoInfo(CFileItemList&, bool, CONTENT_TYPE, bool, CScraperUrl*, bool, CGUIDialogProgress*) ()
#13 0x000055f9f155aef1 in VIDEO::CVideoInfoScanner::DoScan(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#14 0x000055f9f155afbf in VIDEO::CVideoInfoScanner::DoScan(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#15 0x000055f9f154a2bc in VIDEO::CVideoInfoScanner::Process() ()
#16 0x000055f9f149e1a6 in CVideoLibraryScanningJob::Work(CVideoDatabase&) ()
#17 0x000055f9f1484745 in CVideoLibraryJob::DoWork() ()
#18 0x000055f9f1618cf9 in CJobWorker::Process() ()
#19 0x000055f9f168d794 in CThread::Action() ()
#20 0x000055f9f1fdfdab in  ()
#21 0x000055f9f1687948 in  ()
#22 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f895de00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#23 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#24 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 56 (Thread 0x7f5ee67fc640 (LWP 26898)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#96 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#97 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#98 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#99 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#100 0x000055f9f168d794 in CThread::Action() ()
#101 0x000055f9f1fdfdab in  ()
#102 0x000055f9f1687948 in  ()
#103 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d4f1e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#104 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#105 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 55 (Thread 0x7f5efdffb640 (LWP 26892)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2bc00) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 54 (Thread 0x7f5e7a7fc640 (LWP 26930)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b351be in PVR::CPVRTimers::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e740544e0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 53 (Thread 0x7f5ea8ff9640 (LWP 26915)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x00007f5fba434586 in  () at /usr/lib/libmicrohttpd.so.12
#2  0x00007f5fba434df9 in  () at /usr/lib/libmicrohttpd.so.12
#3  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#4  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 52 (Thread 0x7f5eaaffd640 (LWP 26911)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f11eef1f in PLT_SsdpDeviceAnnounceTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 51 (Thread 0x7f5f6dffb640 (LWP 26838)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 50 (Thread 0x7f5ea9ffb640 (LWP 26913)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1c8615c in JSONRPC::CTCPServer::Process() ()
#2  0x000055f9f168d794 in CThread::Action() ()
#3  0x000055f9f1fdfdab in  ()
#4  0x000055f9f1687948 in  ()
#5  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d6abd0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 49 (Thread 0x7f5efeffd640 (LWP 26890)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d410d0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 48 (Thread 0x7f5ea97fa640 (LWP 26914)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x00007f5fba434586 in  () at /usr/lib/libmicrohttpd.so.12
#2  0x00007f5fba434df9 in  () at /usr/lib/libmicrohttpd.so.12
#3  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#4  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 47 (Thread 0x7f5f0ffff640 (LWP 26881)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c2dd7a in PERIPHERALS::CPeripheralBus::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d29420) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 46 (Thread 0x7f5f0f7fe640 (LWP 26882)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c2dd7a in PERIPHERALS::CPeripheralBus::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d29ef0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 45 (Thread 0x7f5f91b73640 (LWP 26829)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 44 (Thread 0x7f5f91372640 (LWP 26830)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 43 (Thread 0x7f5f14ffa640 (LWP 26880)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x000055f9f131b56b in PERIPHERALS::CPeripheralBusUSB::WaitForUpdate() ()
#2  0x000055f9f131b789 in PERIPHERALS::CPeripheralBusUSB::Process() ()
#3  0x000055f9f168d794 in CThread::Action() ()
#4  0x000055f9f1fdfdab in  ()
#5  0x000055f9f1687948 in  ()
#6  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2bbd0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 42 (Thread 0x7f5eaa7fc640 (LWP 26912)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1c729d1 in SOCKETS::CSocketListener::Listen(int) ()
#2  0x000055f9f1c6df41 in EVENTSERVER::CEventServer::Run() ()
#3  0x000055f9f1c6e1a9 in EVENTSERVER::CEventServer::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d7ead0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 41 (Thread 0x7f5f6d7fa640 (LWP 26839)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 40 (Thread 0x7f5f90b71640 (LWP 26831)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 39 (Thread 0x7f5f6effd640 (LWP 26836)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 38 (Thread 0x7f5ec17fa640 (LWP 26907)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f1244fc7 in NPT_BsdTcpServerSocket::WaitForNewClient(NPT_Socket*&, int, unsigned int) ()
#3  0x000055f9f11d9548 in PLT_HttpListenTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 37 (Thread 0x7f5f92374640 (LWP 26828)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 36 (Thread 0x7f5f84fd0640 (LWP 26833)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 35 (Thread 0x7f5f157fb640 (LWP 26879)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba580d15 in CEC::CCECClient::Process() () at /usr/lib/libcec.so.6
#3  0x00007f5fba5854ae in P8PLATFORM::CThread::ThreadHandler(void*) () at /usr/lib/libcec.so.6
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 34 (Thread 0x7f5f6e7fc640 (LWP 26837)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 33 (Thread 0x7f5f6f7fe640 (LWP 26835)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 32 (Thread 0x7f5ec37fe640 (LWP 26903)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#14 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#15 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#16 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#17 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#18 0x000055f9f168d794 in CThread::Action() ()
#19 0x000055f9f1fdfdab in  ()
#20 0x000055f9f1687948 in  ()
#21 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f640) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#22 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#23 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 31 (Thread 0x7f5fb0bc7640 (LWP 26827)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 30 (Thread 0x7f5e7affd640 (LWP 26929)):
#0  0x00007f5fb9fa903f in pread64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb96c7485 in  () at /usr/lib/libsqlite3.so.0
#2  0x00007f5fb96cb58f in  () at /usr/lib/libsqlite3.so.0
#3  0x00007f5fb96cfe1f in  () at /usr/lib/libsqlite3.so.0
#4  0x00007f5fb9652683 in  () at /usr/lib/libsqlite3.so.0
#5  0x00007f5fb965a6e0 in sqlite3BtreeTableMoveto () at /usr/lib/libsqlite3.so.0
#6  0x00007f5fb970959d in sqlite3VdbeFinishMoveto () at /usr/lib/libsqlite3.so.0
#7  0x00007f5fb96fec7b in sqlite3VdbeExec () at /usr/lib/libsqlite3.so.0
#8  0x00007f5fb9705188 in sqlite3_step () at /usr/lib/libsqlite3.so.0
#9  0x00007f5fb96be1c6 in sqlite3_exec () at /usr/lib/libsqlite3.so.0
#10 0x000055f9f185298c in dbiplus::SqliteDataset::exec(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#11 0x000055f9f1834b6f in CDatabase::ExecuteQuery(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) ()
#12 0x000055f9f1835a6b in CDatabase::DeleteValues(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, CDatabase::Filter const&) ()
#13 0x000055f9f1b80098 in PVR::CPVREpgDatabase::DeleteEpgTags(int, CDateTime const&) ()
#14 0x000055f9f1b8c09d in PVR::CPVREpg::Update(long, long, int, int, std::shared_ptr<PVR::CPVREpgDatabase> const&, bool) ()
#15 0x000055f9f1b8c89e in PVR::CPVREpgContainer::UpdateEPG(bool) ()
#16 0x000055f9f1b8fa88 in PVR::CPVREpgContainer::Process() ()
#17 0x000055f9f168d794 in CThread::Action() ()
#18 0x000055f9f1fdfdab in  ()
#19 0x000055f9f1687948 in  ()
#20 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e74054510) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#21 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#22 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 29 (Thread 0x7f5f857d1640 (LWP 26832)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 28 (Thread 0x7f5fb32e0640 (LWP 26821)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1321556 in CLirc::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f5edd8a0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 27 (Thread 0x7f5ee5ffb640 (LWP 26899)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#124 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#125 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#126 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#127 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#128 0x000055f9f168d794 in CThread::Action() ()
#129 0x000055f9f1fdfdab in  ()
#130 0x000055f9f1687948 in  ()
#131 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5ce20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#132 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#133 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 26 (Thread 0x7f5fb42e2640 (LWP 26818)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fb89a6f01 in __gthread_cond_wait (__mutex=<optimized out>, __cond=<optimized out>) at /build/gcc/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/gthr-default.h:865
#3  std::__condvar::wait(std::mutex&) (__m=<optimized out>, this=<optimized out>) at /build/gcc/src/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_mutex.h:155
#4  std::condition_variable::wait(std::unique_lock<std::mutex>&) (this=<optimized out>, __lock=<optimized out>) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/condition_variable.cc:41
#5  0x000055f9f1e2b78e in ANNOUNCEMENT::CAnnouncementManager::Process() ()
#6  0x000055f9f168d794 in CThread::Action() ()
#7  0x000055f9f1fdfdab in  ()
#8  0x000055f9f1687948 in  ()
#9  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f5f2aca0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#10 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#11 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 25 (Thread 0x7f5fb2129640 (LWP 26823)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba39bc39 in pa_threaded_mainloop_wait () at /usr/lib/libpulse.so.0
#3  0x000055f9f1f41d98 in CAESinkPULSE::AddPackets(unsigned char**, unsigned int, unsigned int) ()
#4  0x000055f9f1f511fe in ActiveAE::CActiveAESink::OutputSamples(ActiveAE::CSampleBuffer*) ()
#5  0x000055f9f1f51c90 in ActiveAE::CActiveAESink::StateMachine(int, Actor::Protocol*, Actor::Message*) ()
#6  0x000055f9f1f52a4e in ActiveAE::CActiveAESink::Process() ()
#7  0x000055f9f168d794 in CThread::Action() ()
#8  0x000055f9f1fdfdab in  ()
#9  0x000055f9f1687948 in  ()
#10 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f98000b60) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#11 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#12 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 24 (Thread 0x7f5f6ffff640 (LWP 26834)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5270 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5f92555ebc in  () at /usr/lib/dri/radeonsi_dri.so
#3  0x00007f5f9254ead8 in  () at /usr/lib/dri/radeonsi_dri.so
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 23 (Thread 0x7f5fb3ae1640 (LWP 26820)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba39aae4 in  () at /usr/lib/libpulse.so.0
#2  0x00007f5fba3844b9 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x00007f5fba38e709 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x00007f5fba38e7c1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x00007f5fba39ec9e in  () at /usr/lib/libpulse.so.0
#6  0x00007f5fb8570403 in  () at /usr/lib/pulseaudio/libpulsecommon-15.0.so
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 22 (Thread 0x7f5eff7fe640 (LWP 26889)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#84 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#85 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#86 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#87 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#88 0x000055f9f168d794 in CThread::Action() ()
#89 0x000055f9f1fdfdab in  ()
#90 0x000055f9f1687948 in  ()
#91 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d36b20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#92 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#93 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 21 (Thread 0x7f5efd7fa640 (LWP 26893)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#40 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#41 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#42 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#43 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#44 0x000055f9f168d794 in CThread::Action() ()
#45 0x000055f9f1fdfdab in  ()
#46 0x000055f9f1687948 in  ()
#47 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3c000) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#48 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#49 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 20 (Thread 0x7f5ee57fa640 (LWP 26900)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0cec90 in  () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba0ecf22 in PyEval_RestoreThread () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba1b2eb6 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba1a3961 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1b2a5e in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba10adec in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#167 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#168 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#169 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#170 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#171 0x000055f9f168d794 in CThread::Action() ()
#172 0x000055f9f1fdfdab in  ()
#173 0x000055f9f1687948 in  ()
#174 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f890) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#175 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#176 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 19 (Thread 0x7f5fb42e5ac0 (LWP 26813)):
#0  0x00007f5fb8f9aa95 in clock_nanosleep@GLIBC_2.2.5 () at /usr/lib/libc.so.6
#1  0x00007f5fb8f9fc77 in nanosleep () at /usr/lib/libc.so.6
#2  0x00007f5fb8fcaa99 in usleep () at /usr/lib/libc.so.6
#3  0x000055f9f1fa553e in CGLContextEGL::SwapBuffers() ()
#4  0x000055f9f1fa8a69 in non-virtual thunk to KODI::WINDOWING::X11::CWinSystemX11GLContext::PresentRenderImpl(bool) ()
#5  0x000055f9f12dd6b2 in CRenderSystemGL::PresentRender(bool, bool) ()
#6  0x000055f9f15a82d6 in CGraphicContext::Flip(bool, bool) ()
#7  0x000055f9f19c165b in  ()
#8  0x000055f9f1a4b885 in CXBApplicationEx::Run(CAppParamParser const&) ()
#9  0x000055f9f111007c in main ()

Thread 18 (Thread 0x7f5e7b7fe640 (LWP 26928)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b510f3 in PVR::CPVRGUIInfo::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e74032950) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 17 (Thread 0x7f5f0cff9640 (LWP 26887)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a8f6f in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1193a6 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0e4b09 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba118f15 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10a01f in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0f42aa in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#136 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#137 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#138 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#139 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#140 0x000055f9f168d794 in CThread::Action() ()
#141 0x000055f9f1fdfdab in  ()
#142 0x000055f9f1687948 in  ()
#143 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5bc80) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#144 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#145 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 16 (Thread 0x7f5fb292a640 (LWP 26822)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1f2cfdb in ActiveAE::CActiveAE::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f62feb20) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 15 (Thread 0x7f5f48987640 (LWP 26875)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1a8f6f in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba1193a6 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0e4b09 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba118f15 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10a01f in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ee3e9 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#171 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#172 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#173 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#174 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#175 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#176 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#177 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#178 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#179 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#180 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#181 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#182 0x00007f5fba0ef3c8 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#183 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#184 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#185 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#186 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#187 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#188 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#189 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#190 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#191 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#192 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#193 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#194 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#195 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#196 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#197 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#198 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#199 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#200 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#201 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#202 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#203 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#204 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#205 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#206 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#207 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#208 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#209 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#210 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#211 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#212 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#213 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#214 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#215 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#216 0x000055f9f168d794 in CThread::Action() ()
#217 0x000055f9f1fdfdab in  ()
#218 0x000055f9f1687948 in  ()
#219 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f89325c0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#220 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#221 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 14 (Thread 0x7f5ec0ff9640 (LWP 26908)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x000055f9f124b7f6 in NPT_PosixSharedVariable::WaitUntilEquals(int, int) ()
#3  0x000055f9f11ca620 in PLT_CtrlPointHouseKeepingTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 13 (Thread 0x7f5ec3fff640 (LWP 26902)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f7414 in _PyObject_FastCallDictTstate () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1065c7 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f814b in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0f31ec in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#18 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#19 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#20 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#21 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#22 0x000055f9f168d794 in CThread::Action() ()
#23 0x000055f9f1fdfdab in  ()
#24 0x000055f9f1687948 in  ()
#25 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d737d0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#26 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#27 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 12 (Thread 0x7f5fb1928640 (LWP 26825)):
#0  0x00007f5fb8fc7b2f in poll () at /usr/lib/libc.so.6
#1  0x00007f5fba39aae4 in  () at /usr/lib/libpulse.so.0
#2  0x00007f5fba3844b9 in pa_mainloop_poll () at /usr/lib/libpulse.so.0
#3  0x00007f5fba38e709 in pa_mainloop_iterate () at /usr/lib/libpulse.so.0
#4  0x00007f5fba38e7c1 in pa_mainloop_run () at /usr/lib/libpulse.so.0
#5  0x00007f5fba39ec9e in  () at /usr/lib/libpulse.so.0
#6  0x00007f5fb8570403 in  () at /usr/lib/pulseaudio/libpulsecommon-15.0.so
#7  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#8  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 11 (Thread 0x7f5efcff9640 (LWP 26894)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0f8173 in _PyObject_MakeTpCall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0f31ec in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba1a245d in PyObject_CallFunctionObjArgs () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0fc9a9 in _PyObject_GenericGetAttrWithDict () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba1009ed in  () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe6a5 in  () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#142 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#143 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#144 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#145 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#146 0x000055f9f168d794 in CThread::Action() ()
#147 0x000055f9f1fdfdab in  ()
#148 0x000055f9f1687948 in  ()
#149 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d27770) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#150 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#151 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 10 (Thread 0x7f5f0d7fa640 (LWP 26939)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1b5fe1d in PVR::CPVRGUIProgressHandler::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5e84002180) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 9 (Thread 0x7f5e89ffb640 (LWP 26924)):
#0  0x00007f5fb8f9aa95 in clock_nanosleep@GLIBC_2.2.5 () at /usr/lib/libc.so.6
#1  0x00007f5fb8f9fc77 in nanosleep () at /usr/lib/libc.so.6
#2  0x00007f5f0c4238a7 in  () at /usr/lib/kodi/addons/pvr.iptvsimple/pvr.iptvsimple.so.7.6.13
#3  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f40660e80) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#4  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#5  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 8 (Thread 0x7f5ec2ffd640 (LWP 26904)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#16 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#17 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#18 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#19 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#20 0x000055f9f168d794 in CThread::Action() ()
#21 0x000055f9f1fdfdab in  ()
#22 0x000055f9f1687948 in  ()
#23 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d72ac0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#24 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#25 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 7 (Thread 0x7f5f15ffc640 (LWP 26878)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5574 in pthread_cond_timedwait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0cec90 in  () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba0ecf22 in PyEval_RestoreThread () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba1c0f13 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba109920 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba130418 in  () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fdede in  () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba10a333 in PyObject_Call () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba10ee52 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#120 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#121 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#122 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#123 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#124 0x000055f9f168d794 in CThread::Action() ()
#125 0x000055f9f1fdfdab in  ()
#126 0x000055f9f1687948 in  ()
#127 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8979220) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#128 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#129 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 6 (Thread 0x7f5e8affd640 (LWP 26919)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x00007f5f4a26c33e in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#3  0x00007f5f4a27686b in  () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#4  0x00007f5f4a277de8 in std::thread::_State_impl<std::thread::_Invoker<std::tuple<kodi::tools::CThread::CreateThread(bool)::{lambda(kodi::tools::CThread*, std::promise<bool>)#1}, kodi::tools::CThread*, std::promise<bool> > > >::_M_run() () at /usr/lib/kodi/addons/pvr.hts/pvr.hts.so.8.4.0
#5  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x7f5f4061a160) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 5 (Thread 0x7f5f0dffb640 (LWP 26885)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f12c8747 in XBMCAddon::xbmc::Monitor::waitForAbort(double) ()
#3  0x000055f9f128fbcd in  ()
#4  0x00007f5fba0ff075 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#12 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#13 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#14 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#15 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#16 0x000055f9f168d794 in CThread::Action() ()
#17 0x000055f9f1fdfdab in  ()
#18 0x000055f9f1687948 in  ()
#19 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d5bbc0) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#20 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#21 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 4 (Thread 0x7f5f0effd640 (LWP 26883)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa5842 in pthread_cond_clockwait () at /usr/lib/libpthread.so.0
#2  0x000055f9f11a0245 in  ()
#3  0x000055f9f1c60984 in PERIPHERALS::CEventScanner::Process() ()
#4  0x000055f9f168d794 in CThread::Action() ()
#5  0x000055f9f1fdfdab in  ()
#6  0x000055f9f1687948 in  ()
#7  0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3e010) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#8  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#9  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 3 (Thread 0x7f5ee6ffd640 (LWP 26897)):
#0  0x00007f5fb9fab8ca in __futex_abstimed_wait_common64 () at /usr/lib/libpthread.so.0
#1  0x00007f5fb9fa7ae8 in __new_sem_wait_slow64.constprop.0 () at /usr/lib/libpthread.so.0
#2  0x00007f5fba0ce788 in PyThread_acquire_lock () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba02e28d in  () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba111776 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba0fbc45 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba109b25 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f07fc in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#17 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#40 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#41 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#42 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#43 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#44 0x000055f9f168d794 in CThread::Action() ()
#45 0x000055f9f1fdfdab in  ()
#46 0x000055f9f1687948 in  ()
#47 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d2f860) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#48 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#49 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 2 (Thread 0x7f5eab7fe640 (LWP 26910)):
#0  0x00007f5fb8fca201 in select () at /usr/lib/libc.so.6
#1  0x000055f9f1242741 in NPT_BsdSocketFd::WaitForCondition(bool, bool, bool, int) ()
#2  0x000055f9f1244fc7 in NPT_BsdTcpServerSocket::WaitForNewClient(NPT_Socket*&, int, unsigned int) ()
#3  0x000055f9f11d9548 in PLT_HttpListenTask::DoRun() ()
#4  0x000055f9f11f5429 in PLT_ThreadTask::Run() ()
#5  0x000055f9f124edde in NPT_PosixThread::EntryPoint(void*) ()
#6  0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#7  0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6

Thread 1 (Thread 0x7f5efe7fc640 (LWP 26891)):
#0  0x00007f5fba0cfb82 in _PyObject_GC_New () at /usr/lib/libpython3.10.so.1.0
#1  0x00007f5fba0fc6c7 in _PyObject_GenericGetAttrWithDict () at /usr/lib/libpython3.10.so.1.0
#2  0x00007f5fba0faf84 in _PyObject_GetAttrId () at /usr/lib/libpython3.10.so.1.0
#3  0x00007f5fba1a7493 in PyFile_WriteObject () at /usr/lib/libpython3.10.so.1.0
#4  0x00007f5fba05b3c5 in  () at /usr/lib/libpython3.10.so.1.0
#5  0x00007f5fba226a78 in  () at /usr/lib/libpython3.10.so.1.0
#6  0x00007f5fba0fd933 in  () at /usr/lib/libpython3.10.so.1.0
#7  0x00007f5fba1a38f8 in  () at /usr/lib/libpython3.10.so.1.0
#8  0x00007f5fba05b05d in _PyErr_WriteUnraisableMsg () at /usr/lib/libpython3.10.so.1.0
#9  0x00007f5fba0173b4 in  () at /usr/lib/libpython3.10.so.1.0
#10 0x00007f5fba0f8ed1 in _PyDict_DelItem_KnownHash () at /usr/lib/libpython3.10.so.1.0
#11 0x00007f5fba0d3733 in  () at /usr/lib/libpython3.10.so.1.0
#12 0x00007f5fba0e3ffb in  () at /usr/lib/libpython3.10.so.1.0
#13 0x00007f5fba1004b5 in  () at /usr/lib/libpython3.10.so.1.0
#14 0x00007f5fba0fbfe7 in  () at /usr/lib/libpython3.10.so.1.0
#15 0x00007f5fba0d8571 in  () at /usr/lib/libpython3.10.so.1.0
#16 0x00007f5f2c03ad16 in  () at /usr/lib/python3.10/lib-dynload/_sqlite3.cpython-310-x86_64-linux-gnu.so
#17 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#18 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#19 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#20 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#21 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#22 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#23 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#24 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#25 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#26 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#27 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#28 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#29 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#30 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#31 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#32 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#33 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#34 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#35 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#36 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#37 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#38 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#39 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#40 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#41 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#42 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#43 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#44 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#45 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#46 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#47 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#48 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#49 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#50 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#51 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#52 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#53 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#54 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#55 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#56 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#57 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#58 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#59 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#60 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#61 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#62 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#63 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#64 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#65 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#66 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#67 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#68 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#69 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#70 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#71 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#72 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#73 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#74 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#75 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#76 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#77 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#78 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#79 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#80 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#81 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#82 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#83 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#84 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#85 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#86 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#87 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#88 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#89 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#90 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#91 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#92 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#93 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#94 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#95 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#96 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#97 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#98 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#99 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#100 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#101 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#102 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#103 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#104 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#105 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#106 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#107 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#108 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#109 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#110 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#111 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#112 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#113 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#114 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#115 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#116 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#117 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#118 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#119 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#120 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#121 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#122 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#123 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#124 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#125 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#126 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#127 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#128 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#129 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#130 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#131 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#132 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#133 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#134 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#135 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#136 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#137 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#138 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#139 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#140 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#141 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#142 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#143 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#144 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#145 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#146 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#147 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#148 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#149 0x00007f5fba1a7e2d in  () at /usr/lib/libpython3.10.so.1.0
#150 0x00007f5fba0fe58c in  () at /usr/lib/libpython3.10.so.1.0
#151 0x00007f5fba0f40ed in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#152 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#153 0x00007f5fba0f2f3f in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#154 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#155 0x00007f5fba0ee667 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#156 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#157 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#158 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#159 0x00007f5fba0ee346 in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#160 0x00007f5fba0fe388 in _PyFunction_Vectorcall () at /usr/lib/libpython3.10.so.1.0
#161 0x00007f5fba0fdad4 in  () at /usr/lib/libpython3.10.so.1.0
#162 0x00007f5fba10fefb in _PyObject_CallMethodIdObjArgs () at /usr/lib/libpython3.10.so.1.0
#163 0x00007f5fba10e940 in PyImport_ImportModuleLevelObject () at /usr/lib/libpython3.10.so.1.0
#164 0x00007f5fba0f118c in _PyEval_EvalFrameDefault () at /usr/lib/libpython3.10.so.1.0
#165 0x00007f5fba0ecf82 in  () at /usr/lib/libpython3.10.so.1.0
#166 0x00007f5fba1a0920 in PyEval_EvalCode () at /usr/lib/libpython3.10.so.1.0
#167 0x00007f5fba1b0c44 in  () at /usr/lib/libpython3.10.so.1.0
#168 0x00007f5fba1acc2b in  () at /usr/lib/libpython3.10.so.1.0
#169 0x00007f5fba04fdc7 in  () at /usr/lib/libpython3.10.so.1.0
#170 0x00007f5fba0cd406 in PyRun_FileExFlags () at /usr/lib/libpython3.10.so.1.0
#171 0x000055f9f1291c94 in CPythonInvoker::executeScript(_IO_FILE*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, _object*) ()
#172 0x000055f9f12a399a in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::allocator<std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > > > const&) ()
#173 0x000055f9f12a4d23 in CPythonInvoker::execute(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) ()
#174 0x000055f9f1ded863 in CLanguageInvokerThread::Process() ()
#175 0x000055f9f168d794 in CThread::Action() ()
#176 0x000055f9f1fdfdab in  ()
#177 0x000055f9f1687948 in  ()
#178 0x00007f5fb89ad3c4 in std::execute_native_thread_routine(void*) (__p=0x55f9f8d3ea10) at /build/gcc/src/gcc/libstdc++-v3/src/c++11/thread.cc:82
#179 0x00007f5fb9f9f259 in start_thread () at /usr/lib/libpthread.so.0
#180 0x00007f5fb8fd25e3 in clone () at /usr/lib/libc.so.6
############# END STACK TRACE ###############

################# LOG FILE ##################

2021-12-16 10:31:02.916 T:26813    INFO <general>: -----------------------------------------------------------------------
2021-12-16 10:31:02.916 T:26813    INFO <general>: Starting Kodi (19.3 (19.3.0) Git:20211203-nogitfound). Platform: Linux x86 64-bit
2021-12-16 10:31:02.916 T:26813    INFO <general>: Using Release Kodi x64
2021-12-16 10:31:02.916 T:26813    INFO <general>: Kodi compiled 2021-12-03 by GCC 11.1.0 for Linux x86 64-bit version 5.12.3 (330755)
2021-12-16 10:31:02.916 T:26813    INFO <general>: Running on Arch Linux rolling, kernel: Linux x86 64-bit version 5.15.8-arch1-1
2021-12-16 10:31:02.916 T:26813    INFO <general>: FFmpeg version/source: 4.3.2-Kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: Host CPU: AMD Ryzen 5 2400G with Radeon Vega Graphics    , 8 cores available
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmc/ is mapped to: /usr/share/kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmcbin/ is mapped to: /usr/lib/kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://xbmcbinaddons/ is mapped to: /usr/lib/kodi/addons
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://masterprofile/ is mapped to: /home/bibi/.kodi/userdata
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://envhome/ is mapped to: /home/bibi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://home/ is mapped to: /home/bibi/.kodi
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://temp/ is mapped to: /home/bibi/.kodi/temp
2021-12-16 10:31:02.916 T:26813    INFO <general>: special://logpath/ is mapped to: /home/bibi/.kodi/temp
2021-12-16 10:31:02.916 T:26813    INFO <general>: The executable running is: /usr/lib/kodi/kodi.bin
2021-12-16 10:31:02.916 T:26813    INFO <general>: Local hostname: bibi-server
2021-12-16 10:31:02.916 T:26813    INFO <general>: Log File is located: /home/bibi/.kodi/temp/kodi.log
2021-12-16 10:31:02.916 T:26813    INFO <general>: -----------------------------------------------------------------------
2021-12-16 10:31:02.916 T:26813    INFO <general>: loading settings
2021-12-16 10:31:02.917 T:26813    INFO <general>: special://profile/ is mapped to: special://masterprofile/
2021-12-16 10:31:02.923 T:26813    INFO <general>: No settings file to load (special://xbmc/system/advancedsettings.xml)
2021-12-16 10:31:02.924 T:26813    INFO <general>: Loaded settings file from special://profile/advancedsettings.xml
2021-12-16 10:31:02.924 T:26813    INFO <general>: Contents of special://profile/advancedsettings.xml are...
                                                   <advancedsettings version="1.0">
                                                     <videoextensions>
                                                       <add>.ex1|.part</add>
                                                     </videoextensions>
                                                     <cache>
                                                       <buffermode>0</buffermode>
                                                       <memorysize>1073741824</memorysize>
                                                       <readfactor>30</readfactor>
                                                     </cache>
                                                   </advancedsettings>
                                                   
2021-12-16 10:31:02.924 T:26813    INFO <general>: Default Video Player: VideoPlayer
2021-12-16 10:31:02.924 T:26813    INFO <general>: Default Audio Player: paplayer
2021-12-16 10:31:02.924 T:26813    INFO <general>: Disabled debug logging due to GUI setting. Level 0.
2021-12-16 10:31:02.924 T:26813    INFO <general>: Log level changed to "INFO"
2021-12-16 10:31:02.924 T:26813    INFO <general>: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
2021-12-16 10:31:02.927 T:26813    INFO <general>: creating subdirectories
2021-12-16 10:31:02.927 T:26813    INFO <general>: userdata folder: special://masterprofile/
2021-12-16 10:31:02.927 T:26813    INFO <general>: recording folder: 
2021-12-16 10:31:02.927 T:26813    INFO <general>: screenshots folder: 
2021-12-16 10:31:02.929 T:26813    INFO <general>: Running database version Addons33
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.flac v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.kodi.builtin.aac v1.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.kodi.builtin.wma v1.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.lame v19.1.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.vorbis v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: audioencoder.wav v19.0.1 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: catchuptvandmore.kodi.krypton.beta v0.0.6 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: catchuptvandmore.kodi.krypton.release v0.0.6 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: chamchenko-dev v0.0.2 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: context.venom v1.2.0 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.default v1.0.16 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.dreamcast v1.0.10 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.gamecube v1.0.3 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.n64 v1.0.12 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.nds v1.0.11 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.pcfx v1.0.13 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.pcfx.mouse v1.0.14 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.ps.dualshock v1.0.12 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.saturn v1.0.11 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.snes v1.0.15 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.controller.wiimote v1.0.4 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro v19.0.0 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.beetle-psx v0.9.44.33 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.desmume v0.0.1.17 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.flycast v0.1.0.39 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.gambatte v0.5.0.26 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mame2015_libretro_buildbot v1.2020.18339 installed
2021-12-16 10:31:02.999 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mame2016_libretro_buildbot v1.2020.18301 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mednafen_pcfx_libretro_buildbot v1.2021.18807 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mednafen_psx_hw_libretro_buildbot v1.2021.18808 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.melonds v0.9.3.23 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mgba v0.9.2.28 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.mupen64plus-nx v2.2.0.22 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.nestopia v1.51.1.21 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.parallel_n64 v2.0.0.19 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.scummvm v2.1.1.20 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.snes9x v1.60.0.27 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.vitaquake3_libretro_buildbot v1.2021.18762 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.libretro.yabause v0.9.15.30 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: game.retroarch v8.167.3 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.adaptive v19.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.ffmpegdirect v1.21.8 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: inputstream.rtmp v19.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.audioengine v1.1.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.filesystem v1.1.6 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.general v1.0.5 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.gui v5.15.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.main v1.3.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.network v1.0.4 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.global.tools v1.0.4 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.audiodecoder v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.audioencoder v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.game v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.imagedecoder v2.1.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.inputstream v3.0.1 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.peripheral v2.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.pvr v7.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.screensaver v2.1.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.vfs v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.videocodec v2.0.2 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.binary.instance.visualization v3.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: kodi.resource v1.0.0 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.album.universal v3.1.6 installed
2021-12-16 10:31:03.000 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.artists.universal v4.3.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.allmusic.com v3.2.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.fanart.tv v3.6.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.imdb.com v3.2.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.musicbrainz.org v2.2.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.theaudiodb.com v2.0.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.common.themoviedb.org v3.2.17 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.generic.albums v1.0.14 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.generic.artists v1.0.14 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.local v1.0.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.themoviedb.org v5.2.6 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.themoviedb.org.python v1.5.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org v3.5.13 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org.python v1.4.10 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: peripheral.joystick v19.0.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.audio.listenliveeu v1.2.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.AML v1.0.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.advanced.emulator.launcher v0.10.1-alpha installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.iagl v3.0.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.iptv.merge v0.21.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.program.retrobiostool v0.5 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.FranceTVPluzz v1.1.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.GulliReplay v3.0.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.catchuptvandmore v0.2.37~beta02 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.dailymotion_com v2.4.3+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.fantasticc v2.4.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.francetv v2.0.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.freplay v0.6.16 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nasa v3.0.1+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nbainternational v0.0.1~beta17 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.netflix v1.18.2+matrix.1 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.nhklive v4.0.2 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.plutotv v1.5.3 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.themoviedb.helper v4.4.0 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.tubed v1.0.4 installed
2021-12-16 10:31:03.001 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.tyl0re.arte v1.1.0+matrix.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.vstream v1.6.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: plugin.video.youtube v6.8.18+matrix.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.hts v8.4.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.iptvsimple v7.6.13 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: pvr.vdr.vnsi v8.2.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.JUL1EN094 v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.castagnait v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.catchup4kodi v1.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.covenant v0.5 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.emby.kodi v1.0.6 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.exodusredux v0.0.8 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.frenchdj v0.0.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.jsergio v1.0.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.kodi_libretro_buildbot_game_addons v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.kodinerds v7.0.1.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.openmeta v1.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.openscrapers v1.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.sandmann79-py3.plugins v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.slyguy v0.0.2 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.solbero v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.tva.common v4.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.venom v1.19 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.vstream v0.0.4 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmc.org v3.2.5 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmcadult v1.0.7 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.xbmchub v4.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.zachmorris v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: repository.zomboided.plugins v1.0.0 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.catchuptvandmore v1.0.12 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.recordlabels.white v0.0.7 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.clear v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.phenominence v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.skinbackgrounds.silver v1.0.1 installed
2021-12-16 10:31:03.002 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.studios.white v0.0.28 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.multi v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.prairie v0.0.5 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weatherfanart.single v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.animated v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.cloud.animated v2.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.default v1.1.9 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.hd.animated v1.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.outline v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.images.weathericons.white v0.0.6 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.language.en_gb v2.0.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.language.fr_fr v9.0.49 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: resource.uisounds.kodi v1.0.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.asteroids v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.biogenesis v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.greynetic v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.matrixtrails v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.pingpong v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.pyro v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.stars v19.0.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.xbmc.builtin.black v1.0.34 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: screensaver.xbmc.builtin.dim v1.0.64 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.artistslideshow v3.3.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.cdartmanager v4.2.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.cu.lrclyrics v6.3.9 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.embuary.helper v2.0.8 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.embuary.info v2.0.8 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.extendedinfo v5.6.0 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.globalsearch v9.0.5 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.image.resource.select v3.0.2 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.keymap v1.1.4 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.addon.signals v0.0.6+matrix.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.archive_tool v2.0.3 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.arrow v1.0.3.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.autocompletion v2.0.3 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.backports.functools_lru_cache v1.6.1 installed
2021-12-16 10:31:03.003 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.beautifulsoup v3.2.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.beautifulsoup4 v4.9.3+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.bottle v0.12.18+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.certifi v2020.12.05+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.chardet v4.0.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.codequick v1.0.2+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.dateutil v2.8.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.defusedxml v0.6.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.dropbox v9.4.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.future v0.18.2+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.html5lib v1.0.1+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.htmlement v1.0.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.idna v2.10.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.inputstreamhelper v0.5.8+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.kodi-six v0.1.3.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.kodi65 v1.2.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.metadatautils v1.0.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.metahandler v5.0.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.musicbrainz v0.6.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.mutagen v1.44.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.myconnpy v8.0.18+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.parsedom v2.5.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pil v5.1.0 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pycryptodome v3.4.3 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pyqrcode v1.2.1+matrix.4 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pytz v2019.3.0+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.pyxbmct v1.3.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.requests v2.25.1+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.routing v0.2.3+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simplecache v2.0.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simpleeval v0.9.10 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.simplejson v3.17.0+matrix.2 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.six v1.15.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.slyguy v0.48.6 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.soupsieve v2.1.0+matrix.1 installed
2021-12-16 10:31:03.004 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.t1mlib v4.0.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.thetvdb v1.0.12 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.tubed.api v1.0.10 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.typing_extensions v3.7.4.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.tzlocal v2.0.0+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.unidecode v1.1.1+matrix.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.urllib3 v1.26.4+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.webencodings v0.5.1+matrix.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.xbmcswift2 v19.0.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.module.youtube.dl v21.303.0+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.openweathermap.maps v1.0.6 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.screensaver.multi_slideshow v0.1.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.colorpicker v2.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.service v1.1.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skin.helper.widgets v1.0.22 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.skinshortcuts v2.0.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.tubecast v1.4.8+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: script.xbmcbackup v1.6.7 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.iptv.manager v0.2.3+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.library.data.provider v0.4.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.smartish.widgets v0.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.bsplayer v0.2.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.opensubtitles v5.1.3 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.rvm.addic7ed v3.1.8+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.subtitles.shooter v2.0.0 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.upnext v1.1.5+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: service.xbmc.versioncheck v0.5.21+matrix.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.aeon.nox.silvo v8.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.arctic.zephyr.mod v1.1.62 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.bello.7 v7.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.confluence v4.7.13 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.estouchy v3.0.6 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: skin.estuary v3.0.5 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: slyguy.dependencies v0.0.1 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: slyguy.pluto.tv.provider v0.5.2 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: superrepo.kodi.jarvis.all v0.7.04 installed
2021-12-16 10:31:03.005 T:26813    INFO <general>: CAddonMgr::FindAddons: vfs.libarchive v2.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: vfs.rar v4.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.projectm v19.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.shadertoy v19.1.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.spectrum v19.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: visualization.waveform v19.0.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.gismeteo v0.5.2+matrix.1 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.multi v0.0.6 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: weather.openweathermap.extended v5.0.2 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: webinterface.default v19.x-2.4.8 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.addon v19.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.core v0.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.gui v5.15.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.json v12.4.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.metadata v2.1.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.python v3.0.0 installed
2021-12-16 10:31:03.006 T:26813    INFO <general>: CAddonMgr::FindAddons: xbmc.webinterface v1.0.0 installed
2021-12-16 10:31:03.016 T:26813    INFO <general>: Selected Logind/UPower as PowerSyscall
2021-12-16 10:31:03.037 T:26813   ERROR <general>: DBus error: org.freedesktop.DBus.Error.InvalidArgs - La propriété « OnLowBattery » n’existe pas
2021-12-16 10:31:03.045 T:26822 WARNING <general>: Pulseaudio module module-allow-passthrough not loaded - opening PT devices might fail
2021-12-16 10:31:03.046 T:26822    INFO <general>: Found 1 Lists of Devices
2021-12-16 10:31:03.046 T:26822    INFO <general>: Enumerated PULSE devices:
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 1
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : Default
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : Default
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: Default Output Device (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 2
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : alsa_output.usb-GeneralPlus_USB_Audio_Device-00.analog-stereo
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : USB Audio Device Stéréo analogique
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: Haut-parleurs (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26822    INFO <general>:     Device 3
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceName      : alsa_output.pci-0000_0b_00.1.hdmi-surround-extra1
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayName     : Raven/Raven2/Fenghuang HDMI/DP Audio Controller Digital Surround 5.1 (HDMI 2)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_displayNameExtra: HDMI / DisplayPort 2 (PULSEAUDIO)
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_deviceType      : AE_DEVTYPE_PCM
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_channels        : FL, FR, BL, BR, FC, LFE
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_sampleRates     : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_dataFormats     : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2021-12-16 10:31:03.046 T:26822    INFO <general>:         m_streamTypes     : No passthrough capabilities
2021-12-16 10:31:03.046 T:26823    INFO <general>: CActiveAESink::OpenSink - initialize sink
2021-12-16 10:31:03.059 T:26823    INFO <general>: PulseAudio: Opened device Default in pcm mode with Buffersize 150 ms Periodsize 50 ms
2021-12-16 10:31:03.063 T:26813    INFO <general>: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts...
2021-12-16 10:31:03.077 T:26813    INFO <general>: Available videomodes (xrandr):
2021-12-16 10:31:03.077 T:26813    INFO <general>: Output 'HDMI-A-0' has 40 modes
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x57 Name:1920x1080 Refresh:60.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x67 Name:1920x1080 Refresh:50.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x68 Name:1920x1080 Refresh:59.940201 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x69 Name:1920x1080 Refresh:30.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6a Name:1920x1080 Refresh:25.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6b Name:1920x1080 Refresh:24.000000 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6c Name:1920x1080 Refresh:29.970100 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6d Name:1920x1080 Refresh:23.976080 Width:1920 Height:1080
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6e Name:1680x1050 Refresh:59.883251 Width:1680 Height:1050
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x6f Name:2880x576 Refresh:50.000000 Width:2880 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.355556
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x59 Name:1600x900 Refresh:60.000000 Width:1600 Height:900
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x70 Name:2880x480 Refresh:60.000000 Width:2880 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.296296
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x71 Name:2880x480 Refresh:59.940060 Width:2880 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.296296
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5a Name:1280x1024 Refresh:75.024673 Width:1280 Height:1024
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5b Name:1280x1024 Refresh:60.019741 Width:1280 Height:1024
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x72 Name:1440x900 Refresh:59.901459 Width:1440 Height:900
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x73 Name:1280x800 Refresh:59.909550 Width:1280 Height:800
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.111111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x5e Name:1152x864 Refresh:75.000000 Width:1152 Height:864
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x74 Name:1280x720 Refresh:60.000000 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x75 Name:1280x720 Refresh:50.000000 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x76 Name:1280x720 Refresh:59.940201 Width:1280 Height:720
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.000000
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x77 Name:1440x576 Refresh:50.000000 Width:1440 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.711111
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x60 Name:1024x768 Refresh:75.028580 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x78 Name:1024x768 Refresh:70.069359 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x61 Name:1024x768 Refresh:60.003841 Width:1024 Height:768
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x79 Name:1440x480 Refresh:60.000000 Width:1440 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.592593
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7a Name:1440x480 Refresh:59.940060 Width:1440 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.592593
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7b Name:832x624 Refresh:74.551270 Width:832 Height:624
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7c Name:800x600 Refresh:72.187569 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x62 Name:800x600 Refresh:75.000000 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x63 Name:800x600 Refresh:60.316540 Width:800 Height:600
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7d Name:720x576 Refresh:50.000000 Width:720 Height:576
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.422222
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7e Name:720x480 Refresh:60.000000 Width:720 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.185185
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x7f Name:720x480 Refresh:59.940060 Width:720 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.185185
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x64 Name:640x480 Refresh:75.000000 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x80 Name:640x480 Refresh:72.808800 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x81 Name:640x480 Refresh:66.666672 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x82 Name:640x480 Refresh:60.000000 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x65 Name:640x480 Refresh:59.940479 Width:640 Height:480
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 1.333333
2021-12-16 10:31:03.077 T:26813    INFO <general>: ID:0x66 Name:720x400 Refresh:70.081657 Width:720 Height:400
2021-12-16 10:31:03.077 T:26813    INFO <general>: Pixel Ratio: 0.987654
2021-12-16 10:31:03.077 T:26813    INFO <general>: CApplication::CreateGUI - using the x11 windowing system
2021-12-16 10:31:03.077 T:26813    INFO <general>: Checking resolution 18
2021-12-16 10:31:03.098 T:26813    INFO <general>: DPMS: X11 extension not present, power-saving will not be available
2021-12-16 10:31:03.098 T:26813    INFO <general>: RetroPlayer[PROCESS]: Registering process control for X11
2021-12-16 10:31:03.098 T:26813    INFO <general>: RetroPlayer[RENDER]: Registering renderer factory for OpenGL
2021-12-16 10:31:03.151 T:26813    INFO <general>: Using visual 0x21
2021-12-16 10:31:03.605 T:26813    INFO <general>: VAAPI::Close - closing decoder context
2021-12-16 10:31:03.717 T:26813    INFO <general>: CRenderSystemGL::InitRenderSystem - Version: 4.6 (Core Profile) Mesa 21.3.1, Major: 4, Minor: 6
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_VENDOR = AMD
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_RENDERER = AMD Radeon Vega 11 Graphics (RAVEN, DRM 3.42.0, 5.15.8-arch1-1, LLVM 13.0.0)
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_VERSION = 4.6 (Core Profile) Mesa 21.3.1
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_SHADING_LANGUAGE_VERSION = 4.60
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX = 5242880
2021-12-16 10:31:03.717 T:26813    INFO <general>: GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX = 2097152
2021-12-16 10:31:03.718 T:26813    INFO <general>: GL_EXTENSIONS = GL_AMD_conservative_depth GL_AMD_depth_clamp_separate GL_AMD_draw_buffers_blend GL_AMD_framebuffer_multisample_advanced GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_performance_monitor GL_AMD_pinned_memory GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gl_spirv GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_sparse_buffer GL_ARB_spirv_extensions GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_
ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_meminfo GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_demote_to_helper_invocation GL_EXT_depth_bounds_test GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_semaphore GL_EXT_semaphore_fd GL_EXT_shader_image_load_formatted GL_EXT_shader_image_load_store GL_EXT_shader_integer_mix GL_EXT_shader_samples_identical GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_mirror_clamp GL_EXT_texture_sRGB GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_decode GL_EXT_texture_shadow_lod GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_EXT_window_rectangles GL_IBM_multimode_draw_arrays GL_INTEL_blackhole_render GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_framebuffer_flip_y GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_NVX_gpu_memory_info GL_NV_alpha_to_coverage_dither_control GL_NV_compute_shader_derivatives GL_NV_conditional_render GL_NV_copy_image GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_shader_atomic_int64 GL_NV_texture_barrier GL_NV_vdpau_interop GL_OES_EGL_image GL_S3_s3tc 
2021-12-16 10:31:03.751 T:26813    INFO <general>: CWinSystemX11::SetFullScreen - calling xrandr
2021-12-16 10:31:03.751 T:26813    INFO <general>: XRANDR: /usr/lib/kodi/kodi-xrandr --screen 0 --output HDMI-A-0 --mode 0x67
2021-12-16 10:31:03.841 T:26813    INFO <general>: GL: Maximum texture width: 16384
2021-12-16 10:31:03.915 T:26821    INFO <general>: Loading special://xbmc/system/Lircmap.xml
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'mceusb'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'XboxDVDDongle'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'Microsoft_Xbox'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'PinnacleSysPCTVRemote'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'anysee'
2021-12-16 10:31:03.916 T:26821    INFO <general>: * Adding remote mapping for device 'iMON-PAD'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'Antec_Veris_RM200'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'MCE_via_iMON'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'TwinHanRemote'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'linux-input-layer'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'mediacenter'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput-32'
2021-12-16 10:31:03.917 T:26821    INFO <general>: * Adding remote mapping for device 'devinput-64'
2021-12-16 10:31:03.956 T:26813    INFO <general>: GL: Enabling VSYNC
2021-12-16 10:31:03.960 T:26813    INFO <general>: load keymapping
2021-12-16 10:31:03.960 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/appcommand.xml
2021-12-16 10:31:03.960 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/customcontroller.SiriRemote.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/gamepad.xml
2021-12-16 10:31:03.961 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/joystick.xml
2021-12-16 10:31:03.962 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/keyboard.xml
2021-12-16 10:31:03.963 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/mouse.xml
2021-12-16 10:31:03.963 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/remote.xml
2021-12-16 10:31:03.964 T:26813    INFO <general>: Loading special://xbmc/system/keymaps/touchscreen.xml
2021-12-16 10:31:03.964 T:26813    INFO <general>: GUI format 1920x1080, Display HDMI-A-0: 1920x1080 @ 50.00Hz
2021-12-16 10:31:03.964 T:26813    INFO <general>: CLangInfo: loading resource.language.fr_fr language information...
2021-12-16 10:31:03.965 T:26813    INFO <general>: global locale set to fr_FR.UTF-8
2021-12-16 10:31:03.965 T:26813    INFO <general>: CLangInfo: loading resource.language.fr_fr language strings...
2021-12-16 10:31:03.974 T:26813 WARNING <general>: CRepository::ParseDirConfiguration: Repository has MD5 hashes enabled - this hash function is broken and will only guard against unintentional data corruption
2021-12-16 10:31:03.974 T:26813 WARNING <general>: Repository add-on superrepo.kodi.jarvis.all uses plain HTTP for add-on downloads in path http://redirect.superrepo.org/v7/addons/ - this is insecure and will make your Kodi installation vulnerable to attacks if enabled!
2021-12-16 10:31:04.068 T:26872    INFO <general>: Running database version Addons33
2021-12-16 10:31:04.069 T:26872    INFO <general>: Running database version ViewModes6
2021-12-16 10:31:04.070 T:26872    INFO <general>: Running database version Textures13
2021-12-16 10:31:04.074 T:26872    INFO <general>: Running database version MyMusic82
2021-12-16 10:31:04.076 T:26872    INFO <general>: Running database version MyVideos119
2021-12-16 10:31:04.077 T:26872    INFO <general>: Running database version TV38
2021-12-16 10:31:04.077 T:26872    INFO <general>: Running database version Epg13
2021-12-16 10:31:04.078 T:26813    INFO <general>: start dvd mediatype detection
2021-12-16 10:31:04.089 T:26813    INFO <general>: Unloaded skin
2021-12-16 10:31:04.090 T:26813    INFO <general>:   load skin from: /home/bibi/.kodi/addons/skin.aeon.nox.silvo/ (version: 8.0.1)
2021-12-16 10:31:04.090 T:26813    INFO <general>:   load fonts for skin...
2021-12-16 10:31:04.092 T:26813    INFO <general>: Loading skin includes from /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9/Includes.xml
2021-12-16 10:31:04.207 T:26813    INFO <general>: Loading fonts from /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9/Font.xml
2021-12-16 10:31:04.267 T:26813    INFO <general>:   load new skin...
2021-12-16 10:31:04.267 T:26813    INFO <general>: Loading custom window XMLs from skin path /home/bibi/.kodi/addons/skin.aeon.nox.silvo/16x9
2021-12-16 10:31:04.276 T:26813    INFO <general>:   initialize new skin...
2021-12-16 10:31:04.276 T:26813    INFO <general>: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.277 T:26813    INFO <general>: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.277 T:26813    INFO <general>: Loading skin file: custom_1134_PausedOverlay.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.278 T:26813    INFO <general>: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.283 T:26813    INFO <general>: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.285 T:26813    INFO <general>: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.285 T:26813    INFO <general>: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.286 T:26813    INFO <general>: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
2021-12-16 10:31:04.287 T:26813    INFO <general>: Loading resource://resource.uisounds.kodi/sounds.xml
2021-12-16 10:31:04.294 T:26813    INFO <general>:   skin loaded...
2021-12-16 10:31:04.294 T:26813    INFO <general>: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
2021-12-16 10:31:04.296 T:26875    INFO <general>: initializing python engine.
2021-12-16 10:31:04.296 T:26813    INFO <general>: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
2021-12-16 10:31:04.353 T:26878    INFO <general>: initializing python engine.
2021-12-16 10:31:04.356 T:26813 WARNING <general>: JSONRPC: Could not parse type "Setting.Details.SettingList"
2021-12-16 10:31:04.356 T:26813    INFO <general>: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting")
2021-12-16 10:31:04.356 T:26813    INFO <general>: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting
2021-12-16 10:31:04.362 T:26813    INFO <general>: JSONRPC v12.4.0: Successfully initialized
2021-12-16 10:31:04.368 T:26813    INFO <general>: AddOnLog: peripheral.joystick: Enabling joystick interface "linux"
2021-12-16 10:31:04.369 T:26813    INFO <general>: Register - new keyboard device registered on application->keyboard: Clavier (0000:0000)
2021-12-16 10:31:04.369 T:26813    INFO <general>: Register - new mouse device registered on application->mouse: Souris (0000:0000)
2021-12-16 10:31:04.369 T:26813    INFO <general>: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
2021-12-16 10:31:04.370 T:26813    INFO <general>: Loaded playercorefactory configuration
2021-12-16 10:31:04.370 T:26813    INFO <general>: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
2021-12-16 10:31:04.370 T:26813    INFO <general>: special://masterprofile/playercorefactory.xml does not exist. Skipping.
2021-12-16 10:31:04.370 T:26813    INFO <general>: removing tempfiles
2021-12-16 10:31:04.370 T:26813    INFO <general>: UpdateLibraries: Starting video library startup scan
2021-12-16 10:31:04.373 T:26885    INFO <general>: initializing python engine.
2021-12-16 10:31:04.376 T:26813    INFO <general>: Skipped 18 duplicate messages..
2021-12-16 10:31:04.376 T:26813    INFO <general>: initialize done
2021-12-16 10:31:04.376 T:26904    INFO <general>: initializing python engine.
2021-12-16 10:31:04.376 T:26813    INFO <general>: Running the application...
2021-12-16 10:31:04.378 T:26813 WARNING <general>: CRepository::ParseDirConfiguration: Repository has MD5 hashes enabled - this hash function is broken and will only guard against unintentional data corruption
2021-12-16 10:31:04.378 T:26813 WARNING <general>: Repository add-on superrepo.kodi.jarvis.all uses plain HTTP for add-on downloads in path http://redirect.superrepo.org/v7/addons/ - this is insecure and will make your Kodi installation vulnerable to attacks if enabled!
2021-12-16 10:31:04.380 T:26813    INFO <general>: starting zeroconf publishing
2021-12-16 10:31:04.380 T:26813    INFO <general>: starting upnp client
2021-12-16 10:31:04.381 T:26813    INFO <general>: starting upnp renderer
2021-12-16 10:31:04.383 T:26912    INFO <general>: ES: Starting UDP Event server on port 9777
2021-12-16 10:31:04.383 T:26912    INFO <general>: UDP: Listening on port 9777 (ipv6 : true)
2021-12-16 10:31:04.383 T:26813   ERROR <general>: JSONRPC Server: Failed to connect to sdpd
2021-12-16 10:31:04.384 T:26813    INFO <general>: JSONRPC Server: Successfully initialized
2021-12-16 10:31:04.384 T:26813    INFO <CWebserver[8085]>: Started
2021-12-16 10:31:04.385 T:26916   ERROR <general>: GetDirectory - Error getting s:live|i:songs/
2021-12-16 10:31:04.457 T:26813    INFO <general>: Skipped 1 duplicate messages..
2021-12-16 10:31:04.457 T:26813    INFO <general>: GL: Maximum texture width: 16384
2021-12-16 10:31:04.475 T:26813    INFO <general>: GL: Enabling VSYNC
2021-12-16 10:31:04.499 T:26872    INFO <general>: AddOnLog: pvr.hts: starting PVR client
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Received permissions:
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   administrator              : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   HTSP streaming             : 1
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   HTSP DVR                   : 1
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Failed/aborted DVR         : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   anonymous HTSP only        : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   global connection limit    : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   DVR connection limit       : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   streaming connection limit : 0
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Available streaming profiles:
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts:   Name: htsp, Comment: HTSP Default Stream Settings
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts: Request async EPG (7 days)
2021-12-16 10:31:04.502 T:26922    INFO <general>: AddOnLog: pvr.hts: Async updates requested
2021-12-16 10:31:04.506 T:26919    INFO <general>: AddOnLog: pvr.hts: Async updates initialised
2021-12-16 10:31:04.510 T:26876    INFO <general>: VideoInfoScanner: Starting scan ..
2021-12-16 10:31:04.518 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - Create - Creating the PVR IPTV Simple add-on
2021-12-16 10:31:04.520 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/24 heures dans la nature - Au coeur du désert d'Atacama-eea167a1-01ca-4d3b-9236-778c007d096d.mp4', it won't be added to the library.
2021-12-16 10:31:04.521 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Ben Harper & The Innocent Criminals - Jah Work (A Lewis Marnell Tribute)-lc2n58vzhz8.webm', it won't be added to the library.
2021-12-16 10:31:04.522 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Bigflo & Oli - Dommage-8AF-Sm8d8yk.webm', it won't be added to the library.
2021-12-16 10:31:04.522 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Bigflo & Oli - Pour un pote ft. Jean Dujardin-99AS1Rq5dIM.mkv', it won't be added to the library.
2021-12-16 10:31:04.523 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Brassens, une vie de lettres-5bc5d29e-8308-11ea-894c-000d3a23d482.mp4', it won't be added to the library.
2021-12-16 10:31:04.524 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Claudio Capéo - Un homme debout (clip officiel)-Y9GCM9DZUJo.mkv', it won't be added to the library.
2021-12-16 10:31:04.524 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Et le singe inventa la culture-047075-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.525 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Épaves et pollution - Les larmes noires de l’océan-047526-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.526 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Grand Corps Malade - Pocahontas - Clip Officiel-BC7oHfBErr8.webm', it won't be added to the library.
2021-12-16 10:31:04.526 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Jean-Jacques Goldman - On ira (Clip officiel)-flP-hF4O5ZM.mkv', it won't be added to the library.
2021-12-16 10:31:04.527 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadPlayList Playlist Loaded - 4 (ms)
2021-12-16 10:31:04.527 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadPlayList - Loaded 102 channels.
2021-12-16 10:31:04.527 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Jean-Jacques Goldman de l'intérieur-d93951da-227d-428f-8810-bd1d53914763.mp4', it won't be added to the library.
2021-12-16 10:31:04.528 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/L'énigme du Taj Mahal-9a8061b0-d3b7-483a-88c2-40c14b3ffdd0.mp4', it won't be added to the library.
2021-12-16 10:31:04.528 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/La ruée vers l'or-046387-000-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.529 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le cosmos dans tous ses états - Le Big Bang-852fd92a-9373-4d37-9e64-1c11b09e294c.mp4', it won't be added to the library.
2021-12-16 10:31:04.530 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le cosmos dans tous ses états - Les étoiles extrêmes-084cb54a-704b-4379-82af-b3e1931356ac.mp4', it won't be added to the library.
2021-12-16 10:31:04.530 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Le Mississippi, indomptable géant-cd2a2049-49a2-485e-b4c9-6bc58eae1427.mp4', it won't be added to the library.
2021-12-16 10:31:04.531 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les fabuleux pouvoirs de l'hypnose-062230-000-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.532 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (1_4)-068406-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.532 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (2_4)-068406-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.533 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (3_4)-068406-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.534 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Les routes de l'esclavage (4_4)-068406-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.535 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Né en 17 à Leindenstadt   Jean Jacques Goldman wmv-UnSz5YYEc1Y.webm', it won't be added to the library.
2021-12-16 10:31:04.536 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Selah Sue - Raggamuffin (Official Video)--IunmW3wI5Q.mp4', it won't be added to the library.
2021-12-16 10:31:04.537 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Stromae - Alors On Danse (Clip Officiel)-VHoT4N43jK8.mkv', it won't be added to the library.
2021-12-16 10:31:04.538 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Stromae - Formidable (ceci n'est pas une leçon)-S_xH7noaqTA.mkv', it won't be added to the library.
2021-12-16 10:31:04.539 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/The Killing - Saison 1 (9_20)-040374-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.540 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Trois villes à la conquête du monde  - Amsterdam, Londres, New York (1_4)-069809-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.540 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Tsunamis, une menace planétaire-080103-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.542 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/2018-06-23.14.55.108-0.rec/00001.ts', it won't be added to the library.
2021-12-16 10:31:04.549 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) 700 requins - Épisode 1  le mystère de Fakavara  ARVR360  ARTE.MP4', it won't be added to the library.
2021-12-16 10:31:04.550 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) 700 requins - Épisode 2  au cœur de la meute  ARVR360  ARTE.MP4', it won't be added to the library.
2021-12-16 10:31:04.551 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/(6) Arte reportage HD  Expédition Antarctica sur les traces du manchot empereur  Nature vesv.MP4', it won't be added to the library.
2021-12-16 10:31:04.552 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[ DOCUMENTAIRE ] Expédition Antarctica -  Sur les traces de l'Empereur [HD].mp4', it won't be added to the library.
2021-12-16 10:31:04.553 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[MG]-TV|EU|S|Immobi.Blue.Planet.II.S01E04.Big.Blue.HDTV.x264-CREED.mkv', it won't be added to the library.
2021-12-16 10:31:04.554 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2008-Whale.Shark.avi', it won't be added to the library.
2021-12-16 10:31:04.555 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Great.White.Shark,A.Living.Legend.mkv', it won't be added to the library.
2021-12-16 10:31:04.556 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Polar.Bears.and.Grizzlies.avi', it won't be added to the library.
2021-12-16 10:31:04.557 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/[Serenity].BBC.Natural.World.2009-Snow.Monkies.HDTV.720p.mkv', it won't be added to the library.
2021-12-16 10:31:04.557 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/6 Documentaire Papouasie expedition au coeur d un monde perdu 2016 HDTV 720p - YouTube_720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.558 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/6 Une plongée à Cocos l'île aux requins - Documentaire - YouTube_360p.mp4', it won't be added to the library.
2021-12-16 10:31:04.559 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/700 requins dans la nuit.mp4', it won't be added to the library.
2021-12-16 10:31:04.560 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Abysses, La vie dans les profondeurs extrêmes - Documentaire Animalier.mp4', it won't be added to the library.
2021-12-16 10:31:04.561 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Aventures en terre animale-051052-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.561 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.1of6.Marvelous.Motions.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.562 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.3of6.Fantastic.Feeding.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.563 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.4of6.Devious.Defences.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.564 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/BBC.Weird.Nature.5of6.Puzzling.Partners.XviD.MP3.HankE.avi', it won't be added to the library.
2021-12-16 10:31:04.564 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Des chiens et des hommes  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.565 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire - Ushuaia Nature - Okavango - (8) - La Grande Foret Equatoriale.avi', it won't be added to the library.
2021-12-16 10:31:04.566 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire Les requins de la Grande Barriere Australie -.mp4', it won't be added to the library.
2021-12-16 10:31:04.566 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Documentaire nature animalier - Planète Terre 04l11 - Les déserts - BBC 2006. Arte.mpg', it won't be added to the library.
2021-12-16 10:31:04.567 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Ce que Darwin ne savait pas encore (Documentaire Arte) 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.568 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com L’énigme De La Migration Verticale Sous-Marine 720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.569 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 1_4 - Les Gagnants de l'Evolution (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.569 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 3_4 - Techniques de Survie (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.570 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/fbion.com Le Royaume des Dinosaures HD 4_4 - Fin du Jeu (2011) 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.571 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/La vie des requins documentaire complet en francais YouTube.mp4', it won't be added to the library.
2021-12-16 10:31:04.572 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Le Monde Mystérieux Des Serpents.mp4', it won't be added to the library.
2021-12-16 10:31:04.572 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Les Larmes Des Crocodiles documentaire complet HD - YouTube_720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.573 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Mexique  les géants des Caraïbes  Mystérieuse planète  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.574 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Quand baleines et tortues nous montrent le chemin-080093-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.575 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Reportage Arte - Evolution - Les Armes De L'evolution - Docu Fr Tvdivx5.11 2P Dodelio.avi', it won't be added to the library.
2021-12-16 10:31:04.575 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/Takaya, le loup solitaire  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.576 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/animaux/vie_des_chiens_et_chats.mp4', it won't be added to the library.
2021-12-16 10:31:04.576 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadChannelEpgs - Loaded '102' EPG channels.
2021-12-16 10:31:04.577 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/1985_Lakers_vs_Celtics_NBA_Finals_Game_5_Serenity.avi', it won't be added to the library.
2021-12-16 10:31:04.578 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/1987_Lakers_vs_Celtics_NBA_Finals_Game_4_Serenity.avi', it won't be added to the library.
2021-12-16 10:31:04.578 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/19980308.RS.-.Bulls.at.KnT.avi', it won't be added to the library.
2021-12-16 10:31:04.579 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls @ Knicks 1993 ECF Game 5_ Michael Jordan 29_10_14..flv', it won't be added to the library.
2021-12-16 10:31:04.579 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 1 - Michael Jordan 31 points.flv', it won't be added to the library.
2021-12-16 10:31:04.580 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 4 - Michael Jordan 29 points.flv', it won't be added to the library.
2021-12-16 10:31:04.580 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 5 - Michael Jordan 37 points (am.flv', it won't be added to the library.
2021-12-16 10:31:04.581 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 6 - Michael Jordan 21 points.flv', it won't be added to the library.
2021-12-16 10:31:04.581 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs Knicks 1992 - Game 7 - Michael Jordan 42 points.flv', it won't be added to the library.
2021-12-16 10:31:04.582 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks - 1993 playoffs Game 6.flv', it won't be added to the library.
2021-12-16 10:31:04.582 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks 1992 Playoffs Game 3 (1 of 2).flv', it won't be added to the library.
2021-12-16 10:31:04.583 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Bulls vs. Knicks 1992 Playoffs Game 3 (2 of 2).flv', it won't be added to the library.
2021-12-16 10:31:04.583 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Chicago Bulls @ New York Knicks _ 1993 Playoffs _ ECF Game 1.flv', it won't be added to the library.
2021-12-16 10:31:04.584 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Chicago Bulls @ New York Knicks _ 1993 Playoffs _ ECF Game 2.flv', it won't be added to the library.
2021-12-16 10:31:04.584 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/fbion.com Intérieur Sport _ Délivrance (Euro Basket 2013) 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.585 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/La_vid_o_du_jour_le_Top_50_des_dunks_NCAA_Basket_USA_-_Les_n.flv', it won't be added to the library.
2021-12-16 10:31:04.585 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Le_cadeau_du_jour_les_20_plus_beaux_dunks_de_l_histoire_des_.flv', it won't be added to the library.
2021-12-16 10:31:04.586 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Le_mix_du_matin_les_plus_beaux_dunks_de_l_histoire_de_YouTub.mp4', it won't be added to the library.
2021-12-16 10:31:04.586 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/Michael Jordan 54pts (1993 NBA ECF G4).flv', it won't be added to the library.
2021-12-16 10:31:04.587 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/NBA Playoffs 15.05.2011 West Semifinal Game 7 Grizzlies@Thunder HD by peacemaker.mkv', it won't be added to the library.
2021-12-16 10:31:04.587 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/basket/New York Knicks @ Chicago Bulls _ 1993 Playoffs _ ECF Game 3.flv', it won't be added to the library.
2021-12-16 10:31:04.589 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/1929 -2 La Grande dépression documentaire de William Karel (France, 2009, 52 mn) ARTE 2009-10-28.avi', it won't be added to the library.
2021-12-16 10:31:04.589 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme (5-6)_Arte_2014_10_28_22_45.mp4', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 1l6 - Adam Smith, à l'origine du libre marché (Fr-Canada.2014)_ARTE HD.2014-10-14_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 1l6 - Adam Smith, à l'origine du libre marché -ARTE HD.2014-10-14.mp4', it won't be added to the library.
2021-12-16 10:31:04.590 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 2l6 - 'La richesse des nations', nouvel évangile -ARTE HD.2014-10-14.mp4', it won't be added to the library.
2021-12-16 10:31:04.591 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 2l6 - 'la Richesse Des Nations', Nouvel Évangile (Fr-Canada 2014) Arte Hd 2014-10-14 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.591 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 3l6 - Ricardo et Malthus, vous avez dit liberté -ARTE HD.2014-10-21.mp4', it won't be added to the library.
2021-12-16 10:31:04.592 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 4l6 - Et si Marx avait raison -ARTE HD.2014-10-21.mp4', it won't be added to the library.
2021-12-16 10:31:04.592 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 5l6 - Keynes-Hayek, un combat truqué (Fr-Canada.2014)_ARTE HD.2014-10-28_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.593 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme - 6l6 - Arte_2014_10_28_23_40.mp4', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme 2l6 'La richesse des nations', nouvel _vangile (Fr Canada2014)_ARTE HD2014 10 14_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme.E06.Final.TVRIP.X264.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.594 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme_(3-6)_Arte_2014.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.595 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Capitalisme_(4-6)_Arte_2014.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.596 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Noire finance - 1l2 - La grande pompe à phynances (Fr.2012)_Arte.2012-10-02_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.596 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/economie/Noire finance - 2l2 - Le bal des vautours (Fr.2012)_Arte.2012-10-02_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.599 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Amazing Japan (FR) - Le Film [partie 1_2] - [大鳥居 STUDIO](1080p_H.264-AAC).mp4', it won't be added to the library.
2021-12-16 10:31:04.600 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/C'est toujours pas sorcier - Le cycle de l'eau-ccded349-c64d-49a2-85d9-b60f01176919.mp4', it won't be added to the library.
2021-12-16 10:31:04.600 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Docu Canal Tokyo _ 東京(360p_H.264-AAC).mp4', it won't be added to the library.
2021-12-16 10:31:04.601 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/En.Tatanes.A.Manhattan.DOC.FRENCH.PDTV.x264-DEAL.mp4', it won't be added to the library.
2021-12-16 10:31:04.601 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/Féerique Islande   La plus grande île volcanique du monde-8nA9GnPwHYQ.mkv', it won't be added to the library.
2021-12-16 10:31:04.602 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/toke.de.tokyo.mp4', it won't be added to the library.
2021-12-16 10:31:04.602 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/x18dtwm_maboul-de-seoul-part1_travel.mp4', it won't be added to the library.
2021-12-16 10:31:04.603 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Emission_tv/x18dtx3_maboul-de-seoul-part2_travel.mp4', it won't be added to the library.
2021-12-16 10:31:04.615 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadEpgEntries - Loaded '5808' EPG entries.
2021-12-16 10:31:04.615 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - LoadEPG - EPG Loaded - 88 (ms)
2021-12-16 10:31:04.616 T:26872    INFO <general>: AddOnLog: pvr.iptvsimple: Create Starting separate client update thread...
2021-12-16 10:31:04.616 T:26872    INFO <general>: PVR Manager: Starting
2021-12-16 10:31:04.631 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Albert Einstein , Le génie du 20e Siècle. (documentaire arte)-Ll3mDQx07Yg.mp4', it won't be added to the library.
2021-12-16 10:31:04.632 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Céphalopodes  - le règne des ventouses-087495-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.632 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Cinquante nuances de requins-093637-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.633 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Corleone le parrain des parrains (1_2)-049813-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.634 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Corleone le parrain des parrains (2_2)-049813-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.634 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Dans le bleu de la Méditerranée (Prix du 'meilleur film du Monde Sous-Marin')-8x6KupC83d4.webm', it won't be added to the library.
2021-12-16 10:31:04.635 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Einstein  - De l'enfance rebelle à l'année du miracle, à 26 ans-cc7XSTpTQKs.mp4', it won't be added to the library.
2021-12-16 10:31:04.636 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/En Apnée - Film DOCUMENTAIRE Complet (Plongée)-LIeLwfLJ9BY.mkv', it won't be added to the library.
2021-12-16 10:31:04.636 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/fbion.com La Chine 6000 ans d'Histoire partie 1 - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.637 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/L'ivresse des profondeurs-093654-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.637 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La grande épidémie de myopie _ Demain, tous myopes  _ ARTE-MotIPbNq6-k.mkv', it won't be added to the library.
2021-12-16 10:31:04.638 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La pieuvre géante du Pacifique-086928-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.638 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - Aux origines de l'Europe-041012-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.639 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - L'Asie d'aujourd'hui-041012-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.639 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - L'Europe d'aujourd'hui-041012-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.640 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents - Les origines de l'Asie-041012-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.641 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents-046377-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.641 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/La valse des continents-046377-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.642 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les coulisses de l'histoire - La dénazification-090597-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.642 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les mystères du mont La Pérouse-093658-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.643 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les nouveaux secrets de notre hérédité _ ARTE-Mq2Djy7xw0k.mkv', it won't be added to the library.
2021-12-16 10:31:04.643 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Les secrets révélés de la Bible-041368-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.644 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Mystérieux trous noirs-082521-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.644 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Nus et culottés - Objectif Caraïbes-3c90d381-24bb-4ec8-87be-a62773e7c827.fhls_v5_os-2218.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.645 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/en_cours/Nus et culottés - Objectif Caraïbes-3c90d381-24bb-4ec8-87be-a62773e7c827.fhls_v5_os-2218.mp4.part-Frag152.part', it won't be added to the library.
2021-12-16 10:31:04.725 T:26925    INFO <general>: PVR Manager: Started
2021-12-16 10:31:04.880 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/(8) Les Grandes Batailles - La Bataille de Stalingrad.mp4', it won't be added to the library.
2021-12-16 10:31:04.880 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/[DOC] - La guerre froide sous-marine - (arte-TV juin 2005 Film DivX Documentaire Reportage Atomique URSS USA mondiale missiles de Cuba).avi', it won't be added to the library.
2021-12-16 10:31:04.881 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/[Docu] Histoire Médiévale - 1631, Massacre À Magdebourg - 2006 Arte - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.881 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/13 Journées dans la vie de Picasso (ARTE - DVDrip) Xvid 175min - Fr - Documental.avi', it won't be added to the library.
2021-12-16 10:31:04.882 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Afghanistan - Pays meurtri par la guerre (1_4)-081554-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.883 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 2l6 (GB.2002)_Histoire.2014-11-14_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.883 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 5l6 (GB.2002)_Histoire.2014-12-06_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.884 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Au temps d'Edouard VII - 6l6 (GB.2002)_Histoire.2014-12-13_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.884 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Berlin 1945 - Le journal d'une capitale (1_2)-091182-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.885 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Berlin 1945 - Le journal d'une capitale (2_2)-091182-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.885 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 1l7 - Entre le Tigre et l'Euphrate (GB.2011)_Arte.2012-09-01_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.886 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 3l7 - La conquête arabe (GB.2011)_Arte.2012-09-01_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.887 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 4l7 - L'âge d'or islamique (GB.2011)_Arte.2012-09-08_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.888 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 6l7 - L'ascension de l'empire Ottoman (GB.2011)_Arte.2012-09-15_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.888 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De l'Orient à l'Occident - 7l7 - L'Empire ottoman et le monde occidental (GB.2011)_Arte.2012-09-15_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.889 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De L'orient À L'occident - 2l7 - Le Triomphe Du Monothéisme (Gb 2011) Arte 2012-09-01 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.889 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/De L'orient À L'occident - 5l7 - Le Creuset Asiatique (Gb 2011) Arte 2012-09-08 Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.890 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 1 sur 4 - La fin des Cathares (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.890 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 2 sur 4 - Les larmes de l'Espagne (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.891 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 3 sur 4 - La guerre des idées (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.891 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Doc - Les dossiers secrets de l'Inquisition - 4 sur 4 - La fin de l'inquisition (2006 Doc FR).avi', it won't be added to the library.
2021-12-16 10:31:04.892 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - De Nuremberg À Nuremberg -1ère et 2ème Partie - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.892 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Histoire Antique - Les Germains - 1 - Barbares Contre Romains.avi', it won't be added to the library.
2021-12-16 10:31:04.893 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Les Romanov - Gloire et chute des Tsars de Russie (All.2013)_ARTE HD.2013-09-01_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.894 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Français - Secrets d'Histoire - Moi, Charles Quint, Maître du Monde Fr2.2013-09-03.mp4', it won't be added to the library.
2021-12-16 10:31:04.894 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 1Sur4 - Les Celtes primitifs (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.895 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 2Sur4 - Les Goths féroces (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.896 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Barbares - 3Sur4 - Grecs et Perses (2007) Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.896 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les batisseurs d'empires - Grandeur et decadence de Carthage (Planete.08-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.897 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les bâtisseurs d'empires - Rome -1l2- Ambition et conquête (Planète.24-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.897 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les bâtisseurs d'empires - Rome -2l2- Fortune et déclin (Planète.24-02-2008).avi', it won't be added to the library.
2021-12-16 10:31:04.898 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Les Germains - 1l4 - Barbares Contre Romains - Arte 2009-02-14 Clo2 Adserone.avi', it won't be added to the library.
2021-12-16 10:31:04.898 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Les Germains - 1l4 - Barbares Contre Romains.avi', it won't be added to the library.
2021-12-16 10:31:04.899 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Les Grandes Inventions De L'antiquité - Ces Machines Venues D'orient (2007).avi', it won't be added to the library.
2021-12-16 10:31:04.900 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 03l13 - La marche de César.avi', it won't be added to the library.
2021-12-16 10:31:04.900 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 04l13 - La forêt de la mort.avi', it won't be added to the library.
2021-12-16 10:31:04.901 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 02-13 - Spartacus.avi', it won't be added to the library.
2021-12-16 10:31:04.901 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et Décadence d' un Empire - 10l13 - Constantin, premier empereur Chretien.avi', it won't be added to the library.
2021-12-16 10:31:04.902 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 01l13 - Rome Contre Les Barbares.avi', it won't be added to the library.
2021-12-16 10:31:04.903 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 03l13 - La marche de César 1_3.avi', it won't be added to the library.
2021-12-16 10:31:04.903 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Antique - Rome - Grandeur Et Décadence D' Un Empire - 05l13 - Comment Claude Est Devenu Britannicus.avi', it won't be added to the library.
2021-12-16 10:31:04.904 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 08l13 - La colère des dieux.avi', it won't be added to the library.
2021-12-16 10:31:04.904 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 09l13 - Aurelien, le sauveur de l' em.avi', it won't be added to the library.
2021-12-16 10:31:04.905 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et Décadence d' un Empire - 12l13 - Le maître du jeu.avi', it won't be added to the library.
2021-12-16 10:31:04.906 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire antique - Rome - Grandeur et décadence d' un empire - 13l13 - Le dernier empereur.avi', it won't be added to the library.
2021-12-16 10:31:04.906 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire du Vietnam 3 sur 6 - Dien Bien Phu (1953-1954, guerre Indochine, colonisation) Chaine Histoire TVRip XviD par Ca.avi', it won't be added to the library.
2021-12-16 10:31:04.907 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire esclavage - L'esclavage dans l'histoire des Etats-Unis (Toute L'histoire 10-12-2007).avi', it won't be added to the library.
2021-12-16 10:31:04.907 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Les Grandes Batailles - La Bataille De Tannenberg (Chaine Histoire-2000).avi', it won't be added to the library.
2021-12-16 10:31:04.908 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 1 Sur 8 - Le Paysan.avi', it won't be added to the library.
2021-12-16 10:31:04.908 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 2 Sur 8 - Le Moine.avi', it won't be added to the library.
2021-12-16 10:31:04.909 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 3 Sur 8 - La Damoiselle.avi', it won't be added to the library.
2021-12-16 10:31:04.910 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 4 sur 8 - Le Ménestrel.avi', it won't be added to the library.
2021-12-16 10:31:04.910 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 5 Sur 8 - Le Chevalier.avi', it won't be added to the library.
2021-12-16 10:31:04.911 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 6 sur 8 - Le Philosophe.avi', it won't be added to the library.
2021-12-16 10:31:04.911 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 7 Sur 8 - Le Hors La Loi.avi', it won't be added to the library.
2021-12-16 10:31:04.912 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Histoire Médiévale - Sacré Moyen-Âge - 8 Sur 8 - Le Roi.avi', it won't be added to the library.
2021-12-16 10:31:04.913 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - HITLER - Mengele Le rapport final - Les dossiers secrets du nazisme - [V.P.K].avi', it won't be added to the library.
2021-12-16 10:31:04.913 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - La Chute De Rome - 1l2 Empire Romain L'anarchie Militaire - 2009 - Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.914 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - La Chute De Rome - 2l2 La fin de l'empire romain d'occident.avi', it won't be added to the library.
2021-12-16 10:31:04.914 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire - Les Barbares - Les Vikings.avi', it won't be added to the library.
2021-12-16 10:31:04.915 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Documentaire.-.Histoire.Antique.-.Les.Barbares.-.4Sur4.-.Les.Huns.(2007).avi', it won't be added to the library.
2021-12-16 10:31:04.916 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Einsatzgruppen, les Commandos De La Mort-Part 1-Les fosses-De juin à Décembre 1941-Documentaire Infrarouge-France2-16-4-2004.avi', it won't be added to the library.
2021-12-16 10:31:04.916 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com (Documentaire Arte) Hiroshima, la véritable histoire (70 ans plus tard...) 720p.mp4', it won't be added to the library.
2021-12-16 10:31:04.917 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com La Chine 6000 ans d'Histoire partie 1 - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.918 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com Le Secret Des Templiers - Documentaire entier 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.918 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/fbion.com Le Secret Des Templiers - Documentaire entier 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.919 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  apogée et agonie  1945-1957  Partie 3  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.919 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  la prolifération des camps - 1934-1945  Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.920 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Goulag  les origines - 1917-1933  Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.920 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire medievale - Leonard de Vinci - Dans les secrets de Leonard de Vinci - 2007 Fr 2.avi', it won't be added to the library.
2021-12-16 10:31:04.921 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - La Mort Noire.avi', it won't be added to the library.
2021-12-16 10:31:04.922 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Le Trésor Des Nibelungen Sur Les Traces De Siegfried (2007).avi', it won't be added to the library.
2021-12-16 10:31:04.922 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire médiévale - Les grandes Batailles - 1415 AZINCOURT - 54m.avi', it won't be added to the library.
2021-12-16 10:31:04.923 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Les Grandes Batailles - 1529, Le Siège de Vienne [Arte, 2006].avi', it won't be added to the library.
2021-12-16 10:31:04.924 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Les Normands, Une Dynastie De Conquerants - 2l3 Royaumes De Méditerranée Fr5.2009-04-20.avi', it won't be added to the library.
2021-12-16 10:31:04.924 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Histoire Médiévale - Sacré Moyen-Âge - 3 sur 8 - La demoiselle Chaine Histoire TVRip XviD par CaribouProd.avi', it won't be added to the library.
2021-12-16 10:31:04.925 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Hitler, pourquoi sa défaite était annoncée  Les coulisses de l'histoire  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.925 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Hiver 42-43 - L'espoir change de camp (All.2012)_Arte.2012-12-11_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.926 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'Europe, le berceau de l'humanité   ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.927 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 1 Sur 3 - Les Gardiens De L'église (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.927 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 2 Sur 3 - Les Géoles De L'esprit (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.928 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/L'inquisition Révelée 3 Sur 3 - Le Feu De La Foi (Documentaire - Histoire Medievale).avi', it won't be added to the library.
2021-12-16 10:31:04.929 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La fin du IIIème Reich (La bataille de Berlin).mp4', it won't be added to the library.
2021-12-16 10:31:04.929 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (1of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.930 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (2of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.931 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Gestapo - L'arme absolue d'Hitler (3of3) [BarnZ Documentaire TVrip Francais].avi', it won't be added to the library.
2021-12-16 10:31:04.931 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La Somme, la guerre secrète des tunnels (BBC.2012)_Histoire.2014-11-02_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.932 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La_face_cachée_1_sur_6_des_monarques_européens_Chaine_Histoire_TVRip_XviD_par_CaribouProd.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.932 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/La_face_cachée_2_sur_6_des_Papes_Chaine_Histoire_TVRip_XviD_par_CaribouProd.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.933 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le dernier empire  La fin des Ottomans %231  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.934 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes - Arte - Geopolitique Et Religion - Dvdrip By Batman.avi', it won't be added to the library.
2021-12-16 10:31:04.934 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes Moyen Orient Pivot Geopolotique.avi', it won't be added to the library.
2021-12-16 10:31:04.935 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Dessous Des Cartes Une Planète En Sursis (Documentaire D'Arte) Dvdrip French Divx5.1 By Fritz.avi', it won't be added to the library.
2021-12-16 10:31:04.935 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Le Droit De Savoir - Spéciale Tsunami TVrip TF1 by dgematt.avi', it won't be added to the library.
2021-12-16 10:31:04.936 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/LES ANNÉES NOIRES DE L'ALGÉRIE 1988 2000-HKUdxXlmsEA.f134.mp4.part', it won't be added to the library.
2021-12-16 10:31:04.937 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les bourreaux de Staline - Katyn, 1940-087406-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.937 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les Complices D'hitler - Donitz Le Successeur (Documentaire).avi', it won't be added to the library.
2021-12-16 10:31:04.938 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France - Henri II (1519-1559).mp4', it won't be added to the library.
2021-12-16 10:31:04.938 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France - Louis XIII (1601-1643).mp4', it won't be added to the library.
2021-12-16 10:31:04.939 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire - 1519-1547-1559 - VALOIS - Henri II ( le Roi Gentilhomme).mkv', it won't be added to the library.
2021-12-16 10:31:04.939 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 01 sur 30 - Clovis-1.mp4', it won't be added to the library.
2021-12-16 10:31:04.940 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 01 sur 30 - Clovis.mp4', it won't be added to the library.
2021-12-16 10:31:04.941 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 02 sur 30 - Dagobe.mp4', it won't be added to the library.
2021-12-16 10:31:04.941 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 03 sur 30 - Charles.Martel_Pepin.mp4', it won't be added to the library.
2021-12-16 10:31:04.942 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 04 sur 30 - Charlemagne.mp4', it won't be added to the library.
2021-12-16 10:31:04.942 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 05 sur 30 - Hugues.Capet.mp4', it won't be added to the library.
2021-12-16 10:31:04.943 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siecles d'histoire 05 sur 30 - Hugues.mp4', it won't be added to the library.
2021-12-16 10:31:04.944 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siècles d'histoire - 03 - Charles Martel et Pépin le Bref (Fr.2013)_Toute l'histoire.2013-09-11_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.944 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les rois de France, 15 siècles d'histoire - Charles VIII, l'affable (Fr.2013)_Toute l'histoire.2014-10-28_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.945 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.refrains.du.nazisme-.doc.arte.fr.tvrip.xvid-lame.75.min.-.by.GlObuL.Team.avi', it won't be added to the library.
2021-12-16 10:31:04.945 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.01.Clovis,.Premier.Roi.Des.Francs.FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.946 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.12.François.1er,.Le.Grand.Roi,.Le.Roi.De.La.Renaissance.(Part.1).FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.946 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Les.Rois.De.France,.15.Siècles.D'Histoire.16.Henri.IV,.Le.Bon.Roi.,Le.Roi.De.Navarre.(Part.1).FR.PDTV.x264-clo2.[tvu.org.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.947 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Mengele, le médecin de la mort (Documentaire).avi', it won't be added to the library.
2021-12-16 10:31:04.948 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Napoléon, la campagne de Russie - 2l2 - La Berezina (Fr.2014)_ARTE HD.2015-01-10_clo2.mp4', it won't be added to the library.
2021-12-16 10:31:04.948 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Napoléon,_la_campagne_de_Russie_Arte_2015_01_10_20_50_x264.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.949 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Nuit et brouillard - 1955 - Documentaire (A.Resnais) - indexed by peerates.net.avi', it won't be added to the library.
2021-12-16 10:31:04.949 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Paris les grands travaux d'Hausmann.mp4', it won't be added to the library.
2021-12-16 10:31:04.950 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Points de repères - Koursk, la Russie contre-attaque-080944-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.950 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Quand l'histoire fait dates-069117-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.951 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage Arte - 2004-07 - Les Secrets Des Essais Nucleaires Urss Usa 1h25 -Alpha0.avi', it won't be added to the library.
2021-12-16 10:31:04.952 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage La traque des nazis (1-2).mp4', it won't be added to the library.
2021-12-16 10:31:04.952 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Reportage La traque des nazis (2-2).mp4', it won't be added to the library.
2021-12-16 10:31:04.953 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Seconde Guerre Mondiale - Einsatzgruppen, les Commandos de la Mort - Part 2 - Les buchers 1942 a 1945 - Documentaire Infrarouge-France 2-23-4-09.avi', it won't be added to the library.
2021-12-16 10:31:04.954 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Secrets.D'Histoire.44.Elizabeth.II,.Dans.L'Intimité.Du.Règne.FR.DVB-Rikou.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.954 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Staline et les bourreaux de Katyn, 1940  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.955 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Terres indiennes (2008) - 1l5 - Au temps du Mayflower_Arte.2010-02-06_clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.956 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (1_14)-039036-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.956 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (2_14)-039036-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.957 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (3_14)-039036-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.957 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (4_14)-039036-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.958 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (5_14)-039036-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.958 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (6_14)-039036-006-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.959 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (7_14)-039036-007-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.959 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (8_14)-039036-008-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.960 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (9_14)-039036-009-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.961 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (10_14)-039036-010-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.961 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (11_14)-039036-011-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.962 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (12_14)-039036-012-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.962 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (13_14)-039036-013-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.963 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/The War (14_14)-039036-014-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.963 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/histoire-politique/Une espèce à part (intégrale)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.965 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/musique/IAM, Youssoupha, Kery James... histoire du rap conscient  Saveur Bitume (intégrale)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.966 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Ethiopie  Le toit de l'Afrique  Mystérieuse planète  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.966 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/fbion.com [Documentaire en intégralité] La Voie du Petit Dragon - Trek TV 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.967 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/fbion.com Sur le toit du monde - l'histoire de la première ascension de l'Everest (Documentaire 2018) 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.967 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Jacques Mayol  L'homme dauphin  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.968 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/Planete/Vivre dans le désert du Sahara  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.972 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Astronomie - L'univers Et Ses Mystères - 4x05 - La Chasse Aux Planètes Annelées.avi', it won't be added to the library.
2021-12-16 10:31:04.973 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Astronomie - L'univers Et Ses Mysteres - 19 - Matiére Noire Et Energie Sombre.avi', it won't be added to the library.
2021-12-16 10:31:04.974 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/bathyscaphe.mp4', it won't be added to the library.
2021-12-16 10:31:04.974 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Concilier l'infiniment grand et l'infiniment petit  Einstein-Hawking Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:04.975 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/DOC - L'univers Et Ses Mysteres - 14 - Exoplanetes.avi', it won't be added to the library.
2021-12-16 10:31:04.975 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/DOC - L'univers Et Ses Mysteres - 67 - Merveilles -Du Systeme Solaire 04.avi', it won't be added to the library.
2021-12-16 10:31:04.976 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/documentaire - arte - La magie du cosmos - 3l4 - la mécanique quantique.avi', it won't be added to the library.
2021-12-16 10:31:04.976 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire - Arte - Les Héritiers Du Dr Mengele - Cobayes Humains Pendant La Guerre Froide Fr-Clo2.avi', it won't be added to the library.
2021-12-16 10:31:04.977 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire - Astronomie - L'univers Et Ses Mystères - 028 - Le Temps Dans Le Cosmos.avi', it won't be added to the library.
2021-12-16 10:31:04.978 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire Astronomie - L'Univers 2011 - Les Limites du Cosmos USA Arte 2010 Fr.avi', it won't be added to the library.
2021-12-16 10:31:04.978 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire Scientifique - Destination Cosmos - 1 Sur 3 - Chasseurs De Planètes.avi', it won't be added to the library.
2021-12-16 10:31:04.979 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_-_Le_pouvoir_caché_des_virus_1280x720.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:04.979 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_1_sur_3_-_Chasseurs_de_Planètes.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.980 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_2_Sur_3_-_Météorites_Et_Astéroïdes.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.980 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Documentaire_Scientifique_-_Destination_Cosmos_-_3_Sur_3_-_Les_Secrets_De_L'Univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:04.981 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/E = mc² , la formule expliquée par Etienne Klein - Matière à contredire-ZCFG3Jx3tIU.mp4', it won't be added to the library.
2021-12-16 10:31:04.981 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/E_mc_-_Une_biographie_d_une_quation_d_Einstein.mp4', it won't be added to the library.
2021-12-16 10:31:04.982 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Echelle_de_distance_dans_l_univers.mp4', it won't be added to the library.
2021-12-16 10:31:04.982 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Ce que Darwin ne savait pas encore (Documentaire Arte) 480P.mp4', it won't be added to the library.
2021-12-16 10:31:04.983 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP02 - De quelle matière est fait notre monde 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.983 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP03- Quel est le secret de la vie 360P(1).mp4', it won't be added to the library.
2021-12-16 10:31:04.984 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com La fabuleuse histoire de la science EP04- Qu'est ce que l'énergie 360P.mp4', it won't be added to the library.
2021-12-16 10:31:04.984 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Les Yeux dans l'Univers - Documentaire en français 408P.mp4', it won't be added to the library.
2021-12-16 10:31:04.985 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Notre Univers - Documentaire en français 480p.mp4', it won't be added to the library.
2021-12-16 10:31:04.985 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/fbion.com Science grand format - Les cathédrales gothiques 720P.mp4', it won't be added to the library.
2021-12-16 10:31:04.986 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Il était une fois les gènes (1_2)-078143-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.986 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Il était une fois les gènes (2_2)-078143-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.987 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (1_3)-050724-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.987 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (2_3)-050724-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'histoire de l'électricité (3_3)-050724-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers de Stephen Hawking - Au-dela des trous noirs fr.divx', it won't be added to the library.
2021-12-16 10:31:04.988 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers Et Ses Mysteres - 4 - Jupiter , La Planete Geante.avi', it won't be added to the library.
2021-12-16 10:31:04.989 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mysteres - 09 - Galaxies.avi', it won't be added to the library.
2021-12-16 10:31:04.989 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mysteres - 41 - Sexe dans l'espace.avi', it won't be added to the library.
2021-12-16 10:31:04.990 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mystères - 040 - La vitesse de la lumière.avi', it won't be added to the library.
2021-12-16 10:31:04.990 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mystères - Galaxies.avi', it won't be added to the library.
2021-12-16 10:31:04.991 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers Et Ses Mystères - Les énigmes inexpliquées.avi', it won't be added to the library.
2021-12-16 10:31:04.991 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers et ses mystères Des extraterrestres sur notre planète DOC FR.mp4', it won't be added to the library.
2021-12-16 10:31:04.992 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.07.Mercure.et.Venus.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.992 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.08.Saturne.et.ses.anneaux.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.993 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.27.Les.Nebuleuses.720p.x264.avi', it won't be added to the library.
2021-12-16 10:31:04.993 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.29.Les.Objets.Monstrueux.de.l'Univers.720p.x264..avi', it won't be added to the library.
2021-12-16 10:31:04.994 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'univers.et.ses.Mysteres.42.Une.autre.Terre.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.994 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mysteres.54.Science-Fiction.et.fait.scientifique.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.995 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.03.La.fin.de.la.Terre.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.996 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.04.Jupiter,la.planète.géante.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.996 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.10.Vie.et.mort.d'une.étoile.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.997 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.13.A.la.recherche.de.la.Vie.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.997 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.15.Les.trous.cosmiques.720p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.998 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.34.Les.univers.parallèles.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.998 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L'Univers.et.ses.Mystères.41.Sexe.dans.l'espace.1080p.x264.ac3.mkv', it won't be added to the library.
2021-12-16 10:31:04.999 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/L.Expansion.de.L.Univers.est.elle.Infinie.DOC.FRENCH.720p.HDTV.x264-SRiZ.[emule-island.ru].mkv', it won't be added to the library.
2021-12-16 10:31:04.999 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La découverte de la relativité générale  Einstein-Hawking Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.000 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La fabuleuse histoire de la science - 1. Qu'est-ce que l'univers.avi', it won't be added to the library.
2021-12-16 10:31:05.000 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La fin de l'univers.avi', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (1_4)-038827-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (2_4)-038827-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.001 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (3_4)-038827-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.002 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos (4_4)-038827-004-A.mp4.part', it won't be added to the library.
2021-12-16 10:31:05.002 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos - 1l4 - Documentaire-Arte-French.avi', it won't be added to the library.
2021-12-16 10:31:05.003 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La magie du cosmos - 4l4 - Univers ou multi-univers (USA.2011)_ARTE HD.2012-11-08_clo2.avi', it won't be added to the library.
2021-12-16 10:31:05.003 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/La_gravité_(_gravitation)_HD_720p_-_Nouveau_documentaire_science_complet_en_francais.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:05.004 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Le grand mystère des mathématiques-061655-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.004 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Le jeûne, une nouvelle thérapie -043980-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.005 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les fabuleux pouvoirs de l'hypnose-062230-000-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.005 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les pouvoirs du cerveau - Notre intelligence dévoilée-057414-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.006 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Les_Plus_Gros_Trous_Noirs_de_l'Univers_.[emule-island.ru].mp4', it won't be added to the library.
2021-12-16 10:31:05.006 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Maîtriser l'énergie des étoiles, la révolution de demain  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.007 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Mystérieux trous noirs (version longue en français)  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.007 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Pasteur et Koch  un duel de géants dans le monde des microbes - ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.008 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Qu'est-ce que l'espace   La magie du cosmos Partie 2  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.008 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Qu'est-ce que le temps   La magie du cosmos Partie 1  ARTE.mp4', it won't be added to the library.
2021-12-16 10:31:05.009 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (1_5)-050567-001-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.009 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (2_5)-050567-002-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.010 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (3_5)-050567-003-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.010 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (4_5)-050567-004-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Quand Homo sapiens peupla la planète (5_5)-050567-005-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/sciences_grand_format_jupiter.mp4', it won't be added to the library.
2021-12-16 10:31:05.011 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Stephen_Hawking_01_-_Dieu_a-t-il_créé_l'univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.012 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Stephen_Hawking_02_-_La_Clé_de_l'univers.[emule-island.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.012 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/The.Universe.12.Les.Endroits.Les.Plus.Dangereux.De.L'Univers.FR.DVDRip-LuCarD84.[tvu.org.ru].avi', it won't be added to the library.
2021-12-16 10:31:05.013 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Trous_noirs_nouveau_documentaire_science_complet_2013_NEW.mp4', it won't be added to the library.
2021-12-16 10:31:05.013 T:26876 WARNING <general>: No information found for item '/donnees/documentaires/sciences/Xenius - Microscopes  - rendre visible l'invisible-078162-021-A.mp4', it won't be added to the library.
2021-12-16 10:31:05.155 T:26886    INFO <general>: CPythonInvoker(3, /usr/share/kodi/addons/inputstream.ffmpegdirect/resources/lib/runner.py): script successfully run
2021-12-16 10:31:05.162 T:26885    INFO <general>: [ context.venom ]  service started
2021-12-16 10:31:05.162 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.settings
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.traktManager
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.clearProviders
2021-12-16 10:31:05.163 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.clearBookmark
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.rescrape
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.playFromHere
2021-12-16 10:31:05.164 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.autoPlay
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.sourceSelect
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.findSimilar
2021-12-16 10:31:05.165 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.browseSeries
2021-12-16 10:31:05.166 T:26885    INFO <general>: [ context.venom ]  menu item enabled: context.venom.browseEpisodes
2021-12-16 10:31:05.174 T:26886    INFO <general>: Python interpreter stopped
2021-12-16 10:31:05.459 T:26888    INFO <general>: CPythonInvoker(5, /home/bibi/.kodi/addons/plugin.video.catchuptvandmore/service.py): script successfully run
2021-12-16 10:31:05.463 T:26888    INFO <general>: Python interpreter stopped
2021-12-16 10:31:05.775 T:26903    INFO <general>: [service.upnext] UpNextMonitor -> Service started
2021-12-16 10:31:06.131 T:26889    INFO <general>: [plugin.video.netflix (0)] The debug logging is set as DISABLED
2021-12-16 10:31:06.156 T:26891   ERROR <general>: Exception ignored deletion of interned string failed
2021-12-16 10:31:06.156 T:26891   ERROR <general>: :
                                                   
2021-12-16 10:31:06.156 T:26891   ERROR <general>: Traceback (most recent call last):
                                                   
2021-12-16 10:31:06.156 T:26891   ERROR <general>:   File "/usr/lib/python3.10/sqlite3/dbapi2.py", line 83, in register_adapters_and_converters
                                                   
2021-12-16 10:31:06.166 T:26891   ERROR <general>:     
2021-12-16 10:31:06.166 T:26891   ERROR <general>: register_converter("timestamp", convert_timestamp)
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 
                                                   
2021-12-16 10:31:06.166 T:26891   ERROR <general>: KeyError
2021-12-16 10:31:06.166 T:26891   ERROR <general>: : 
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 'timepart_full'
2021-12-16 10:31:06.166 T:26891   ERROR <general>: 
                                                   
############### END LOG FILE ################

############ END Kodi CRASH LOG #############

Downgrade Kodi too, I used the previous version.

Offline

#19 2021-12-16 21:57:43

kevku
Member
From: Estonia
Registered: 2009-11-21
Posts: 73

Re: Problems after update to python 3.10

There are so many issues with python 3.10, kodi, subinterpeters, that unless python3.9 is vendored in the kodi package like ffmpeg it is unlikely to work properly anytime soon.

Offline

#20 2021-12-16 22:17:20

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: Problems after update to python 3.10

For kodi, just use python-3.10.0-1 until the borked code is fixed.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#21 2021-12-17 23:17:51

ido50
Member
From: Israel
Registered: 2009-03-14
Posts: 25
Website

Re: Problems after update to python 3.10

I'm seeing many things broken after this upgrade, and a downgrade doesn't seem to help much too. I can no longer connect to my VPN (ProtonVPN), for example. I don't understand how this could happen. Isn't this release backwards compatible?

Offline

#22 2021-12-18 08:35:34

BobbyTables
Member
Registered: 2021-12-18
Posts: 4

Re: Problems after update to python 3.10

I’m seeing *many* broken python tools too. This has to be the biggest breakage I’ve seen when using Arch in years… I’m surprised it’s not a bigger deal?

I tried pacman -S python=python-3.10.0-1 but I get target not found. How do I downgrade to 3.10 I only have 3.9 in my /var/cache/pacman/pkg and the broken one in the remote packages.

Thoughts?

Offline

#23 2021-12-18 09:17:42

arojas
Developer
From: Spain
Registered: 2011-10-09
Posts: 2,093

Re: Problems after update to python 3.10

ido50 wrote:

I'm seeing many things broken after this upgrade

BobbyTables wrote:

I’m seeing *many* broken python tools too

Please post *actual* errors.

Online

#24 2021-12-18 09:41:40

BobbyTables
Member
Registered: 2021-12-18
Posts: 4

Re: Problems after update to python 3.10

protonvpn-cli:

Traceback (most recent call last):
  File "/usr/bin/protonvpn-cli", line 33, in <module>
    sys.exit(load_entry_point('protonvpn-cli==3.10.1', 'console_scripts', 'protonvpn-cli')())
  File "/usr/bin/protonvpn-cli", line 22, in importlib_load_entry_point
    for entry_point in distribution(dist_name).entry_points
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 919, in distribution
    return Distribution.from_name(distribution_name)
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 518, in from_name
    raise PackageNotFoundError(name)
importlib.metadata.PackageNotFoundError: No package metadata was found for protonvpn-cli

protonvpn:

Traceback (most recent call last):
  File "/usr/bin/protonvpn", line 33, in <module>
    sys.exit(load_entry_point('protonvpn-gui==1.6.0', 'console_scripts', 'protonvpn')())
  File "/usr/bin/protonvpn", line 22, in importlib_load_entry_point
    for entry_point in distribution(dist_name).entry_points
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 919, in distribution
    return Distribution.from_name(distribution_name)
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 518, in from_name
    raise PackageNotFoundError(name)
importlib.metadata.PackageNotFoundError: No package metadata was found for protonvpn-gui

youtube-dl *wasn't* working with a similar error (No package metadata) however latest package, youtube-dl-2021.12.17-1 from yesterday, no longer has this issue so maybe they fixed it or there was some other change.

kodi not working as reported by other people.

Last edited by BobbyTables (2021-12-18 09:43:35)

Offline

#25 2021-12-18 12:00:19

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,868

Re: Problems after update to python 3.10

Protonvpn-cli is an aur package, have you tried rebuilding it against python 3.10.1 ?

Last edited by Lone_Wolf (2021-12-18 12:00:29)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

Board footer

Powered by FluxBB