Skip to content

Instantly share code, notes, and snippets.

@jeanthom
Last active December 13, 2019 20:41
Show Gist options
  • Save jeanthom/8e3b73649d3b0d2ea489958f9038fa82 to your computer and use it in GitHub Desktop.
Save jeanthom/8e3b73649d3b0d2ea489958f9038fa82 to your computer and use it in GitHub Desktop.
nMigen assert formal issue
from nmigen import *
from nmigen.test.utils import *
from nmigen.asserts import *
from nmigen.back.pysim import *
class EuclidianDivider(Elaboratable):
def __init__(self, width):
self.a = Signal(width)
self.b = Signal(width)
self.q = Signal(width)
self.r = Signal(width)
self.done = Signal()
self.start = Signal()
def elaborate(self, platform):
m = Module()
b = Signal.like(self.b)
RminB = Signal.like(self.b)
m.d.comb += RminB.eq(self.r-b)
with m.FSM():
with m.State("WaitForStartLow"):
with m.If(~self.start):
m.next = "WaitForStartHigh"
with m.State("WaitForStartHigh"):
with m.If(self.start):
m.next = "LoadReg"
with m.State("LoadReg"):
m.d.sync += [
b.eq(self.b),
self.r.eq(self.a),
self.q.eq(0),
self.done.eq(0)
]
m.next = "Process"
with m.State("Process"):
m.d.sync += [
self.q.eq(self.q+1),
self.r.eq(RminB)
]
with m.If(RminB < b):
m.d.sync += self.done.eq(1)
m.next = "WaitForStartLow"
return m
class DividerResultSpec(Elaboratable):
def __init__(self, dut):
self.dut = dut
def elaborate(self, platform):
m = Module()
m.submodules.dut = dut = self.dut
m.d.comb += [
Assume(dut.b != 0),
Assume(dut.done),
Assert(dut.a == dut.b*dut.q+dut.r)
]
return m
class ShouldTerminateSpec(Elaboratable):
def __init__(self, cls):
self.cls = cls
def elaborate(self, platform):
m = Module()
return m
class DividerTestCase(FHDLTestCase):
def test_result(self, dut):
self.assertFormal(DividerResultSpec(dut), mode="bmc", depth=10)
if __name__ == "__main__":
div = EuclidianDivider(32)
with Simulator(div) as sim:
def process():
yield div.a.eq(10)
yield div.b.eq(3)
yield div.start.eq(0)
yield Tick()
yield div.start.eq(1)
yield Tick()
print("r = ", (yield div.r), "q = ", (yield div.q), "done = ", (yield div.done))
while (yield div.done) == 0:
yield Tick()
print("r = ", (yield div.r), "q = ", (yield div.q), "done = ", (yield div.done))
sim.add_clock(1/48000)
sim.add_process(process)
sim.run()
tc = DividerTestCase()
tc.test_result(EuclidianDivider(32))
execve("/usr/bin/python3", ["python3", "formal.py"], 0x7ffc58e20030 /* 63 vars */) = 0
brk(NULL) = 0x56215c60a000
arch_prctl(0x3001 /* ARCH_??? */, 0x7fff2164d9b0) = -1 EINVAL (Invalid argument)
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a44a05000
close(3) = 0
openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P@\2\0\0\0\0\0"..., 832) = 832
lseek(3, 792, SEEK_SET) = 792
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\346\4=\16,\314\275\4\36$\325#\200%i\326"..., 68) = 68
fstat(3, {st_mode=S_IFREG|0755, st_size=6697832, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a44a03000
lseek(3, 792, SEEK_SET) = 792
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\346\4=\16,\314\275\4\36$\325#\200%i\326"..., 68) = 68
lseek(3, 864, SEEK_SET) = 864
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1857472, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a4483d000
mprotect(0x7f5a4485f000, 1679360, PROT_NONE) = 0
mmap(0x7f5a4485f000, 1363968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x22000) = 0x7f5a4485f000
mmap(0x7f5a449ac000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16f000) = 0x7f5a449ac000
mmap(0x7f5a449f9000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1bb000) = 0x7f5a449f9000
mmap(0x7f5a449ff000, 14272, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a449ff000
close(3) = 0
openat(AT_FDCWD, "/lib64/libpython3.7m.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\204\6\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3371192, ...}) = 0
mmap(NULL, 3446704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a444f3000
mprotect(0x7f5a44555000, 2457600, PROT_NONE) = 0
mmap(0x7f5a44555000, 1724416, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x62000) = 0x7f5a44555000
mmap(0x7f5a446fa000, 729088, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x207000) = 0x7f5a446fa000
mmap(0x7f5a447ad000, 454656, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b9000) = 0x7f5a447ad000
mmap(0x7f5a4481c000, 133040, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a4481c000
close(3) = 0
openat(AT_FDCWD, "/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=823192, ...}) = 0
lseek(3, 808, SEEK_SET) = 808
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 132288, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a444d2000
mmap(0x7f5a444d8000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a444d8000
mmap(0x7f5a444e7000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f5a444e7000
mmap(0x7f5a444ed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7f5a444ed000
mmap(0x7f5a444ef000, 13504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a444ef000
close(3) = 0
openat(AT_FDCWD, "/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=61872, ...}) = 0
mmap(NULL, 20784, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a444cc000
mmap(0x7f5a444cd000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a444cd000
mmap(0x7f5a444cf000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a444cf000
mmap(0x7f5a444d0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a444d0000
close(3) = 0
openat(AT_FDCWD, "/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\23\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=36544, ...}) = 0
mmap(NULL, 16656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a444c7000
mmap(0x7f5a444c8000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a444c8000
mmap(0x7f5a444c9000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a444c9000
mmap(0x7f5a444ca000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a444ca000
close(3) = 0
openat(AT_FDCWD, "/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\323\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3621096, ...}) = 0
mmap(NULL, 1331456, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a44381000
mmap(0x7f5a4438e000, 638976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7f5a4438e000
mmap(0x7f5a4442a000, 634880, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa9000) = 0x7f5a4442a000
mmap(0x7f5a444c5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x143000) = 0x7f5a444c5000
close(3) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a4437f000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a4437d000
arch_prctl(ARCH_SET_FS, 0x7f5a44380680) = 0
mprotect(0x7f5a449f9000, 16384, PROT_READ) = 0
mprotect(0x7f5a444c5000, 4096, PROT_READ) = 0
mprotect(0x7f5a444ca000, 4096, PROT_READ) = 0
mprotect(0x7f5a444d0000, 4096, PROT_READ) = 0
mprotect(0x7f5a444ed000, 4096, PROT_READ) = 0
mprotect(0x7f5a447ad000, 24576, PROT_READ) = 0
mprotect(0x56215a832000, 4096, PROT_READ) = 0
mprotect(0x7f5a44a61000, 4096, PROT_READ) = 0
munmap(0x7f5a44a05000, 202255) = 0
set_tid_address(0x7f5a44380950) = 21061
set_robust_list(0x7f5a44380960, 24) = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f5a444d8c50, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f5a444e4c60}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7f5a444d8cf0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f5a444e4c60}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL) = 0x56215c60a000
brk(0x56215c62b000) = 0x56215c62b000
brk(NULL) = 0x56215c62b000
openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=217750512, ...}) = 0
mmap(NULL, 217750512, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a373d3000
close(3) = 0
openat(AT_FDCWD, "/usr/lib64/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26398, ...}) = 0
mmap(NULL, 26398, PROT_READ, MAP_SHARED, 3, 0) = 0x7f5a44a30000
close(3) = 0
futex(0x7f5a449fea34, FUTEX_WAKE_PRIVATE, 2147483647) = 0
stat("/usr/share/Modules/bin/python3", 0x7fff21641280) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/python3", 0x7fff21641280) = -1 ENOENT (No such file or directory)
stat("/usr/local/sbin/python3", 0x7fff21641280) = -1 ENOENT (No such file or directory)
stat("/usr/bin/python3", {st_mode=S_IFREG|0755, st_size=17608, ...}) = 0
readlink("/usr/bin/python3", "python3.7", 4096) = 9
readlink("/usr/bin/python3.7", 0x7fff2163b1d0, 4096) = -1 EINVAL (Invalid argument)
openat(AT_FDCWD, "/usr/bin/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup", 0x7fff21641280) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/os.py", 0x7fff2163c160) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/os.pyc", 0x7fff2163c160) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
stat("/usr/bin/pybuilddir.txt", 0x7fff2163c260) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/lib-dynload", 0x7fff2163c260) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
getrandom("\xf2\x3c\xc2\x9b\x23\x4b\x08\x3d\x86\x3a\xdf\xb5\x5e\xc6\x23\xa0\xf7\x24\xb3\xa9\x0c\x24\xdf\xb9", 24, GRND_NONBLOCK) = 24
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37393000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37353000
brk(NULL) = 0x56215c62b000
brk(0x56215c64f000) = 0x56215c64f000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37313000
brk(NULL) = 0x56215c64f000
brk(0x56215c671000) = 0x56215c671000
sysinfo({uptime=92977, loads=[1344, 11488, 17376], totalram=8158568448, freeram=449814528, sharedram=906248192, bufferram=82575360, totalswap=8317300736, freeswap=7658856448, procs=1008, totalhigh=0, freehigh=0, mem_unit=1}) = 0
sigaltstack({ss_sp=0x56215c628fc0, ss_flags=0, ss_size=16384}, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
stat("/usr/lib64/python37.zip", 0x7fff2164bd20) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
stat("/usr/lib64/python37.zip", 0x7fff2164b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 207 entries */, 32768) = 6920
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164b7b0) = -1 ENOENT (No such file or directory)
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a372d3000
munmap(0x7f5a372d3000, 262144) = 0
stat("/usr/lib64/python3.7/encodings/__init__.abi3.so", 0x7fff2164b7b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/encodings/__init__.so", 0x7fff2164b7b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a372d3000
stat("/usr/lib64/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
fstat(3, {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]$\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 3932) = 3931
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
stat("/usr/lib64/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/codecs.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34059, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34059, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\272\216\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0,\0\0"..., 34060) = 34059
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 128 entries */, 32768) = 4336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
stat("/usr/lib64/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/aliases.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6280, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6280, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\331<\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0D\1\0"..., 6281) = 6280
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
stat("/usr/lib64/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/utf_8.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1598, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1598, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\355\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1599) = 1598
read(3, "", 1) = 0
close(3) = 0
rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
getpid() = 21061
rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=0x7f5a4469ea00, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
stat("/usr/lib64/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/latin_1.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1880, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1880, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\360\4\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 1881) = 1880
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
stat("/usr/lib64/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/io.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3393, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3393, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\275\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 3394) = 3393
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
stat("/usr/lib64/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6435, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6435, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\314\25\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 6436) = 6435
read(3, "", 1) = 0
close(3) = 0
dup(0) = 3
close(3) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(1) = 3
close(3) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(2) = 3
close(3) = 0
fstat(2, {st_mode=S_IFREG|0664, st_size=23207, ...}) = 0
ioctl(2, TCGETS, 0x7fff2164ce00) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(2, 0, SEEK_CUR) = 23360
ioctl(2, TCGETS, 0x7fff2164d100) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(2, TCGETS, 0x7fff2164d010) = -1 ENOTTY (Inappropriate ioctl for device)
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
stat("/usr/lib64/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_bootlocale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1233, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1233, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\t\7\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 1234) = 1233
read(3, "", 1) = 0
close(3) = 0
lseek(2, 0, SEEK_CUR) = 24284
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21816, ...}) = 0
stat("/usr/lib64/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21816, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/site.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16846, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16846, ...}) = 0
brk(NULL) = 0x56215c671000
brk(0x56215c694000) = 0x56215c694000
read(3, "B\r\r\n\0\0\0\0\216P\250]8U\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 16847) = 16846
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37293000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/os.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=29708, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=29708, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\233\223\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 29709) = 29708
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
stat("/usr/lib64/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/stat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3857, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3857, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\256\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 3858) = 3857
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
stat("/usr/lib64/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/posixpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10413, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10413, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\233=\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 10414) = 10413
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 151552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a44a0b000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4912, ...}) = 0
stat("/usr/lib64/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4912, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/genericpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3888, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3888, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]0\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 3889) = 3888
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
stat("/usr/lib64/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_collections_abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=28926, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=28926, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]8g\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 28927) = 28926
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37253000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
stat("/usr/lib64/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_sitebuiltins.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3449, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3449, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]+\f\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3450) = 3449
read(3, "", 1) = 0
close(3) = 0
stat("/usr/bin/pyvenv.cfg", 0x7fff2164b6c0) = -1 ENOENT (No such file or directory)
stat("/usr/pyvenv.cfg", 0x7fff2164b6c0) = -1 ENOENT (No such file or directory)
geteuid() = 1000
getuid() = 1000
getegid() = 1000
getgid() = 1000
stat("/home/jeanthomas/.local/lib/python3.7/site-packages", 0x7fff2164b9a0) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 48 entries */, 32768) = 2160
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/easy-install.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1111, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b3f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7fff2164b320) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "/home/jeanthomas/Documents/Chubb"..., 8192) = 1111
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/setuptools.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=33, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b3f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7fff2164b320) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "/usr/lib/python3.7/site-packages"..., 8192) = 33
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 147 entries */, 32768) = 5832
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7-nspkg.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=534, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b3f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7fff2164b320) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "import sys, types, os;has_mfs = "..., 8192) = 534
brk(NULL) = 0x56215c694000
brk(0x56215c6b7000) = 0x56215c6b7000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
stat("/usr/lib64/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/types.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=8960, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=8960, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\251&\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 8961) = 8960
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/importlib/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649030) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.abi3.so", 0x7fff21649030) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.so", 0x7fff21649030) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.py", {st_mode=S_IFREG|0644, st_size=6037, ...}) = 0
stat("/usr/lib64/python3.7/importlib/__init__.py", {st_mode=S_IFREG|0644, st_size=6037, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\225\27\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 3717) = 3716
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
stat("/usr/lib64/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/warnings.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13924, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13924, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\22O\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 13925) = 13924
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 10 entries */, 32768) = 328
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib/util.py", {st_mode=S_IFREG|0644, st_size=11319, ...}) = 0
stat("/usr/lib64/python3.7/importlib/util.py", {st_mode=S_IFREG|0644, st_size=11319, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/util.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=9340, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=9340, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]7,\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 9341) = 9340
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib/abc.py", {st_mode=S_IFREG|0644, st_size=12873, ...}) = 0
stat("/usr/lib64/python3.7/importlib/abc.py", {st_mode=S_IFREG|0644, st_size=12873, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13471, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13471, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]I2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 13472) = 13471
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib/machinery.py", {st_mode=S_IFREG|0644, st_size=844, ...}) = 0
stat("/usr/lib64/python3.7/importlib/machinery.py", {st_mode=S_IFREG|0644, st_size=844, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/machinery.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=956, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=956, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]L\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 957) = 956
read(4, "", 1) = 0
close(4) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37213000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/contextlib.py", {st_mode=S_IFREG|0644, st_size=24762, ...}) = 0
stat("/usr/lib64/python3.7/contextlib.py", {st_mode=S_IFREG|0644, st_size=24762, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/contextlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=20442, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=20442, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\272`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 20443) = 20442
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/collections/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21647920) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.abi3.so", 0x7fff21647920) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.so", 0x7fff21647920) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48380, ...}) = 0
stat("/usr/lib64/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48380, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=47076, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=47076, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\374\274\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 47077) = 47076
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
stat("/usr/lib64/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/operator.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13884, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13884, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]o*\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0006\0\0"..., 13885) = 13884
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2243, ...}) = 0
stat("/usr/lib64/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2243, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/keyword.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1793, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1793, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\303\10\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0#\0\0"..., 1794) = 1793
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
stat("/usr/lib64/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/heapq.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14346, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=14346, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\351Y\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 14347) = 14346
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 68 entries */, 32768) = 4232
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=27152, ...}) = 0
futex(0x7f5a444d10e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\20\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=27152, ...}) = 0
mmap(NULL, 27920, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3720c000
mmap(0x7f5a3720d000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7f5a3720d000
mmap(0x7f5a3720f000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a3720f000
mmap(0x7f5a37210000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a37210000
close(4) = 0
mprotect(0x7f5a37210000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a371cc000
munmap(0x7f5a371cc000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a371cc000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
stat("/usr/lib64/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/reprlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=5334, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=5334, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\223\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 5335) = 5334
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32932, ...}) = 0
stat("/usr/lib64/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32932, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/functools.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=24215, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=24215, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\244\200\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 24216) = 24215
read(4, "", 1) = 0
close(4) = 0
brk(NULL) = 0x56215c6b7000
brk(0x56215c6da000) = 0x56215c6da000
brk(NULL) = 0x56215c6da000
brk(NULL) = 0x56215c6da000
brk(0x56215c6d1000) = 0x56215c6d1000
brk(NULL) = 0x56215c6d1000
brk(NULL) = 0x56215c6d1000
brk(NULL) = 0x56215c6d1000
brk(0x56215c6cf000) = 0x56215c6cf000
brk(NULL) = 0x56215c6cf000
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(4, /* 147 entries */, 32768) = 5832
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164a320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff2164a320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff2164a320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff2164a320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff2164a320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/abrt3.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=31, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b3f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7fff2164b320) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "import abrt_exception_handler3\n", 8192) = 31
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 8 entries */, 32768) = 296
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 48 entries */, 32768) = 2160
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 14 entries */, 32768) = 432
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 120
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 192
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 192
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 120
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 15 entries */, 32768) = 456
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 15 entries */, 32768) = 424
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 9 entries */, 32768) = 272
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
stat("/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/__pycache__/abrt_exception_handler3.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4175, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4175, ...}) = 0
read(4, "B\r\r\n\0\0\0\0002\t\247]\322\32\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 4176) = 4175
read(4, "", 1) = 0
close(4) = 0
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY) = 3
ioctl(3, FIOCLEX) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
lseek(3, 0, SEEK_SET) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 2737) = 2737
read(3, "EuclidianDivider(32))\n", 4096) = 22
close(3) = 0
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
readlink("formal.py", 0x7fff2163c3f0, 4096) = -1 EINVAL (Invalid argument)
getcwd("/home/jeanthomas", 4096) = 17
lstat("/home/jeanthomas/formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY) = 3
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164d730) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
lseek(3, 0, SEEK_SET) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3718c000
read(3, "", 4096) = 0
munmap(0x7f5a3718c000, 262144) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3718c000
munmap(0x7f5a3718c000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3718c000
munmap(0x7f5a3718c000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3718c000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
getdents64(3, /* 288 entries */, 32768) = 10792
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164bb60) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.abi3.so", 0x7fff2164bb60) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.so", 0x7fff2164bb60) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.py", {st_mode=S_IFREG|0644, st_size=526, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.py", {st_mode=S_IFREG|0644, st_size=526, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=621, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=621, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\16\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 622) = 621
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.abi3.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.py", {st_mode=S_IFREG|0644, st_size=106677, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.py", {st_mode=S_IFREG|0644, st_size=106677, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=98489, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=98489, ...}) = 0
brk(NULL) = 0x56215c6cf000
brk(0x56215c6f8000) = 0x56215c6f8000
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\265\240\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0G\0\0"..., 98490) = 98489
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/__future__.py", {st_mode=S_IFREG|0644, st_size=5101, ...}) = 0
stat("/usr/lib64/python3.7/__future__.py", {st_mode=S_IFREG|0644, st_size=5101, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/__future__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4116, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4116, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\355\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 4117) = 4116
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3714c000
munmap(0x7f5a3714c000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3714c000
openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2962, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2962, ...}) = 0
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\0"..., 4096) = 2962
lseek(3, -1863, SEEK_CUR) = 1099
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\0"..., 4096) = 1863
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
stat("/usr/lib64/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/re.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13788, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13788, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]X;\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\35\0\0"..., 13789) = 13788
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34777, ...}) = 0
stat("/usr/lib64/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34777, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/enum.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24254, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24254, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\331\207\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 24255) = 24254
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
stat("/usr/lib64/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_compile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15187, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15187, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\370h\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 15188) = 15187
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39156, ...}) = 0
stat("/usr/lib64/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39156, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_parse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21270, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21270, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\364\230\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 21271) = 21270
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
stat("/usr/lib64/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_constants.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6275, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6275, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\t\34\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0"..., 6276) = 6275
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3710c000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
stat("/usr/lib64/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/copyreg.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]i\33\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 4229) = 4228
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/zipfile.py", {st_mode=S_IFREG|0644, st_size=80522, ...}) = 0
stat("/usr/lib64/python3.7/zipfile.py", {st_mode=S_IFREG|0644, st_size=80522, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/zipfile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=49871, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=49871, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\212:\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 49872) = 49871
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
stat("/usr/lib64/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/shutil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30964, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30964, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\336\243\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 30965) = 30964
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
stat("/usr/lib64/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/fnmatch.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\330\17\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3322) = 3321
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=42640, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=42640, ...}) = 0
mmap(NULL, 43200, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a37101000
mprotect(0x7f5a37103000, 24576, PROT_NONE) = 0
mmap(0x7f5a37103000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a37103000
mmap(0x7f5a37107000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a37107000
mmap(0x7f5a37109000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a37109000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a370cf000
close(3) = 0
openat(AT_FDCWD, "/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3605\0\0\0\0\0\0"..., 832) = 832
lseek(3, 94320, SEEK_SET) = 94320
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=131200, ...}) = 0
lseek(3, 94320, SEEK_SET) = 94320
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 102408, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370b5000
mmap(0x7f5a370b8000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a370b8000
mmap(0x7f5a370c6000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f5a370c6000
mmap(0x7f5a370cd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f5a370cd000
mmap(0x7f5a370ce000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a370ce000
close(3) = 0
mprotect(0x7f5a370cd000, 4096, PROT_READ) = 0
mprotect(0x7f5a37109000, 4096, PROT_READ) = 0
munmap(0x7f5a370cf000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
stat("/usr/lib64/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/bz2.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11165, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11165, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]z0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 11166) = 11165
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37075000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
stat("/usr/lib64/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_compression.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\334\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 4109) = 4108
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49049, ...}) = 0
stat("/usr/lib64/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49049, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/threading.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=37870, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=37870, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\231\277\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 37871) = 37870
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
stat("/usr/lib64/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/traceback.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19607, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19607, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\216[\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 19608) = 19607
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
stat("/usr/lib64/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/linecache.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\300\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 3774) = 3773
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
stat("/usr/lib64/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/tokenize.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=17815, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=17815, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\227i\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0/\0\0"..., 17816) = 17815
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
stat("/usr/lib64/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/token.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3583, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3583, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\263\16\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3584) = 3583
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c6f8000
brk(0x56215c71f000) = 0x56215c71f000
brk(NULL) = 0x56215c71f000
brk(NULL) = 0x56215c71f000
brk(0x56215c716000) = 0x56215c716000
brk(NULL) = 0x56215c716000
brk(NULL) = 0x56215c716000
brk(NULL) = 0x56215c716000
brk(0x56215c714000) = 0x56215c714000
brk(NULL) = 0x56215c714000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a37035000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
stat("/usr/lib64/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_weakrefset.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7446, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7446, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]/\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 7447) = 7446
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=27160, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=27160, ...}) = 0
mmap(NULL, 27864, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370fa000
mmap(0x7f5a370fc000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370fc000
mmap(0x7f5a370fe000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a370fe000
mmap(0x7f5a370ff000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a370ff000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a37003000
close(3) = 0
openat(AT_FDCWD, "/lib64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000%\0\0\0\0\0\0"..., 832) = 832
lseek(3, 70984, SEEK_SET) = 70984
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=92376, ...}) = 0
lseek(3, 70984, SEEK_SET) = 70984
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 80904, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370e6000
mmap(0x7f5a370e8000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370e8000
mmap(0x7f5a370f6000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f5a370f6000
mmap(0x7f5a370f8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f5a370f8000
close(3) = 0
mprotect(0x7f5a370f8000, 4096, PROT_READ) = 0
mprotect(0x7f5a370ff000, 4096, PROT_READ) = 0
munmap(0x7f5a37003000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
stat("/usr/lib64/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/lzma.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11923, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11923, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\2672\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0$\0\0"..., 11924) = 11923
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 299008, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36fec000
munmap(0x7f5a44a0b000, 151552) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=42872, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 $\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=42872, ...}) = 0
mmap(NULL, 43336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a44a25000
mmap(0x7f5a44a27000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a44a27000
mmap(0x7f5a44a2b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a44a2b000
mmap(0x7f5a44a2d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a44a2d000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a36fba000
close(3) = 0
openat(AT_FDCWD, "/lib64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3609\0\0\0\0\0\0"..., 832) = 832
lseek(3, 154368, SEEK_SET) = 154368
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=299384, ...}) = 0
lseek(3, 154368, SEEK_SET) = 154368
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 163848, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36f91000
mprotect(0x7f5a36f94000, 147456, PROT_NONE) = 0
mmap(0x7f5a36f94000, 98304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a36f94000
mmap(0x7f5a36fac000, 45056, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f5a36fac000
mmap(0x7f5a36fb8000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f5a36fb8000
mmap(0x7f5a36fb9000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36fb9000
close(3) = 0
mprotect(0x7f5a36fb8000, 4096, PROT_READ) = 0
mprotect(0x7f5a44a2d000, 4096, PROT_READ) = 0
munmap(0x7f5a36fba000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=17352, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17352, ...}) = 0
mmap(NULL, 18672, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a44a20000
mmap(0x7f5a44a21000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a44a21000
mmap(0x7f5a44a22000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a44a22000
mmap(0x7f5a44a23000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a44a23000
close(3) = 0
mprotect(0x7f5a44a23000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
stat("/usr/lib64/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/struct.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\1\1\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 319) = 318
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=56992, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 4\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=56992, ...}) = 0
mmap(NULL, 56808, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a44a12000
mprotect(0x7f5a44a15000, 32768, PROT_NONE) = 0
mmap(0x7f5a44a15000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a44a15000
mmap(0x7f5a44a1a000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f5a44a1a000
mmap(0x7f5a44a1d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f5a44a1d000
close(3) = 0
mprotect(0x7f5a44a1d000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/binascii.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=35088, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/binascii.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35088, ...}) = 0
mmap(NULL, 35704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a44a09000
mmap(0x7f5a44a0b000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a44a0b000
mmap(0x7f5a44a0e000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5a44a0e000
mmap(0x7f5a44a10000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a44a10000
close(3) = 0
mprotect(0x7f5a44a10000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/pkgutil.py", {st_mode=S_IFREG|0644, st_size=21461, ...}) = 0
stat("/usr/lib64/python3.7/pkgutil.py", {st_mode=S_IFREG|0644, st_size=21461, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/pkgutil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16344, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16344, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\325S\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 16345) = 16344
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c714000
brk(0x56215c73c000) = 0x56215c73c000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/weakref.py", {st_mode=S_IFREG|0644, st_size=21508, ...}) = 0
stat("/usr/lib64/python3.7/weakref.py", {st_mode=S_IFREG|0644, st_size=21508, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/weakref.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19553, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19553, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\4T\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 19554) = 19553
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
munmap(0x7f5a36f51000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
munmap(0x7f5a36f51000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
munmap(0x7f5a36f51000, 262144) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
munmap(0x7f5a36f51000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
munmap(0x7f5a36f51000, 262144) = 0
stat("/usr/lib64/python3.7/platform.py", {st_mode=S_IFREG|0755, st_size=46959, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f51000
stat("/usr/lib64/python3.7/platform.py", {st_mode=S_IFREG|0755, st_size=46959, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/platform.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=28148, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=28148, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o\267\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 28149) = 28148
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/subprocess.py", {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
stat("/usr/lib64/python3.7/subprocess.py", {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/subprocess.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=39173, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=39173, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\373\27\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 39174) = 39173
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
stat("/usr/lib64/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/signal.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2496, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2496, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]K\10\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 2497) = 2496
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_posixsubprocess.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=24864, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_posixsubprocess.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=24864, ...}) = 0
mmap(NULL, 25712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370df000
mmap(0x7f5a370e1000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370e1000
mmap(0x7f5a370e3000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a370e3000
mmap(0x7f5a370e4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a370e4000
close(3) = 0
mprotect(0x7f5a370e4000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=37488, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=37488, ...}) = 0
mmap(NULL, 38072, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370d5000
mmap(0x7f5a370d7000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370d7000
mmap(0x7f5a370db000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a370db000
mmap(0x7f5a370dc000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a370dc000
close(3) = 0
mprotect(0x7f5a370dc000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/selectors.py", {st_mode=S_IFREG|0644, st_size=18561, ...}) = 0
stat("/usr/lib64/python3.7/selectors.py", {st_mode=S_IFREG|0644, st_size=18561, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/selectors.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16932, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16932, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\201H\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 16933) = 16932
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
stat("/usr/lib64/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=189, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=189, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]D\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 190) = 189
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/math.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=52152, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/math.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\00004\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=52152, ...}) = 0
mmap(NULL, 52392, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36fdf000
mmap(0x7f5a36fe2000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a36fe2000
mmap(0x7f5a36fe7000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f5a36fe7000
mmap(0x7f5a36fe9000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f5a36fe9000
close(3) = 0
mprotect(0x7f5a36fe9000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f11000
munmap(0x7f5a36f11000, 262144) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/plistlib.py", {st_mode=S_IFREG|0644, st_size=29902, ...}) = 0
stat("/usr/lib64/python3.7/plistlib.py", {st_mode=S_IFREG|0644, st_size=29902, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/plistlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=25096, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=25096, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\316t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 25097) = 25096
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36f11000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/datetime.py", {st_mode=S_IFREG|0644, st_size=86544, ...}) = 0
stat("/usr/lib64/python3.7/datetime.py", {st_mode=S_IFREG|0644, st_size=86544, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/datetime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=57211, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=57211, ...}) = 0
brk(NULL) = 0x56215c73c000
brk(0x56215c75d000) = 0x56215c75d000
read(3, "B\r\r\n\0\0\0\0\204\367\244]\20R\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 57212) = 57211
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_datetime.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=131664, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_datetime.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 U\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=131664, ...}) = 0
mmap(NULL, 130736, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36fbf000
mmap(0x7f5a36fc4000, 73728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5a36fc4000
mmap(0x7f5a36fd6000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f5a36fd6000
mmap(0x7f5a36fdc000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7f5a36fdc000
close(3) = 0
mprotect(0x7f5a36fdc000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36ed1000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/xml/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff216478a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.abi3.so", 0x7fff216478a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.so", 0x7fff216478a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.py", {st_mode=S_IFREG|0644, st_size=557, ...}) = 0
stat("/usr/lib64/python3.7/xml/__init__.py", {st_mode=S_IFREG|0644, st_size=557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=690, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=690, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]-\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 691) = 690
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff216481d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.abi3.so", 0x7fff216481d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.so", 0x7fff216481d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.py", {st_mode=S_IFREG|0644, st_size=167, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers/__init__.py", {st_mode=S_IFREG|0644, st_size=167, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=303, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=303, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\247\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 304) = 303
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers/expat.py", {st_mode=S_IFREG|0644, st_size=248, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers/expat.py", {st_mode=S_IFREG|0644, st_size=248, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers/__pycache__/expat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=332, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=332, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\370\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 333) = 332
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/pyexpat.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=71056, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/pyexpat.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260E\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=71056, ...}) = 0
mmap(NULL, 71488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36ebf000
mmap(0x7f5a36ec3000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a36ec3000
mmap(0x7f5a36ecb000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f5a36ecb000
mmap(0x7f5a36ece000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f5a36ece000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a36e8d000
close(3) = 0
openat(AT_FDCWD, "/lib64/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360B\0\0\0\0\0\0"..., 832) = 832
lseek(3, 169952, SEEK_SET) = 169952
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=191704, ...}) = 0
lseek(3, 169952, SEEK_SET) = 169952
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 184328, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36e5f000
mprotect(0x7f5a36e63000, 159744, PROT_NONE) = 0
mmap(0x7f5a36e63000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a36e63000
mmap(0x7f5a36e7f000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f5a36e7f000
mmap(0x7f5a36e8a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7f5a36e8a000
mmap(0x7f5a36e8c000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36e8c000
close(3) = 0
mprotect(0x7f5a36e8a000, 8192, PROT_READ) = 0
mprotect(0x7f5a36ece000, 4096, PROT_READ) = 0
munmap(0x7f5a36e8d000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/email/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff216491f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.abi3.so", 0x7fff216491f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.so", 0x7fff216491f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.py", {st_mode=S_IFREG|0644, st_size=1766, ...}) = 0
stat("/usr/lib64/python3.7/email/__init__.py", {st_mode=S_IFREG|0644, st_size=1766, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1675, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1675, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\346\6\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 1676) = 1675
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 25 entries */, 32768) = 864
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email/parser.py", {st_mode=S_IFREG|0644, st_size=5041, ...}) = 0
stat("/usr/lib64/python3.7/email/parser.py", {st_mode=S_IFREG|0644, st_size=5041, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/parser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5731, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5731, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\261\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 5732) = 5731
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/feedparser.py", {st_mode=S_IFREG|0644, st_size=22780, ...}) = 0
stat("/usr/lib64/python3.7/email/feedparser.py", {st_mode=S_IFREG|0644, st_size=22780, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/feedparser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10613, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10613, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\374X\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 10614) = 10613
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/errors.py", {st_mode=S_IFREG|0644, st_size=3647, ...}) = 0
stat("/usr/lib64/python3.7/email/errors.py", {st_mode=S_IFREG|0644, st_size=3647, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/errors.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6175, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6175, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]?\16\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 6176) = 6175
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/_policybase.py", {st_mode=S_IFREG|0644, st_size=15073, ...}) = 0
stat("/usr/lib64/python3.7/email/_policybase.py", {st_mode=S_IFREG|0644, st_size=15073, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/_policybase.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14834, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14834, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\341:\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 14835) = 14834
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/header.py", {st_mode=S_IFREG|0644, st_size=24102, ...}) = 0
stat("/usr/lib64/python3.7/email/header.py", {st_mode=S_IFREG|0644, st_size=24102, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/header.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16370, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16370, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]&^\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 16371) = 16370
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/quoprimime.py", {st_mode=S_IFREG|0644, st_size=9858, ...}) = 0
stat("/usr/lib64/python3.7/email/quoprimime.py", {st_mode=S_IFREG|0644, st_size=9858, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/quoprimime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7648, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7648, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\202&\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 7649) = 7648
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/string.py", {st_mode=S_IFREG|0644, st_size=11564, ...}) = 0
stat("/usr/lib64/python3.7/string.py", {st_mode=S_IFREG|0644, st_size=11564, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/string.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7819, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7819, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244],-\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 7820) = 7819
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/base64mime.py", {st_mode=S_IFREG|0644, st_size=3558, ...}) = 0
stat("/usr/lib64/python3.7/email/base64mime.py", {st_mode=S_IFREG|0644, st_size=3558, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/base64mime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3219, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3219, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\346\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 3220) = 3219
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/base64.py", {st_mode=S_IFREG|0755, st_size=20378, ...}) = 0
stat("/usr/lib64/python3.7/base64.py", {st_mode=S_IFREG|0755, st_size=20378, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/base64.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16972, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16972, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\232O\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 16973) = 16972
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/charset.py", {st_mode=S_IFREG|0644, st_size=17151, ...}) = 0
stat("/usr/lib64/python3.7/email/charset.py", {st_mode=S_IFREG|0644, st_size=17151, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/charset.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11513, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11513, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\377B\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 11514) = 11513
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/encoders.py", {st_mode=S_IFREG|0644, st_size=1786, ...}) = 0
stat("/usr/lib64/python3.7/email/encoders.py", {st_mode=S_IFREG|0644, st_size=1786, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/encoders.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1648, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1648, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\372\6\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1649) = 1648
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/quopri.py", {st_mode=S_IFREG|0755, st_size=7252, ...}) = 0
stat("/usr/lib64/python3.7/quopri.py", {st_mode=S_IFREG|0755, st_size=7252, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/quopri.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5755, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5755, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]T\34\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 5756) = 5755
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/utils.py", {st_mode=S_IFREG|0644, st_size=13488, ...}) = 0
stat("/usr/lib64/python3.7/email/utils.py", {st_mode=S_IFREG|0644, st_size=13488, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/utils.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9451, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9451, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\2604\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0"..., 9452) = 9451
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/random.py", {st_mode=S_IFREG|0644, st_size=27557, ...}) = 0
stat("/usr/lib64/python3.7/random.py", {st_mode=S_IFREG|0644, st_size=27557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/random.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19392, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19392, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\245k\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 19393) = 19392
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/hashlib.py", {st_mode=S_IFREG|0644, st_size=9534, ...}) = 0
stat("/usr/lib64/python3.7/hashlib.py", {st_mode=S_IFREG|0644, st_size=9534, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/hashlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6575, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6575, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]>%\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 6576) = 6575
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=35072, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35072, ...}) = 0
mmap(NULL, 35704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36eb6000
mmap(0x7f5a36eb8000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36eb8000
mmap(0x7f5a36ebb000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f5a36ebb000
mmap(0x7f5a36ebd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a36ebd000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a36e2d000
close(3) = 0
openat(AT_FDCWD, "/lib64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\240\7\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=4277160, ...}) = 0
mmap(NULL, 3014528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36b4d000
mprotect(0x7f5a36bc6000, 2310144, PROT_NONE) = 0
mmap(0x7f5a36bc6000, 1712128, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x79000) = 0x7f5a36bc6000
mmap(0x7f5a36d68000, 593920, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x21b000) = 0x7f5a36d68000
mmap(0x7f5a36dfa000, 192512, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2ac000) = 0x7f5a36dfa000
mmap(0x7f5a36e29000, 16256, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36e29000
close(3) = 0
mprotect(0x7f5a36dfa000, 176128, PROT_READ) = 0
mprotect(0x7f5a36ebd000, 4096, PROT_READ) = 0
access("/etc/system-fips", F_OK) = -1 ENOENT (No such file or directory)
munmap(0x7f5a36e2d000, 202255) = 0
futex(0x7f5a36e2b7d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7f5a36e2b7cc, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7f5a36e2b7c4, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7f5a36e2b8c0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7f5a36e2b7a8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_blake2.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=51520, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_blake2.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=51520, ...}) = 0
mmap(NULL, 52160, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36ea9000
mprotect(0x7f5a36eab000, 36864, PROT_NONE) = 0
mmap(0x7f5a36eab000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36eab000
mmap(0x7f5a36eb2000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f5a36eb2000
mmap(0x7f5a36eb4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f5a36eb4000
close(3) = 0
mprotect(0x7f5a36eb4000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_sha3.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=102272, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_sha3.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=102272, ...}) = 0
mmap(NULL, 102744, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36e8f000
mprotect(0x7f5a36e91000, 86016, PROT_NONE) = 0
mmap(0x7f5a36e91000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36e91000
mmap(0x7f5a36ea4000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f5a36ea4000
mmap(0x7f5a36ea6000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f5a36ea6000
close(3) = 0
mprotect(0x7f5a36ea6000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/bisect.py", {st_mode=S_IFREG|0644, st_size=2557, ...}) = 0
stat("/usr/lib64/python3.7/bisect.py", {st_mode=S_IFREG|0644, st_size=2557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/bisect.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2682, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2682, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\375\t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 2683) = 2682
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_bisect.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=17720, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_bisect.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17720, ...}) = 0
mmap(NULL, 18576, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a370d0000
mmap(0x7f5a370d1000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a370d1000
mmap(0x7f5a370d2000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370d2000
mmap(0x7f5a370d3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a370d3000
close(3) = 0
mprotect(0x7f5a370d3000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_random.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=20576, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_random.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=20576, ...}) = 0
mmap(NULL, 21368, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36e59000
mmap(0x7f5a36e5a000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36e5a000
mmap(0x7f5a36e5c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a36e5c000
mmap(0x7f5a36e5d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a36e5d000
close(3) = 0
mprotect(0x7f5a36e5d000, 4096, PROT_READ) = 0
getrandom("\xd1\x9b\x89\xda\x7a\xce\x94\x0b\x96\xbe\x13\xf6\xff\x92\xb6\x33\x5f\xf2\xbf\x57\xe4\x06\x37\x43\x14\x80\xee\x6e\x17\x59\x90\xd1"..., 2496, GRND_NONBLOCK) = 2496
getrandom("\x75\x14\x8a\x63\xee\xeb\x84\xfb\xcf\x73\xbf\x46\xbd\x35\x0d\x4a\x0e\xda\x3d\xde\xde\x81\xc4\x83\xd3\x57\xaa\x12\x69\x67\xd3\xd4"..., 2496, GRND_NONBLOCK) = 2496
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/socket.py", {st_mode=S_IFREG|0644, st_size=27363, ...}) = 0
stat("/usr/lib64/python3.7/socket.py", {st_mode=S_IFREG|0644, st_size=27363, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/socket.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=22005, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=22005, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\343j\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 22006) = 22005
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36b0d000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_socket.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=135472, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_socket.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360G\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=135472, ...}) = 0
mmap(NULL, 135088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36e38000
mmap(0x7f5a36e3c000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a36e3c000
mmap(0x7f5a36e4d000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f5a36e4d000
mmap(0x7f5a36e53000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7f5a36e53000
close(3) = 0
mprotect(0x7f5a36e53000, 4096, PROT_READ) = 0
brk(NULL) = 0x56215c75d000
brk(0x56215c77f000) = 0x56215c77f000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/urllib/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21645170) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.abi3.so", 0x7fff21645170) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.so", 0x7fff21645170) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/lib64/python3.7/urllib/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=126, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=126, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\355Z\250]\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 127) = 126
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 280
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/urllib/parse.py", {st_mode=S_IFREG|0644, st_size=38756, ...}) = 0
stat("/usr/lib64/python3.7/urllib/parse.py", {st_mode=S_IFREG|0644, st_size=38756, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib/__pycache__/parse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30817, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30817, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]d\227\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 30818) = 30817
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/_parseaddr.py", {st_mode=S_IFREG|0644, st_size=17604, ...}) = 0
stat("/usr/lib64/python3.7/email/_parseaddr.py", {st_mode=S_IFREG|0644, st_size=17604, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/_parseaddr.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12389, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12389, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\304D\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 12390) = 12389
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/calendar.py", {st_mode=S_IFREG|0644, st_size=24826, ...}) = 0
stat("/usr/lib64/python3.7/calendar.py", {st_mode=S_IFREG|0644, st_size=24826, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/calendar.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27408, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=27408, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\372`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 27409) = 27408
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36acd000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78191, ...}) = 0
stat("/usr/lib64/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78191, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/locale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34572, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34572, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o1\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0M\2\0"..., 34573) = 34572
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c77f000
brk(0x56215c7a0000) = 0x56215c7a0000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/tempfile.py", {st_mode=S_IFREG|0644, st_size=26710, ...}) = 0
stat("/usr/lib64/python3.7/tempfile.py", {st_mode=S_IFREG|0644, st_size=26710, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/tempfile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=22129, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=22129, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]Vh\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 22130) = 22129
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36a8d000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19407, ...}) = 0
stat("/usr/lib64/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19407, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/textwrap.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13509, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13509, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\317K\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 13510) = 13509
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/inspect.py", {st_mode=S_IFREG|0644, st_size=117634, ...}) = 0
stat("/usr/lib64/python3.7/inspect.py", {st_mode=S_IFREG|0644, st_size=117634, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/inspect.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=80027, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=80027, ...}) = 0
brk(NULL) = 0x56215c7a0000
brk(0x56215c7c1000) = 0x56215c7c1000
read(3, "B\r\r\n\0\0\0\0\204\367\244]\202\313\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 80028) = 80027
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/dis.py", {st_mode=S_IFREG|0644, st_size=19888, ...}) = 0
stat("/usr/lib64/python3.7/dis.py", {st_mode=S_IFREG|0644, st_size=19888, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/dis.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15189, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15189, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\260M\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 15190) = 15189
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/opcode.py", {st_mode=S_IFREG|0644, st_size=5824, ...}) = 0
stat("/usr/lib64/python3.7/opcode.py", {st_mode=S_IFREG|0644, st_size=5824, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/opcode.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5362, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5362, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\300\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 5363) = 5362
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36a4d000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=15720, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=15720, ...}) = 0
mmap(NULL, 16656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36fba000
mmap(0x7f5a36fbb000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36fbb000
mmap(0x7f5a36fbc000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36fbc000
mmap(0x7f5a36fbd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36fbd000
close(3) = 0
mprotect(0x7f5a36fbd000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/ntpath.py", {st_mode=S_IFREG|0644, st_size=22340, ...}) = 0
stat("/usr/lib64/python3.7/ntpath.py", {st_mode=S_IFREG|0644, st_size=22340, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/ntpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12988, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12988, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]DW\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 12989) = 12988
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 216
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649b20) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.abi3.so", 0x7fff21649b20) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.so", 0x7fff21649b20) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.py", {st_mode=S_IFREG|0644, st_size=2498, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.py", {st_mode=S_IFREG|0644, st_size=2498, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2337, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2337, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\302\t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 2338) = 2337
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/extern", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 4 entries */, 32768) = 112
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21647d10) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.abi3.so", 0x7fff21647d10) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.so", 0x7fff21647d10) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 118) = 117
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 240
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\222u\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0A\0\0"..., 24319) = 24318
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36a0d000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\222u\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0A\0\0"..., 24319) = 24318
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/py31compat.py", {st_mode=S_IFREG|0644, st_size=558, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/py31compat.py", {st_mode=S_IFREG|0644, st_size=558, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=562, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=562, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\.\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 563) = 562
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py", {st_mode=S_IFREG|0644, st_size=24679, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py", {st_mode=S_IFREG|0644, st_size=24679, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20605, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=20605, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\g`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0"..., 20606) = 20605
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21648640) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.abi3.so", 0x7fff21648640) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.so", 0x7fff21648640) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=481, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=481, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\1\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 482) = 481
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 392
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__about__.py", {st_mode=S_IFREG|0644, st_size=720, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__about__.py", {st_mode=S_IFREG|0644, st_size=720, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=643, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=643, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\320\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 644) = 643
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/version.py", {st_mode=S_IFREG|0644, st_size=11556, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/version.py", {st_mode=S_IFREG|0644, st_size=11556, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10478, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10478, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\$-\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 10479) = 10478
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_structures.py", {st_mode=S_IFREG|0644, st_size=1416, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_structures.py", {st_mode=S_IFREG|0644, st_size=1416, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2785, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2785, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\210\5\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2786) = 2785
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c7c1000
brk(0x56215c7e2000) = 0x56215c7e2000
brk(NULL) = 0x56215c7e2000
brk(0x56215c803000) = 0x56215c803000
brk(NULL) = 0x56215c803000
brk(NULL) = 0x56215c803000
brk(0x56215c7d3000) = 0x56215c7d3000
brk(NULL) = 0x56215c7d3000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/specifiers.py", {st_mode=S_IFREG|0644, st_size=28025, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/specifiers.py", {st_mode=S_IFREG|0644, st_size=28025, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19711, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19711, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\ym\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 19712) = 19711
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_compat.py", {st_mode=S_IFREG|0644, st_size=860, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_compat.py", {st_mode=S_IFREG|0644, st_size=860, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=933, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=933, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\\\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 934) = 933
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a369cd000
brk(NULL) = 0x56215c7d3000
brk(0x56215c7fa000) = 0x56215c7fa000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/requirements.py", {st_mode=S_IFREG|0644, st_size=4355, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/requirements.py", {st_mode=S_IFREG|0644, st_size=4355, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3798, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3798, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\3\21\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 3799) = 3798
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202960, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=202960, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\w\212\3\0\343\0\0\0\0\0\0\0\0\0\0\0\0i\0\0"..., 202961) = 202960
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3698d000
brk(NULL) = 0x56215c7fa000
brk(0x56215c81b000) = 0x56215c81b000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/copy.py", {st_mode=S_IFREG|0644, st_size=8815, ...}) = 0
stat("/usr/lib64/python3.7/copy.py", {st_mode=S_IFREG|0644, st_size=8815, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/copy.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7085, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7085, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o\"\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 7086) = 7085
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
stat("/usr/lib64/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/pprint.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15817, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15817, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\224Q\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 15818) = 15817
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3694d000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
ioctl(3, TCGETS, 0x7fff216465c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "# module pyparsing.py\r\n#\r\n# Copy"..., 4096) = 4096
read(3, "\r\n\r\ntry:\r\n from _thread impor"..., 8192) = 8192
read(3, " #~ - with a modified start loc"..., 8192) = 8192
read(3, "askeys( self ):\r\n \"\"\"Sinc"..., 8192) = 8192
read(3, "n actual list\r\n resul"..., 8192) = 8192
read(3, " ident = Word(alphas, a"..., 8192) = 8192
read(3, "= integer(\"year\") + '/' + intege"..., 8192) = 8192
read(3, "opy()\r\n year_int.addC"..., 8192) = 8192
read(3, " self.not_in_cache"..., 8192) = 8192
read(3, "t self.streamlined:\r\n "..., 8192) = 8192
read(3, "g, stacklevel=2)\r\n re"..., 8192) = 8192
read(3, " match C{<TAB>} characters.\r\n "..., 8192) = 8192
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3690d000
read(3, " # negative integer\r\n "..., 8192) = 8192
read(3, ")\r\n c.identChars = Keywor"..., 8192) = 8192
read(3, "else:\r\n self.maxLen ="..., 8192) = 8192
read(3, "lf.quoteChar = quoteChar\r\n "..., 8192) = 8192
read(3, "xError = False\r\n\r\nclass GoToColu"..., 8192) = 8192
read(3, " ( len(self.exprs) == 2 ):\r\n "..., 8192) = 8192
read(3, "s, savelist)\r\n if self.ex"..., 8192) = 8192
read(3, " if isinstance( other, Suppr"..., 8192) = 8192
read(3, " if the optional expression is n"..., 8192) = 8192
read(3, "itespace = self.expr.skipWhitesp"..., 8192) = 8192
read(3, "dCall):\r\n self.callable ="..., 8192) = 8192
read(3, "lambda a,b: b.upper().startswith"..., 8192) = 8192
read(3, "\n \"\"\"\r\n _expanded = lambda"..., 8192) = 8192
read(3, "withAttribute(type=\"grid\"))\r\n "..., 8192) = 8192
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a368cd000
read(3, "ombine(Regex(r'\"(?:[^\"\\n\\r\\\\]|(?"..., 8192) = 8192
read(3, "\n raise ParseExceptio"..., 8192) = 8192
read(3, "0-9]{1,2})(\\.(25[0-5]|2[0-4][0-9"..., 8192) = 6775
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
brk(NULL) = 0x56215c81b000
brk(0x56215c83c000) = 0x56215c83c000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3688d000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/markers.py", {st_mode=S_IFREG|0644, st_size=8248, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/markers.py", {st_mode=S_IFREG|0644, st_size=8248, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8793, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8793, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\8 \0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 8794) = 8793
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
brk(NULL) = 0x56215c83c000
brk(0x56215c86b000) = 0x56215c86b000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sysconfig.py", {st_mode=S_IFREG|0644, st_size=24440, ...}) = 0
stat("/usr/lib64/python3.7/sysconfig.py", {st_mode=S_IFREG|0644, st_size=24440, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sysconfig.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15524, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15524, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\354Z\250]x_\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 15525) = 15524
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a3684d000
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0555, st_size=86016, ...}) = 0
lstat("/usr/bin/python3", {st_mode=S_IFLNK|0777, st_size=9, ...}) = 0
readlink("/usr/bin/python3", "python3.7", 4096) = 9
lstat("/usr/bin/python3.7", {st_mode=S_IFREG|0755, st_size=17608, ...}) = 0
stat("/usr/bin/Modules/Setup.dist", 0x7fff21649390) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup.local", 0x7fff21649390) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="localhost.localdomain", ...}) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
getdents64(3, /* 288 entries */, 32768) = 10792
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 207 entries */, 32768) = 6920
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
lstat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 68 entries */, 32768) = 4232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 216
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 368
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: bita"..., 1002) = 1001
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 48 entries */, 32768) = 2160
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyus"..., 2228) = 2227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 416
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 304
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: nmig"..., 404) = 403
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: nmig"..., 392) = 391
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 10 entries */, 32768) = 336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: auto"..., 19221) = 19220
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 14 entries */, 32768) = 432
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: mige"..., 4564) = 4563
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2986, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7029, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1493, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1397, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1361, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1405, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1403, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1409, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2059, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7228, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1270, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2330, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1169, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1980, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 456
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6118) = 6117
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4813) = 4812
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4274) = 4273
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5437) = 5436
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4967) = 4966
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6062) = 6061
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 424
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5428) = 5427
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5150) = 5149
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 272
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4822) = 4821
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5070) = 5069
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib", {st_mode=S_IFDIR|0555, st_size=36864, ...}) = 0
lstat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 147 entries */, 32768) = 5832
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: yout"..., 1487) = 1486
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: urll"..., 44941) = 44940
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c86b000
brk(0x56215c88e000) = 0x56215c88e000
mmap(NULL, 180224, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36821000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a367e1000
munmap(0x7f5a36821000, 180224) = 0
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: Temp"..., 1316) = 1315
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: SSSD"..., 205) = 204
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: speg"..., 259) = 258
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: sos\n"..., 306) = 305
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 197) = 196
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 270) = 269
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: simp"..., 267) = 266
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 360
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: sepo"..., 228) = 227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: requ"..., 5933) = 5932
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 4266) = 4265
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 548) = 547
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyxd"..., 577) = 576
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyud"..., 5142) = 5141
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pytz"..., 25503) = 25502
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
stat("/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pyth"..., 273) = 272
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: pyth"..., 8945) = 8944
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
stat("/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pyth"..., 239) = 238
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: PySo"..., 471) = 470
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyse"..., 1663) = 1662
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyparsing-2.4.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyparsing-2.4.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: pyOp"..., 4395) = 4394
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyki"..., 322) = 321
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyin"..., 1422) = 1421
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: Pygm"..., 1713) = 1712
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyen"..., 742) = 741
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pydb"..., 4754) = 4753
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pycp"..., 629) = 628
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: prod"..., 287) = 286
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: ply\n"..., 962) = 961
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pip-19.0.3.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pip-19.0.3.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 288
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pid\n"..., 4133) = 4132
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 10 entries */, 32768) = 344
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: Past"..., 5274) = 5273
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: orde"..., 714) = 713
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: olef"..., 11095) = 11094
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
stat("/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: ntpl"..., 1735) = 1734
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
stat("/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: meld"..., 799) = 798
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Mako"..., 2870) = 2869
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
stat("/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lang"..., 2725) = 2724
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
stat("/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: isc\n"..., 268) = 267
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: inip"..., 1204) = 1203
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: idna"..., 10566) = 10565
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: huma"..., 4421) = 4420
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: futu"..., 4339) = 4338
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: fros"..., 286) = 285
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: dist"..., 7780) = 7779
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: deco"..., 3190) = 3189
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
stat("/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: cups"..., 232) = 231
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: cson"..., 262) = 261
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
stat("/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: chro"..., 326) = 325
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: char"..., 3860) = 3859
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
stat("/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: bliv"..., 270) = 269
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
stat("/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: bliv"..., 271) = 270
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
stat("/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: binw"..., 231) = 230
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: Beak"..., 3945) = 3944
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: asn1"..., 1109) = 1108
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: argh"..., 9782) = 9781
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: argc"..., 18633) = 18632
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
lstat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: wxPy"..., 2817) = 2816
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wx_siplib-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wx_siplib-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: syst"..., 587) = 586
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/sip-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/sip-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: seto"..., 470) = 469
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: seli"..., 222) = 221
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: rpm\n"..., 225) = 224
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5-5.13.1.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyQt5-5.13.1.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5_sip-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyQt5_sip-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pypa"..., 257) = 256
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: PyGO"..., 811) = 810
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycu"..., 4739) = 4738
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycu"..., 1342) = 1341
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycr"..., 667) = 666
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pyca"..., 4220) = 4219
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pwqu"..., 296) = 295
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Pill"..., 5176) = 5175
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: nump"..., 2081) = 2080
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Mark"..., 4134) = 4133
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: gpg\n"..., 1015) = 1014
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: dbus"..., 2353) = 2352
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: cryp"..., 4525) = 4524
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: cove"..., 6434) = 6433
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649130) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: cffi"..., 1215) = 1214
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649320) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: Brla"..., 243) = 242
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python37.zip", 0x7fff21649780) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=1, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1, ...}) = 0
read(3, "\n", 2) = 1
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg/EGG-INFO/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
read(3, "sphinxcontrib\n", 15) = 14
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg/EGG-INFO/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/six-1.12.0.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyparsing-2.4.0.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pip-19.0.3.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/namespace_packages.txt", {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/namespace_packages.txt", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649eb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
read(3, "paste\n", 7) = 6
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649770) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649770) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649770) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649770) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649770) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7fff21649680) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/wx_siplib-4.19.19.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/sip-4.19.19.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5-5.13.1.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5_sip-4.19.19.dist-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info/namespace_packages.txt", 0x7fff2164a090) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
getdents64(3, /* 288 entries */, 32768) = 10792
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 207 entries */, 32768) = 6920
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 68 entries */, 32768) = 4232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 216
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 368
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: bita"..., 1002) = 1001
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 48 entries */, 32768) = 2160
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyus"..., 2228) = 2227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 416
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 304
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: nmig"..., 404) = 403
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: nmig"..., 392) = 391
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 10 entries */, 32768) = 336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: auto"..., 19221) = 19220
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 14 entries */, 32768) = 432
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: mige"..., 4564) = 4563
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2986, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7029, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1493, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1397, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1361, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1405, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1403, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1409, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2059, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7228, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1270, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2330, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1169, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1980, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 456
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6118) = 6117
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4813) = 4812
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4274) = 4273
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5437) = 5436
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4967) = 4966
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6062) = 6061
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 424
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5428) = 5427
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5150) = 5149
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 272
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4822) = 4821
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5070) = 5069
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 147 entries */, 32768) = 5832
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: yout"..., 1487) = 1486
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: urll"..., 44941) = 44940
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c88e000
brk(0x56215c8c1000) = 0x56215c8c1000
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: Temp"..., 1316) = 1315
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: SSSD"..., 205) = 204
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: speg"..., 259) = 258
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: sos\n"..., 306) = 305
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 197) = 196
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 270) = 269
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: simp"..., 267) = 266
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 360
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: sepo"..., 228) = 227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: requ"..., 5933) = 5932
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 4266) = 4265
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 548) = 547
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyxdg-0.26-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyxd"..., 577) = 576
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyudev-0.21.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5141, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyud"..., 5142) = 5141
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pytz-2018.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=25502, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pytz"..., 25503) = 25502
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
stat("/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_meh-0.47-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=272, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pyth"..., 273) = 272
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_dateutil-2.8.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8944, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: pyth"..., 8945) = 8944
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
stat("/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/python_augeas-0.5.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=238, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pyth"..., 239) = 238
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/PySocks-1.6.8-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: PySo"..., 471) = 470
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyserial-3.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1662, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyse"..., 1663) = 1662
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyparsing-2.4.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyparsing-2.4.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyOpenSSL-19.0.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4394, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: pyOp"..., 4395) = 4394
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pykickstart-3.20-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyki"..., 322) = 321
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyinotify-0.9.6-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1421, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyin"..., 1422) = 1421
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Pygments-2.2.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1712, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: Pygm"..., 1713) = 1712
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pyenchant-2.0.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=741, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyen"..., 742) = 741
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pydbus-0.6.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4753, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pydb"..., 4754) = 4753
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pycparser-2.14-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=628, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pycp"..., 629) = 628
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/productmd-1.22-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=286, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: prod"..., 287) = 286
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ply-3.11-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=961, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: ply\n"..., 962) = 961
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pip-19.0.3.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pip-19.0.3.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 288
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pid-2.2.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4132, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pid\n"..., 4133) = 4132
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 10 entries */, 32768) = 344
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5273, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: Past"..., 5274) = 5273
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ordered_set-2.0.2-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=713, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: orde"..., 714) = 713
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/olefile-0.46-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11094, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: olef"..., 11095) = 11094
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
stat("/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/ntplib-0.3.3-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1734, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: ntpl"..., 1735) = 1734
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
stat("/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/meld-3.20.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=798, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: meld"..., 799) = 798
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Mako-1.1.0.dev0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2869, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Mako"..., 2870) = 2869
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
stat("/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/langtable-0.0.43-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2724, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lang"..., 2725) = 2724
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
stat("/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/isc-2.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=267, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: isc\n"..., 268) = 267
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/iniparse-0.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1203, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: inip"..., 1204) = 1203
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/idna-2.7-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10565, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: idna"..., 10566) = 10565
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/humanize-0.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4420, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: huma"..., 4421) = 4420
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/future-0.17.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4338, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: futu"..., 4339) = 4338
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/fros-1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=285, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: fros"..., 286) = 285
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/distro-1.4.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7779, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: dist"..., 7780) = 7779
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/decorator-4.3.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3189, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: deco"..., 3190) = 3189
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
stat("/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cupshelpers-1.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=231, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: cups"..., 232) = 231
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/cson-0.7-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=261, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: cson"..., 262) = 261
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
stat("/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chrome_gnome_shell-0.0.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=325, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: chro"..., 326) = 325
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/chardet-3.0.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3859, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: char"..., 3860) = 3859
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
stat("/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/blivet-3.1.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: bliv"..., 270) = 269
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
stat("/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/blivet_gui-2.1.11-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=270, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: bliv"..., 271) = 270
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
stat("/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/binwalk-2.1.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=230, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: binw"..., 231) = 230
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Beaker-1.10.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3944, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: Beak"..., 3945) = 3944
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/asn1crypto-0.24.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1108, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: asn1"..., 1109) = 1108
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argh-0.26.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9781, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: argh"..., 9782) = 9781
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/argcomplete-1.9.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=18632, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: argc"..., 18633) = 18632
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wxPython-4.0.6-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2816, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: wxPy"..., 2817) = 2816
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/wx_siplib-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/wx_siplib-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd_python-234-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=586, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: syst"..., 587) = 586
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/sip-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/sip-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/setools-4.1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=469, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: seto"..., 470) = 469
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/selinux-2.9-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=221, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: seli"..., 222) = 221
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/rpm-4.14.2.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=224, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: rpm\n"..., 225) = 224
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5-5.13.1.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyQt5-5.13.1.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyQt5_sip-4.19.19.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyQt5_sip-4.19.19.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pyparted-3.11.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pypa"..., 257) = 256
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/PyGObject-3.32.2.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=810, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: PyGO"..., 811) = 810
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycurl-7.43.0.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4738, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycu"..., 4739) = 4738
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycups-1.9.74-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1341, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycu"..., 1342) = 1341
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycrypto-2.6.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pycr"..., 667) = 666
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pycairo-1.18.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4219, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: pyca"..., 4220) = 4219
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/pwquality-1.4.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=295, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: pwqu"..., 296) = 295
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Pillow-5.4.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5175, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Pill"..., 5176) = 5175
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/numpy-1.16.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2080, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: nump"..., 2081) = 2080
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/MarkupSafe-1.1.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4133, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: Mark"..., 4134) = 4133
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/gpg-1.12.0-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1014, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: gpg\n"..., 1015) = 1014
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus_python-1.2.8-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: dbus"..., 2353) = 2352
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cryptography-2.6.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: cryp"..., 4525) = 4524
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/coverage-4.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: cove"..., 6434) = 6433
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/cffi-1.11.5-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649530) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1214, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: cffi"..., 1215) = 1214
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/Brlapi-0.6.7-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
ioctl(3, TCGETS, 0x7fff21649720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=242, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: Brla"..., 243) = 242
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
brk(NULL) = 0x56215c8c1000
brk(0x56215c8e4000) = 0x56215c8e4000
getdents64(3, /* 18 entries */, 32768) = 536
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/__init__.abi3.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/__init__.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/__init__.py", {st_mode=S_IFREG|0644, st_size=767, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/__init__.py", {st_mode=S_IFREG|0644, st_size=767, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=921, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=921, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\377\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 922) = 921
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/ast.py", {st_mode=S_IFREG|0644, st_size=57520, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/ast.py", {st_mode=S_IFREG|0644, st_size=57520, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/ast.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=64195, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=64195, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\260\340\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 64196) = 64195
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/typing.py", {st_mode=S_IFREG|0644, st_size=55672, ...}) = 0
stat("/usr/lib64/python3.7/typing.py", {st_mode=S_IFREG|0644, st_size=55672, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/typing.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=50463, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=50463, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]x\331\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0>\0\0"..., 50464) = 50463
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a367a1000
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/tracer.py", {st_mode=S_IFREG|0644, st_size=1676, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/tracer.py", {st_mode=S_IFREG|0644, st_size=1676, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/tracer.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1400, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1400, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\214\6\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1401) = 1400
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/_utils.py", {st_mode=S_IFREG|0644, st_size=2945, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/_utils.py", {st_mode=S_IFREG|0644, st_size=2945, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/_utils.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\201\v\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 3774) = 3773
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/utils.py", {st_mode=S_IFREG|0644, st_size=460, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/utils.py", {st_mode=S_IFREG|0644, st_size=460, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/utils.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=609, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=609, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\314\1\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 610) = 609
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/dsl.py", {st_mode=S_IFREG|0644, st_size=18966, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/dsl.py", {st_mode=S_IFREG|0644, st_size=18966, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/dsl.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16530, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16530, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\26J\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 16531) = 16530
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 593920, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36710000
munmap(0x7f5a36fec000, 299008) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/ir.py", {st_mode=S_IFREG|0644, st_size=24059, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/ir.py", {st_mode=S_IFREG|0644, st_size=24059, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/ir.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16386, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16386, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\373]\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 16387) = 16386
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36ff5000
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/cd.py", {st_mode=S_IFREG|0644, st_size=2812, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/cd.py", {st_mode=S_IFREG|0644, st_size=2812, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/cd.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2920, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2920, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\374\n\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2921) = 2920
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/xfrm.py", {st_mode=S_IFREG|0644, st_size=25226, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/xfrm.py", {st_mode=S_IFREG|0644, st_size=25226, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/xfrm.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=29430, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=29430, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\212b\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 29431) = 29430
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/rec.py", {st_mode=S_IFREG|0644, st_size=9461, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/rec.py", {st_mode=S_IFREG|0644, st_size=9461, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/rec.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8095, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8095, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\365$\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 8096) = 8095
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/mem.py", {st_mode=S_IFREG|0644, st_size=8570, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/hdl/mem.py", {st_mode=S_IFREG|0644, st_size=8570, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/hdl/__pycache__/mem.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6312, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6312, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]z!\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 6313) = 6312
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164b230) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/__init__.abi3.so", 0x7fff2164b230) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/__init__.so", 0x7fff2164b230) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/test/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=149, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=149, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 150) = 149
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/test", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 23 entries */, 32768) = 848
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/test/__pycache__/utils.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3265, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3265, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\221F\354]\16\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3266) = 3265
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/unittest/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/unittest/__init__.abi3.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/unittest/__init__.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/unittest/__init__.py", {st_mode=S_IFREG|0644, st_size=3143, ...}) = 0
stat("/usr/lib64/python3.7/unittest/__init__.py", {st_mode=S_IFREG|0644, st_size=3143, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2995, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2995, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]G\f\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 2996) = 2995
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 14 entries */, 32768) = 432
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest/result.py", {st_mode=S_IFREG|0644, st_size=7442, ...}) = 0
stat("/usr/lib64/python3.7/unittest/result.py", {st_mode=S_IFREG|0644, st_size=7442, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/result.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7236, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7236, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\22\35\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 7237) = 7236
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/util.py", {st_mode=S_IFREG|0644, st_size=5215, ...}) = 0
stat("/usr/lib64/python3.7/unittest/util.py", {st_mode=S_IFREG|0644, st_size=5215, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/util.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4505, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4505, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]_\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 4506) = 4505
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a366d0000
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/case.py", {st_mode=S_IFREG|0644, st_size=57683, ...}) = 0
stat("/usr/lib64/python3.7/unittest/case.py", {st_mode=S_IFREG|0644, st_size=57683, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/case.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=48342, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=48342, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]S\341\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 48343) = 48342
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/difflib.py", {st_mode=S_IFREG|0644, st_size=84387, ...}) = 0
stat("/usr/lib64/python3.7/difflib.py", {st_mode=S_IFREG|0644, st_size=84387, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/difflib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=59422, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=59422, ...}) = 0
brk(NULL) = 0x56215c8e4000
brk(0x56215c909000) = 0x56215c909000
read(3, "B\r\r\n\0\0\0\0\204\367\244]\243I\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 59423) = 59422
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/logging/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21648b00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/logging/__init__.abi3.so", 0x7fff21648b00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/logging/__init__.so", 0x7fff21648b00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=74497, ...}) = 0
stat("/usr/lib64/python3.7/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=74497, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/logging/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=62386, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=62386, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\1#\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0*\0\0"..., 62387) = 62386
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36690000
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/suite.py", {st_mode=S_IFREG|0644, st_size=10479, ...}) = 0
stat("/usr/lib64/python3.7/unittest/suite.py", {st_mode=S_IFREG|0644, st_size=10479, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/suite.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9187, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9187, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\357(\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 9188) = 9187
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/loader.py", {st_mode=S_IFREG|0644, st_size=22702, ...}) = 0
stat("/usr/lib64/python3.7/unittest/loader.py", {st_mode=S_IFREG|0644, st_size=22702, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/loader.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14260, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14260, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\256X\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 14261) = 14260
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x56215c909000
brk(0x56215c933000) = 0x56215c933000
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/main.py", {st_mode=S_IFREG|0644, st_size=11238, ...}) = 0
stat("/usr/lib64/python3.7/unittest/main.py", {st_mode=S_IFREG|0644, st_size=11238, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/main.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7422, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7422, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\346+\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 7423) = 7422
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/argparse.py", {st_mode=S_IFREG|0644, st_size=95353, ...}) = 0
stat("/usr/lib64/python3.7/argparse.py", {st_mode=S_IFREG|0644, st_size=95353, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/argparse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=61965, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=61965, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]yt\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 61966) = 61965
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36650000
munmap(0x7f5a36650000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36650000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/gettext.py", {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
stat("/usr/lib64/python3.7/gettext.py", {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/gettext.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14152, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14152, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\317U\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 14153) = 14152
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/runner.py", {st_mode=S_IFREG|0644, st_size=7767, ...}) = 0
stat("/usr/lib64/python3.7/unittest/runner.py", {st_mode=S_IFREG|0644, st_size=7767, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/runner.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6979, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6979, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]W\36\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 6980) = 6979
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/unittest", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/unittest/signals.py", {st_mode=S_IFREG|0644, st_size=2403, ...}) = 0
stat("/usr/lib64/python3.7/unittest/signals.py", {st_mode=S_IFREG|0644, st_size=2403, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/unittest/__pycache__/signals.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2178, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2178, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]c\t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2179) = 2178
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/__init__.abi3.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/__init__.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/back/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=149, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=149, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 150) = 149
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/back", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 208
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/rtlil.py", {st_mode=S_IFREG|0644, st_size=39280, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/rtlil.py", {st_mode=S_IFREG|0644, st_size=39280, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/back/__pycache__/rtlil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30360, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30360, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]p\231\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 30361) = 30360
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36610000
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/_toolchain.py", {st_mode=S_IFREG|0644, st_size=1035, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/_toolchain.py", {st_mode=S_IFREG|0644, st_size=1035, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/_toolchain.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1235, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1235, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\v\4\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1236) = 1235
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/asserts.py", {st_mode=S_IFREG|0644, st_size=116, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/asserts.py", {st_mode=S_IFREG|0644, st_size=116, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/asserts.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=342, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=342, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]t\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 343) = 342
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/pysim.py", {st_mode=S_IFREG|0644, st_size=40055, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/back/pysim.py", {st_mode=S_IFREG|0644, st_size=40055, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/back/__pycache__/pysim.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=38138, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=38138, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]w\234\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 38139) = 38138
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/vcd/__init__.abi3.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/vcd/__init__.so", 0x7fff2164ab40) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/vcd/__init__.py", {st_mode=S_IFREG|0644, st_size=208, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/__init__.py", {st_mode=S_IFREG|0644, st_size=208, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/vcd/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=344, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=344, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\333\311\215]\320\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 345) = 344
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/vcd", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 176
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/writer.py", {st_mode=S_IFREG|0644, st_size=22102, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/writer.py", {st_mode=S_IFREG|0644, st_size=22102, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/vcd/__pycache__/writer.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=18787, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=18787, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\333\311\215]VV\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 18788) = 18787
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/numbers.py", {st_mode=S_IFREG|0644, st_size=10244, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a365d0000
stat("/usr/lib64/python3.7/numbers.py", {st_mode=S_IFREG|0644, st_size=10244, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/numbers.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12176, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12176, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\4(\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 12177) = 12176
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/six.py", {st_mode=S_IFREG|0644, st_size=32452, ...}) = 0
stat("/usr/lib/python3.7/site-packages/six.py", {st_mode=S_IFREG|0644, st_size=32452, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/__pycache__/six.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26347, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=26347, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\17vf\\\304~\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0C\0\0"..., 26348) = 26347
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/gtkw.py", {st_mode=S_IFREG|0644, st_size=23447, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/vcd/gtkw.py", {st_mode=S_IFREG|0644, st_size=23447, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/vcd/__pycache__/gtkw.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21008, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21008, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\333\311\215]\227[\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\37\0\0"..., 21009) = 21008
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36590000
munmap(0x7f5a36590000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36590000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36550000
munmap(0x7f5a36550000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36550000
munmap(0x7f5a36550000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36550000
munmap(0x7f5a36550000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36550000
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b680) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
read(3, "", 8192) = 0
close(3) = 0
brk(NULL) = 0x56215c933000
brk(0x56215c956000) = 0x56215c956000
write(1, "r = 0 q = 0 done = 0\n", 24) = 24
write(1, "r = 0 q = 0 done = 0\n", 24) = 24
write(1, "r = 10 q = 0 done = 0\n", 25) = 25
write(1, "r = 7 q = 1 done = 0\n", 24) = 24
write(1, "r = 4 q = 2 done = 0\n", 24) = 24
write(1, "r = 1 q = 3 done = 1\n", 24) = 24
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b920) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "import os\nimport re\nimport shuti"..., 4096) = 3342
read(3, "", 8192) = 0
close(3) = 0
stat("formal_result", 0x7fff2164cbc0) = -1 ENOENT (No such file or directory)
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a36510000
stat("/usr/share/Modules/bin/sby", 0x7fff2164c410) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/sby", {st_mode=S_IFREG|0755, st_size=14479, ...}) = 0
access("/usr/local/bin/sby", X_OK) = 0
stat("/usr/local/bin/sby", {st_mode=S_IFREG|0755, st_size=14479, ...}) = 0
pipe2([3, 4], O_CLOEXEC) = 0
pipe2([5, 6], O_CLOEXEC) = 0
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
ioctl(4, TCGETS, 0x7fff2164c7b0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(4, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(4, TCGETS, 0x7fff2164c9d0) = -1 ENOTTY (Inappropriate ioctl for device)
fstat(5, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164c7b0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(5, TCGETS, 0x7fff2164c9d0) = -1 ENOTTY (Inappropriate ioctl for device)
pipe2([7, 8], O_CLOEXEC) = 0
clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f5a44380950) = 21062
strace: Process 21062 attached
[pid 21062] set_robust_list(0x7f5a44380960, 24) = 0
[pid 21061] close(8) = 0
[pid 21061] close(3 <unfinished ...>
[pid 21062] close(4 <unfinished ...>
[pid 21061] <... close resumed>) = 0
[pid 21062] <... close resumed>) = 0
[pid 21061] close(6) = 0
[pid 21061] read(7, <unfinished ...>
[pid 21062] close(5) = 0
[pid 21062] close(7) = 0
[pid 21062] dup2(3, 0) = 0
[pid 21062] dup2(6, 1) = 1
[pid 21062] chdir("") = -1 ENOENT (No such file or directory)
[pid 21062] write(8, "OSError:", 8 <unfinished ...>
[pid 21061] <... read resumed>"OSError:", 50000) = 8
[pid 21062] <... write resumed>) = 8
[pid 21061] read(7, <unfinished ...>
[pid 21062] write(8, "2", 1 <unfinished ...>
[pid 21061] <... read resumed>"2", 50000) = 1
[pid 21062] <... write resumed>) = 1
[pid 21061] read(7, <unfinished ...>
[pid 21062] write(8, ":", 1 <unfinished ...>
[pid 21061] <... read resumed>":", 50000) = 1
[pid 21062] <... write resumed>) = 1
[pid 21061] read(7, <unfinished ...>
[pid 21062] write(8, "noexec", 6 <unfinished ...>
[pid 21061] <... read resumed>"noexec", 50000) = 6
[pid 21062] <... write resumed>) = 6
[pid 21061] read(7, <unfinished ...>
[pid 21062] exit_group(255) = ?
[pid 21061] <... read resumed>"", 50000) = 0
[pid 21062] +++ exited with 255 +++
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=21062, si_uid=1000, si_status=255, si_utime=0, si_stime=0} ---
close(7) = 0
wait4(21062, [{WIFEXITED(s) && WEXITSTATUS(s) == 255}], 0, NULL) = 21062
close(4) = 0
close(5) = 0
write(2, "formal.py:82: DeprecationWarning"..., 174formal.py:82: DeprecationWarning: instead of `with Simulator(fragment, ...) as sim:`, use `sim = Simulator(fragment); with sim.write_vcd(...):`
with Simulator(div) as sim:
) = 174
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/systemd/__init__.abi3.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/systemd/__init__.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/systemd/__init__.py", {st_mode=S_IFREG|0644, st_size=759, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/__init__.py", {st_mode=S_IFREG|0644, st_size=759, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=119, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=119, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\207\32\327X\367\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 120) = 119
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 520
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/journal.py", {st_mode=S_IFREG|0644, st_size=22241, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/journal.py", {st_mode=S_IFREG|0644, st_size=22241, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/__pycache__/journal.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21103, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21103, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\207\32\327X\341V\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\"\0\0"..., 21104) = 21103
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/uuid.py", {st_mode=S_IFREG|0644, st_size=29518, ...}) = 0
stat("/usr/lib64/python3.7/uuid.py", {st_mode=S_IFREG|0644, st_size=29518, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/uuid.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=23187, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=23187, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]Ns\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 23188) = 23187
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_uuid.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=15624, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_uuid.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=15624, ...}) = 0
mmap(NULL, 16560, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36ff0000
mmap(0x7f5a36ff1000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36ff1000
mmap(0x7f5a36ff2000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36ff2000
mmap(0x7f5a36ff3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36ff3000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a364de000
close(3) = 0
openat(AT_FDCWD, "/lib64/libuuid.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20&\0\0\0\0\0\0"..., 832) = 832
lseek(3, 31272, SEEK_SET) = 31272
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=61648, ...}) = 0
lseek(3, 31272, SEEK_SET) = 31272
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 36880, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36e2e000
mmap(0x7f5a36e30000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36e30000
mmap(0x7f5a36e35000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a36e35000
mmap(0x7f5a36e36000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a36e36000
mmap(0x7f5a36e37000, 16, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36e37000
close(3) = 0
mprotect(0x7f5a36e36000, 4096, PROT_READ) = 0
mprotect(0x7f5a36ff3000, 4096, PROT_READ) = 0
munmap(0x7f5a364de000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/syslog.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=15952, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/syslog.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\21\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=15952, ...}) = 0
mmap(NULL, 16792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36848000
mmap(0x7f5a36849000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36849000
mmap(0x7f5a3684a000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a3684a000
mmap(0x7f5a3684b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a3684b000
close(3) = 0
mprotect(0x7f5a3684b000, 4096, PROT_READ) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/_journal.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=18936, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/_journal.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\22\0\0\0\0\0\0"..., 832) = 832
lseek(3, 8704, SEEK_SET) = 8704
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=18936, ...}) = 0
lseek(3, 8704, SEEK_SET) = 8704
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 16840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36843000
mmap(0x7f5a36844000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36844000
mmap(0x7f5a36845000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36845000
mmap(0x7f5a36846000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a36846000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5a364de000
close(3) = 0
openat(AT_FDCWD, "/lib64/libsystemd.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220(\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=742536, ...}) = 0
mmap(NULL, 717488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a3642e000
mprotect(0x7f5a3643f000, 630784, PROT_NONE) = 0
mmap(0x7f5a3643f000, 466944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f5a3643f000
mmap(0x7f5a364b1000, 159744, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x83000) = 0x7f5a364b1000
mmap(0x7f5a364d9000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xaa000) = 0x7f5a364d9000
mmap(0x7f5a364dd000, 688, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a364dd000
close(3) = 0
openat(AT_FDCWD, "/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20'\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=149504, ...}) = 0
mmap(NULL, 39872, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36839000
mmap(0x7f5a3683b000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a3683b000
mmap(0x7f5a3683f000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a3683f000
mmap(0x7f5a36841000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a36841000
close(3) = 0
openat(AT_FDCWD, "/lib64/liblz4.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000%\0\0\0\0\0\0"..., 832) = 832
lseek(3, 124008, SEEK_SET) = 124008
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=136824, ...}) = 0
lseek(3, 124008, SEEK_SET) = 124008
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 131080, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a3640d000
mmap(0x7f5a3640f000, 106496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5a3640f000
mmap(0x7f5a36429000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7f5a36429000
mmap(0x7f5a3642c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7f5a3642c000
mmap(0x7f5a3642d000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a3642d000
close(3) = 0
openat(AT_FDCWD, "/lib64/libgcrypt.so.20", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\305\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1783592, ...}) = 0
mmap(NULL, 1171368, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a362ef000
mmap(0x7f5a362fb000, 847872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f5a362fb000
mmap(0x7f5a363ca000, 245760, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xdb000) = 0x7f5a363ca000
mmap(0x7f5a36406000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x116000) = 0x7f5a36406000
close(3) = 0
openat(AT_FDCWD, "/lib64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3605\0\0\0\0\0\0"..., 832) = 832
lseek(3, 94856, SEEK_SET) = 94856
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=101328, ...}) = 0
lseek(3, 94856, SEEK_SET) = 94856
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 103504, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a362d5000
mmap(0x7f5a362d8000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a362d8000
mmap(0x7f5a362e9000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f5a362e9000
mmap(0x7f5a362ed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f5a362ed000
close(3) = 0
openat(AT_FDCWD, "/lib64/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360L\0\0\0\0\0\0"..., 832) = 832
lseek(3, 130856, SEEK_SET) = 130856
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=172048, ...}) = 0
lseek(3, 130856, SEEK_SET) = 130856
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 139840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a362b2000
mprotect(0x7f5a362b6000, 118784, PROT_NONE) = 0
mmap(0x7f5a362b6000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5a362b6000
mmap(0x7f5a362c9000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f5a362c9000
mmap(0x7f5a362d3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f5a362d3000
close(3) = 0
mprotect(0x7f5a362d3000, 4096, PROT_READ) = 0
mprotect(0x7f5a362ed000, 4096, PROT_READ) = 0
mprotect(0x7f5a36406000, 8192, PROT_READ) = 0
mprotect(0x7f5a3642c000, 4096, PROT_READ) = 0
mprotect(0x7f5a36841000, 4096, PROT_READ) = 0
mprotect(0x7f5a364d9000, 12288, PROT_READ) = 0
mprotect(0x7f5a36846000, 4096, PROT_READ) = 0
access("/etc/system-fips", F_OK) = -1 ENOENT (No such file or directory)
munmap(0x7f5a364de000, 202255) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/_reader.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=50960, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/_reader.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p<\0\0\0\0\0\0"..., 832) = 832
lseek(3, 29208, SEEK_SET) = 29208
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=50960, ...}) = 0
lseek(3, 29208, SEEK_SET) = 29208
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 47376, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a3682d000
mmap(0x7f5a36830000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a36830000
mmap(0x7f5a36833000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f5a36833000
mmap(0x7f5a36835000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5a36835000
close(3) = 0
mprotect(0x7f5a36835000, 4096, PROT_READ) = 0
stat("/usr/lib64/python3.7/site-packages/systemd", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/id128.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=23464, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/id128.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\23\0\0\0\0\0\0"..., 832) = 832
lseek(3, 14936, SEEK_SET) = 14936
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=23464, ...}) = 0
lseek(3, 14936, SEEK_SET) = 14936
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 21296, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5a36827000
mmap(0x7f5a36828000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f5a36828000
mmap(0x7f5a3682a000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a3682a000
mmap(0x7f5a3682b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f5a3682b000
close(3) = 0
mprotect(0x7f5a3682b000, 4096, PROT_READ) = 0
stat("/usr/lib64/python3.7/site-packages/systemd/journal.py", {st_mode=S_IFREG|0644, st_size=22241, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/systemd/journal.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=22241, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b500) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "# -*- Mode: python; coding:utf-"..., 4096) = 4096
read(3, "udevd.service\")\n >>> for entr"..., 8192) = 8192
read(3, "etting matches for PRIORITY.\n "..., 8192) = 8192
read(3, "omatically. In addition, record."..., 8192) = 1761
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
ioctl(3, TCGETS, 0x7fff2164b500) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "#:mode=python:\n# -*- coding: utf"..., 4096) = 4096
read(3, "ys.__excepthook__(etype, value, "..., 8192) = 2770
read(3, "", 8192) = 0
close(3) = 0
socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0) = 3
getsockopt(3, SOL_SOCKET, SO_SNDBUF, [212992], [4]) = 0
setsockopt(3, SOL_SOCKET, SO_SNDBUF, [8388608], 4) = 0
sendmsg(3, {msg_name={sa_family=AF_UNIX, sun_path="/run/systemd/journal/socket"}, msg_namelen=30, msg_iov=[{iov_base="MESSAGE=detected unhandled Pytho"..., iov_len=58}, {iov_base="\n", iov_len=1}, {iov_base="CODE_FILE=/usr/lib/python3.7/sit"..., iov_len=69}, {iov_base="\n", iov_len=1}, {iov_base="CODE_LINE=39", iov_len=12}, {iov_base="\n", iov_len=1}, {iov_base="CODE_FUNC=syslog", iov_len=16}, {iov_base="\n", iov_len=1}, {iov_base="SYSLOG_IDENTIFIER=", iov_len=18}, {iov_base="python3", iov_len=7}, {iov_base="\n", iov_len=1}], msg_iovlen=11, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 185
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/problem/__init__.abi3.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/problem/__init__.so", 0x7fff2164b550) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/problem/__init__.py", {st_mode=S_IFREG|0644, st_size=10181, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/__init__.py", {st_mode=S_IFREG|0644, st_size=10181, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11703, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=11703, ...}) = 0
read(4, "B\r\r\n\0\0\0\0R-\335\\\305'\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0!\0\0"..., 11704) = 11703
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 10 entries */, 32768) = 304
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/problem/proxies.py", {st_mode=S_IFREG|0644, st_size=7429, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/proxies.py", {st_mode=S_IFREG|0644, st_size=7429, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/proxies.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=8263, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=8263, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\233YI]\5\35\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 8264) = 8263
read(4, "", 1) = 0
close(4) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21648ce0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/__init__.abi3.so", 0x7fff21648ce0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/__init__.so", 0x7fff21648ce0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/__init__.py", {st_mode=S_IFREG|0644, st_size=8597, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/__init__.py", {st_mode=S_IFREG|0644, st_size=8597, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=5768, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=5768, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\2\224\34]\225!\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 5769) = 5768
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 7 entries */, 32768) = 216
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report/_py3report.so", {st_mode=S_IFREG|0755, st_size=39272, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/_py3report.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360%\0\0\0\0\0\0"..., 832) = 832
lseek(4, 19304, SEEK_SET) = 19304
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=39272, ...}) = 0
lseek(4, 19304, SEEK_SET) = 19304
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 31568, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a36508000
mprotect(0x7f5a3650a000, 16384, PROT_NONE) = 0
mmap(0x7f5a3650a000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a3650a000
mmap(0x7f5a3650c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a3650c000
mmap(0x7f5a3650e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f5a3650e000
close(4) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f5a36280000
close(4) = 0
openat(AT_FDCWD, "/lib64/libreport.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\v\1\0\0\0\0\0"..., 832) = 832
lseek(4, 238504, SEEK_SET) = 238504
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=347984, ...}) = 0
lseek(4, 238504, SEEK_SET) = 238504
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 250176, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a36242000
mmap(0x7f5a3624f000, 126976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd000) = 0x7f5a3624f000
mmap(0x7f5a3626e000, 61440, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2c000) = 0x7f5a3626e000
mmap(0x7f5a3627d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3a000) = 0x7f5a3627d000
close(4) = 0
openat(AT_FDCWD, "/lib64/libtar.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360<\0\0\0\0\0\0"..., 832) = 832
lseek(4, 38096, SEEK_SET) = 38096
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=71608, ...}) = 0
lseek(4, 38096, SEEK_SET) = 38096
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 53312, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a364fa000
mmap(0x7f5a364fd000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a364fd000
mmap(0x7f5a36502000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7f5a36502000
mmap(0x7f5a36504000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x7f5a36504000
mmap(0x7f5a36506000, 4160, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36506000
close(4) = 0
openat(AT_FDCWD, "/lib64/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\341\3\0\0\0\0\0"..., 832) = 832
lseek(4, 1865640, SEEK_SET) = 1865640
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=4098264, ...}) = 0
lseek(4, 1865640, SEEK_SET) = 1865640
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1913544, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3606e000
mprotect(0x7f5a360a5000, 1646592, PROT_NONE) = 0
mmap(0x7f5a360a5000, 1093632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x37000) = 0x7f5a360a5000
mmap(0x7f5a361b0000, 548864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x142000) = 0x7f5a361b0000
mmap(0x7f5a36237000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1c8000) = 0x7f5a36237000
mmap(0x7f5a36240000, 4808, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36240000
close(4) = 0
openat(AT_FDCWD, "/lib64/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\336\0\0\0\0\0\0"..., 832) = 832
lseek(4, 357848, SEEK_SET) = 357848
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=689464, ...}) = 0
lseek(4, 357848, SEEK_SET) = 357848
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 375720, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a36012000
mmap(0x7f5a3601f000, 208896, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd000) = 0x7f5a3601f000
mmap(0x7f5a36052000, 98304, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x40000) = 0x7f5a36052000
mmap(0x7f5a3606a000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x57000) = 0x7f5a3606a000
close(4) = 0
openat(AT_FDCWD, "/lib64/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\313\1\0\0\0\0\0"..., 832) = 832
lseek(4, 1176784, SEEK_SET) = 1176784
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=2067568, ...}) = 0
lseek(4, 1176784, SEEK_SET) = 1176784
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1192456, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35eee000
mprotect(0x7f5a35f09000, 1073152, PROT_NONE) = 0
mmap(0x7f5a35f09000, 532480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1b000) = 0x7f5a35f09000
mmap(0x7f5a35f8b000, 536576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9d000) = 0x7f5a35f8b000
mmap(0x7f5a3600f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x120000) = 0x7f5a3600f000
mmap(0x7f5a36011000, 520, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a36011000
close(4) = 0
openat(AT_FDCWD, "/lib64/libaugeas.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\204\0\0\0\0\0\0"..., 832) = 832
lseek(4, 389472, SEEK_SET) = 389472
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=488488, ...}) = 0
lseek(4, 389472, SEEK_SET) = 389472
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 405552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35e8a000
mmap(0x7f5a35e91000, 278528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a35e91000
mmap(0x7f5a35ed5000, 86016, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4b000) = 0x7f5a35ed5000
mmap(0x7f5a35eea000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5f000) = 0x7f5a35eea000
mmap(0x7f5a35eed000, 48, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35eed000
close(4) = 0
openat(AT_FDCWD, "/lib64/libsatyr.so.3", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\27\1\0\0\0\0\0"..., 832) = 832
lseek(4, 245960, SEEK_SET) = 245960
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=355904, ...}) = 0
lseek(4, 245960, SEEK_SET) = 245960
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 272792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35e47000
mmap(0x7f5a35e55000, 131072, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xe000) = 0x7f5a35e55000
mmap(0x7f5a35e75000, 61440, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2e000) = 0x7f5a35e75000
mmap(0x7f5a35e84000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3c000) = 0x7f5a35e84000
close(4) = 0
openat(AT_FDCWD, "/lib64/libcrypt.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P \0\0\0\0\0\0"..., 832) = 832
lseek(4, 198968, SEEK_SET) = 198968
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=260200, ...}) = 0
lseek(4, 198968, SEEK_SET) = 198968
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 238088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35e0c000
mmap(0x7f5a35e0e000, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35e0e000
mmap(0x7f5a35e23000, 106496, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x17000) = 0x7f5a35e23000
mmap(0x7f5a35e3d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x30000) = 0x7f5a35e3d000
mmap(0x7f5a35e3e000, 33288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35e3e000
close(4) = 0
openat(AT_FDCWD, "/lib64/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\24\0\0\0\0\0\0"..., 832) = 832
lseek(4, 13376, SEEK_SET) = 13376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=24600, ...}) = 0
lseek(4, 13376, SEEK_SET) = 13376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 20568, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a36821000
mmap(0x7f5a36822000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7f5a36822000
mmap(0x7f5a36824000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a36824000
mmap(0x7f5a36825000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a36825000
close(4) = 0
openat(AT_FDCWD, "/lib64/libmount.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\365\0\0\0\0\0\0"..., 832) = 832
lseek(4, 380440, SEEK_SET) = 380440
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=497760, ...}) = 0
lseek(4, 380440, SEEK_SET) = 380440
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 398632, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35daa000
mprotect(0x7f5a35db6000, 335872, PROT_NONE) = 0
mmap(0x7f5a35db6000, 258048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xc000) = 0x7f5a35db6000
mmap(0x7f5a35df5000, 73728, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4b000) = 0x7f5a35df5000
mmap(0x7f5a35e08000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5d000) = 0x7f5a35e08000
close(4) = 0
openat(AT_FDCWD, "/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\210\0\0\0\0\0\0"..., 832) = 832
lseek(4, 163112, SEEK_SET) = 163112
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=281840, ...}) = 0
lseek(4, 163112, SEEK_SET) = 163112
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 181744, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35d7d000
mprotect(0x7f5a35d84000, 139264, PROT_NONE) = 0
mmap(0x7f5a35d84000, 106496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a35d84000
mmap(0x7f5a35d9e000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x21000) = 0x7f5a35d9e000
mmap(0x7f5a35da6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x28000) = 0x7f5a35da6000
mmap(0x7f5a35da8000, 5616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35da8000
close(4) = 0
openat(AT_FDCWD, "/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000G\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=207000, ...}) = 0
mmap(NULL, 105088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a364e0000
mprotect(0x7f5a364e4000, 73728, PROT_NONE) = 0
mmap(0x7f5a364e4000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a364e4000
mmap(0x7f5a364f1000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x11000) = 0x7f5a364f1000
mmap(0x7f5a364f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15000) = 0x7f5a364f6000
mmap(0x7f5a364f8000, 6784, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a364f8000
close(4) = 0
openat(AT_FDCWD, "/lib64/libffi.so.6", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\"\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=52288, ...}) = 0
mmap(NULL, 42184, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35d72000
mprotect(0x7f5a35d74000, 28672, PROT_NONE) = 0
mmap(0x7f5a35d74000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35d74000
mmap(0x7f5a35d79000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a35d79000
mmap(0x7f5a35d7b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7f5a35d7b000
close(4) = 0
openat(AT_FDCWD, "/lib64/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220#\0\0\0\0\0\0"..., 832) = 832
lseek(4, 461792, SEEK_SET) = 461792
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=557544, ...}) = 0
lseek(4, 461792, SEEK_SET) = 461792
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 471304, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35cfe000
mprotect(0x7f5a35d00000, 458752, PROT_NONE) = 0
mmap(0x7f5a35d00000, 331776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35d00000
mmap(0x7f5a35d51000, 122880, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x53000) = 0x7f5a35d51000
mmap(0x7f5a35d70000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x71000) = 0x7f5a35d70000
close(4) = 0
openat(AT_FDCWD, "/lib64/libfa.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20)\0\0\0\0\0\0"..., 832) = 832
lseek(4, 147168, SEEK_SET) = 147168
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=208496, ...}) = 0
lseek(4, 147168, SEEK_SET) = 147168
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 155680, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35cd7000
mprotect(0x7f5a35cd9000, 143360, PROT_NONE) = 0
mmap(0x7f5a35cd9000, 118784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35cd9000
mmap(0x7f5a35cf6000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1f000) = 0x7f5a35cf6000
mmap(0x7f5a35cfc000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x24000) = 0x7f5a35cfc000
mmap(0x7f5a35cfd000, 32, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35cfd000
close(4) = 0
openat(AT_FDCWD, "/lib64/libxml2.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\371\2\0\0\0\0\0"..., 832) = 832
lseek(4, 1435968, SEEK_SET) = 1435968
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=1558944, ...}) = 0
lseek(4, 1435968, SEEK_SET) = 1435968
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1483096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35b6c000
mmap(0x7f5a35b9a000, 946176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2e000) = 0x7f5a35b9a000
mmap(0x7f5a35c81000, 303104, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x115000) = 0x7f5a35c81000
mmap(0x7f5a35ccb000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15e000) = 0x7f5a35ccb000
mmap(0x7f5a35cd5000, 4440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35cd5000
close(4) = 0
openat(AT_FDCWD, "/lib64/libjson-c.so.4", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20F\0\0\0\0\0\0"..., 832) = 832
lseek(4, 60120, SEEK_SET) = 60120
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=92624, ...}) = 0
lseek(4, 60120, SEEK_SET) = 60120
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 70088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35b5a000
mprotect(0x7f5a35b5e000, 49152, PROT_NONE) = 0
mmap(0x7f5a35b5e000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a35b5e000
mmap(0x7f5a35b66000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xc000) = 0x7f5a35b66000
mmap(0x7f5a35b6a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xf000) = 0x7f5a35b6a000
close(4) = 0
openat(AT_FDCWD, "/lib64/libdw.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\264\0\0\0\0\0\0"..., 832) = 832
lseek(4, 329504, SEEK_SET) = 329504
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=809280, ...}) = 0
lseek(4, 329504, SEEK_SET) = 329504
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 345072, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35b05000
mmap(0x7f5a35b0f000, 229376, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f5a35b0f000
mmap(0x7f5a35b47000, 61440, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x42000) = 0x7f5a35b47000
mmap(0x7f5a35b56000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x50000) = 0x7f5a35b56000
close(4) = 0
openat(AT_FDCWD, "/lib64/libelf.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2206\0\0\0\0\0\0"..., 832) = 832
lseek(4, 98552, SEEK_SET) = 98552
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=322968, ...}) = 0
lseek(4, 98552, SEEK_SET) = 98552
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 106512, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35aea000
mmap(0x7f5a35aed000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5a35aed000
mmap(0x7f5a35afe000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x14000) = 0x7f5a35afe000
mmap(0x7f5a35b03000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x18000) = 0x7f5a35b03000
mmap(0x7f5a35b04000, 16, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35b04000
close(4) = 0
openat(AT_FDCWD, "/lib64/librpm.so.8", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220}\1\0\0\0\0\0"..., 832) = 832
lseek(4, 473616, SEEK_SET) = 473616
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=598648, ...}) = 0
lseek(4, 473616, SEEK_SET) = 473616
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 513008, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35a6c000
mprotect(0x7f5a35a7f000, 401408, PROT_NONE) = 0
mmap(0x7f5a35a7f000, 299008, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x13000) = 0x7f5a35a7f000
mmap(0x7f5a35ac8000, 98304, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5c000) = 0x7f5a35ac8000
mmap(0x7f5a35ae1000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x74000) = 0x7f5a35ae1000
mmap(0x7f5a35ae9000, 1008, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35ae9000
close(4) = 0
openat(AT_FDCWD, "/lib64/librpmio.so.8", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\343\0\0\0\0\0\0"..., 832) = 832
lseek(4, 191624, SEEK_SET) = 191624
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=248792, ...}) = 0
lseek(4, 191624, SEEK_SET) = 191624
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 216704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35a37000
mmap(0x7f5a35a42000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb000) = 0x7f5a35a42000
mmap(0x7f5a35a5e000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x27000) = 0x7f5a35a5e000
mmap(0x7f5a35a66000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2e000) = 0x7f5a35a66000
mmap(0x7f5a35a6a000, 7808, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35a6a000
close(4) = 0
openat(AT_FDCWD, "/lib64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\337\t\0\0\0\0\0"..., 832) = 832
lseek(4, 1998208, SEEK_SET) = 1998208
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=2055504, ...}) = 0
lseek(4, 1998208, SEEK_SET) = 1998208
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 2070080, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3583d000
mprotect(0x7f5a358d3000, 1388544, PROT_NONE) = 0
mmap(0x7f5a358d3000, 1060864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x96000) = 0x7f5a358d3000
mmap(0x7f5a359d6000, 323584, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x199000) = 0x7f5a359d6000
mmap(0x7f5a35a26000, 57344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1e8000) = 0x7f5a35a26000
mmap(0x7f5a35a34000, 9792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35a34000
close(4) = 0
openat(AT_FDCWD, "/lib64/libblkid.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\276\0\0\0\0\0\0"..., 832) = 832
lseek(4, 322840, SEEK_SET) = 322840
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=584448, ...}) = 0
lseek(4, 322840, SEEK_SET) = 322840
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 349960, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a357e7000
mprotect(0x7f5a357f1000, 286720, PROT_NONE) = 0
mmap(0x7f5a357f1000, 217088, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f5a357f1000
mmap(0x7f5a35826000, 65536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3f000) = 0x7f5a35826000
mmap(0x7f5a35837000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4f000) = 0x7f5a35837000
close(4) = 0
openat(AT_FDCWD, "/lib64/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220$\0\0\0\0\0\0"..., 832) = 832
lseek(4, 569632, SEEK_SET) = 569632
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=630312, ...}) = 0
lseek(4, 569632, SEEK_SET) = 569632
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 578088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35759000
mmap(0x7f5a3575b000, 401408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a3575b000
mmap(0x7f5a357bd000, 163840, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x64000) = 0x7f5a357bd000
mmap(0x7f5a357e5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8b000) = 0x7f5a357e5000
close(4) = 0
openat(AT_FDCWD, "/lib64/libzstd.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360N\0\0\0\0\0\0"..., 832) = 832
lseek(4, 674368, SEEK_SET) = 674368
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=746600, ...}) = 0
lseek(4, 674368, SEEK_SET) = 674368
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 684088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a356b1000
mprotect(0x7f5a356b5000, 663552, PROT_NONE) = 0
mmap(0x7f5a356b5000, 589824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a356b5000
mmap(0x7f5a35745000, 69632, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x94000) = 0x7f5a35745000
mmap(0x7f5a35757000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa5000) = 0x7f5a35757000
close(4) = 0
openat(AT_FDCWD, "/lib64/libpopt.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360)\0\0\0\0\0\0"..., 832) = 832
lseek(4, 47376, SEEK_SET) = 47376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=61584, ...}) = 0
lseek(4, 47376, SEEK_SET) = 47376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 53872, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a356a3000
mmap(0x7f5a356a5000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a356a5000
mmap(0x7f5a356ad000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f5a356ad000
mmap(0x7f5a356af000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xb000) = 0x7f5a356af000
close(4) = 0
openat(AT_FDCWD, "/lib64/libcap.so.2", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360#\0\0\0\0\0\0"..., 832) = 832
lseek(4, 19120, SEEK_SET) = 19120
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=34472, ...}) = 0
lseek(4, 19120, SEEK_SET) = 19120
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 24888, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3569c000
mmap(0x7f5a3569e000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a3569e000
mmap(0x7f5a356a0000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a356a0000
mmap(0x7f5a356a1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4000) = 0x7f5a356a1000
close(4) = 0
openat(AT_FDCWD, "/lib64/libacl.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20'\0\0\0\0\0\0"..., 832) = 832
lseek(4, 33512, SEEK_SET) = 33512
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=139080, ...}) = 0
lseek(4, 33512, SEEK_SET) = 33512
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 41088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35691000
mmap(0x7f5a35693000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35693000
mmap(0x7f5a35698000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a35698000
mmap(0x7f5a3569a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0x7f5a3569a000
close(4) = 0
openat(AT_FDCWD, "/lib64/liblua-5.3.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\213\0\0\0\0\0\0"..., 832) = 832
lseek(4, 231024, SEEK_SET) = 231024
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=306016, ...}) = 0
lseek(4, 231024, SEEK_SET) = 231024
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 245768, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35654000
mprotect(0x7f5a3565b000, 208896, PROT_NONE) = 0
mmap(0x7f5a3565b000, 151552, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a3565b000
mmap(0x7f5a35680000, 53248, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2c000) = 0x7f5a35680000
mmap(0x7f5a3568e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x39000) = 0x7f5a3568e000
mmap(0x7f5a35690000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35690000
close(4) = 0
openat(AT_FDCWD, "/lib64/libdb-5.3.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360O\3\0\0\0\0\0"..., 832) = 832
lseek(4, 1827560, SEEK_SET) = 1827560
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=2346144, ...}) = 0
lseek(4, 1827560, SEEK_SET) = 1827560
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1872232, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3548a000
mmap(0x7f5a354b4000, 1372160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2a000) = 0x7f5a354b4000
mmap(0x7f5a35603000, 286720, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x179000) = 0x7f5a35603000
mmap(0x7f5a35649000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1be000) = 0x7f5a35649000
close(4) = 0
openat(AT_FDCWD, "/lib64/libattr.so.1", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000%\0\0\0\0\0\0"..., 832) = 832
lseek(4, 22448, SEEK_SET) = 22448
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=38280, ...}) = 0
lseek(4, 22448, SEEK_SET) = 22448
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 28688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35482000
mmap(0x7f5a35484000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a35484000
mmap(0x7f5a35487000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f5a35487000
mmap(0x7f5a35488000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f5a35488000
mmap(0x7f5a35489000, 16, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5a35489000
close(4) = 0
mprotect(0x7f5a35488000, 4096, PROT_READ) = 0
mprotect(0x7f5a35649000, 40960, PROT_READ) = 0
mprotect(0x7f5a3568e000, 8192, PROT_READ) = 0
mprotect(0x7f5a3569a000, 4096, PROT_READ) = 0
mprotect(0x7f5a356a1000, 4096, PROT_READ) = 0
mprotect(0x7f5a356af000, 4096, PROT_READ) = 0
mprotect(0x7f5a35757000, 4096, PROT_READ) = 0
mprotect(0x7f5a357e5000, 4096, PROT_READ) = 0
mprotect(0x7f5a35837000, 20480, PROT_READ) = 0
mprotect(0x7f5a35a26000, 45056, PROT_READ) = 0
mprotect(0x7f5a35b03000, 4096, PROT_READ) = 0
mprotect(0x7f5a35a66000, 12288, PROT_READ) = 0
mprotect(0x7f5a35ae1000, 20480, PROT_READ) = 0
mprotect(0x7f5a35b56000, 12288, PROT_READ) = 0
mprotect(0x7f5a35b6a000, 4096, PROT_READ) = 0
mprotect(0x7f5a35ccb000, 36864, PROT_READ) = 0
mprotect(0x7f5a35da6000, 4096, PROT_READ) = 0
mprotect(0x7f5a35cfc000, 4096, PROT_READ) = 0
mprotect(0x7f5a35d70000, 4096, PROT_READ) = 0
mprotect(0x7f5a35d7b000, 4096, PROT_READ) = 0
mprotect(0x7f5a364f6000, 4096, PROT_READ) = 0
mprotect(0x7f5a35e08000, 12288, PROT_READ) = 0
mprotect(0x7f5a3600f000, 4096, PROT_READ) = 0
mprotect(0x7f5a36825000, 4096, PROT_READ) = 0
mprotect(0x7f5a35e3d000, 4096, PROT_READ) = 0
mprotect(0x7f5a35e84000, 20480, PROT_READ) = 0
mprotect(0x7f5a35eea000, 12288, PROT_READ) = 0
mprotect(0x7f5a3606a000, 12288, PROT_READ) = 0
mprotect(0x7f5a36237000, 32768, PROT_READ) = 0
mprotect(0x7f5a36504000, 4096, PROT_READ) = 0
mprotect(0x7f5a3627d000, 8192, PROT_READ) = 0
mprotect(0x7f5a3650e000, 4096, PROT_READ) = 0
brk(NULL) = 0x56215c956000
brk(0x56215c977000) = 0x56215c977000
statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
access("/etc/selinux/config", F_OK) = 0
futex(0x7f5a36010fc8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7f5a36010fc8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
munmap(0x7f5a36280000, 202255) = 0
stat("/usr/lib64/python3.7/site-packages/report", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff21647cc0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/io/__init__.abi3.so", 0x7fff21647cc0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/io/__init__.so", 0x7fff21647cc0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/report/io/__init__.py", {st_mode=S_IFREG|0644, st_size=710, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/__init__.py", {st_mode=S_IFREG|0644, st_size=710, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/io/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=121, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=121, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\2\224\34]\306\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 122) = 121
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report/io", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/io", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 7 entries */, 32768) = 208
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/TextIO.py", {st_mode=S_IFREG|0644, st_size=775, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/TextIO.py", {st_mode=S_IFREG|0644, st_size=775, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/io/__pycache__/TextIO.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=317, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=317, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\2\224\34]\7\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 318) = 317
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report/io", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/GTKIO.py", {st_mode=S_IFREG|0644, st_size=900, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/GTKIO.py", {st_mode=S_IFREG|0644, st_size=900, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/io/__pycache__/GTKIO.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=445, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=445, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\2\224\34]\204\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 446) = 445
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/report/io", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/NewtIO.py", {st_mode=S_IFREG|0644, st_size=847, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/report/io/NewtIO.py", {st_mode=S_IFREG|0644, st_size=847, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/report/io/__pycache__/NewtIO.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=452, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=452, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\2\224\34]O\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 453) = 452
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/config.py", {st_mode=S_IFREG|0644, st_size=61, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/config.py", {st_mode=S_IFREG|0644, st_size=61, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/config.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=178, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=178, ...}) = 0
read(4, "B\r\r\n\0\0\0\0X\34\216]=\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 179) = 178
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/exception.py", {st_mode=S_IFREG|0644, st_size=175, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/exception.py", {st_mode=S_IFREG|0644, st_size=175, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/exception.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=700, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=700, ...}) = 0
read(4, "B\r\r\n\0\0\0\0R-\335\\\257\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 701) = 700
read(4, "", 1) = 0
close(4) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5a35442000
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/tools.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/tools.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/tools.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=553, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=553, ...}) = 0
read(4, "B\r\r\n\0\0\0\0R-\335\\\1\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 554) = 553
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/watch.py", {st_mode=S_IFREG|0644, st_size=1989, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/watch.py", {st_mode=S_IFREG|0644, st_size=1989, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/__pycache__/watch.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2232, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2232, ...}) = 0
read(4, "B\r\r\n\0\0\0\0R-\335\\\305\7\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2233) = 2232
read(4, "", 1) = 0
close(4) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/problem/_py3abrt.so", {st_mode=S_IFREG|0755, st_size=19752, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/problem/_py3abrt.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
lseek(4, 8640, SEEK_SET) = 8640
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=19752, ...}) = 0
lseek(4, 8640, SEEK_SET) = 8640
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 16680, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a362ad000
mmap(0x7f5a362ae000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7f5a362ae000
mmap(0x7f5a362af000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a362af000
mmap(0x7f5a362b0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x7f5a362b0000
close(4) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f5a35410000
close(4) = 0
openat(AT_FDCWD, "/lib64/libabrt.so.0", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220d\0\0\0\0\0\0"..., 832) = 832
lseek(4, 67304, SEEK_SET) = 67304
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=100144, ...}) = 0
lseek(4, 67304, SEEK_SET) = 67304
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 77976, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a36299000
mprotect(0x7f5a3629e000, 53248, PROT_NONE) = 0
mmap(0x7f5a3629e000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f5a3629e000
mmap(0x7f5a362a6000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd000) = 0x7f5a362a6000
mmap(0x7f5a362ab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x11000) = 0x7f5a362ab000
close(4) = 0
mprotect(0x7f5a362ab000, 4096, PROT_READ) = 0
mprotect(0x7f5a362b0000, 4096, PROT_READ) = 0
munmap(0x7f5a35410000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7fff2164a340) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/dbus/__init__.abi3.so", 0x7fff2164a340) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/dbus/__init__.so", 0x7fff2164a340) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/site-packages/dbus/__init__.py", {st_mode=S_IFREG|0644, st_size=3723, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/__init__.py", {st_mode=S_IFREG|0644, st_size=3723, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2104, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2104, ...}) = 0
read(4, "B\r\r\n\0\0\0\0:\214\351Z\213\16\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0.\0\0"..., 2105) = 2104
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 19 entries */, 32768) = 640
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_compat.py", {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_compat.py", {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/_compat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=197, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=197, ...}) = 0
read(4, "B\r\r\n\0\0\0\0003@\254Wu\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 198) = 197
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/exceptions.py", {st_mode=S_IFREG|0644, st_size=4674, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/exceptions.py", {st_mode=S_IFREG|0644, st_size=4674, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/exceptions.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3972, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3972, ...}) = 0
read(4, "B\r\r\n\0\0\0\0iR\333VB\22\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3973) = 3972
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/types.py", {st_mode=S_IFREG|0644, st_size=529, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/types.py", {st_mode=S_IFREG|0644, st_size=529, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/types.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=689, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=689, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\266\216\351Z\21\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 690) = 689
read(4, "", 1) = 0
close(4) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/_dbus_bindings.so", {st_mode=S_IFREG|0755, st_size=214024, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/_dbus_bindings.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\211\0\0\0\0\0\0"..., 832) = 832
lseek(4, 114376, SEEK_SET) = 114376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=214024, ...}) = 0
lseek(4, 114376, SEEK_SET) = 114376
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 172584, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a35417000
mprotect(0x7f5a3541e000, 90112, PROT_NONE) = 0
mmap(0x7f5a3541e000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f5a3541e000
mmap(0x7f5a3542d000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x16000) = 0x7f5a3542d000
mmap(0x7f5a35434000, 57344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1c000) = 0x7f5a35434000
close(4) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f5a353e5000
close(4) = 0
openat(AT_FDCWD, "/lib64/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\v\1\0\0\0\0\0"..., 832) = 832
lseek(4, 336912, SEEK_SET) = 336912
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(4, {st_mode=S_IFREG|0755, st_size=764048, ...}) = 0
lseek(4, 336912, SEEK_SET) = 336912
read(4, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 348880, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5a3538f000
mmap(0x7f5a3539c000, 200704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xd000) = 0x7f5a3539c000
mmap(0x7f5a353cd000, 86016, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3e000) = 0x7f5a353cd000
mmap(0x7f5a353e2000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x52000) = 0x7f5a353e2000
close(4) = 0
mprotect(0x7f5a353e2000, 8192, PROT_READ) = 0
mprotect(0x7f5a35434000, 4096, PROT_READ) = 0
munmap(0x7f5a353e5000, 202255) = 0
clock_getres(CLOCK_MONOTONIC, {tv_sec=0, tv_nsec=1}) = 0
getresuid([1000], [1000], [1000]) = 0
getresgid([1000], [1000], [1000]) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_dbus.py", {st_mode=S_IFREG|0644, st_size=8804, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_dbus.py", {st_mode=S_IFREG|0644, st_size=8804, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/_dbus.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=7381, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=7381, ...}) = 0
read(4, "B\r\r\n\0\0\0\0iR\333Vd\"\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 7382) = 7381
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/bus.py", {st_mode=S_IFREG|0644, st_size=17927, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/bus.py", {st_mode=S_IFREG|0644, st_size=17927, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/bus.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14145, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=14145, ...}) = 0
read(4, "B\r\r\n\0\0\0\0iR\333V\7F\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 14146) = 14145
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/connection.py", {st_mode=S_IFREG|0644, st_size=27773, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/connection.py", {st_mode=S_IFREG|0644, st_size=27773, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/connection.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=18037, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=18037, ...}) = 0
brk(NULL) = 0x56215c977000
brk(0x56215c999000) = 0x56215c999000
read(4, "B\r\r\n\0\0\0\0\266\216\351Z}l\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 18038) = 18037
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/lowlevel.py", {st_mode=S_IFREG|0644, st_size=1831, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/lowlevel.py", {st_mode=S_IFREG|0644, st_size=1831, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/lowlevel.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=656, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=656, ...}) = 0
read(4, "B\r\r\n\0\0\0\0iR\333V'\7\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 657) = 656
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/proxies.py", {st_mode=S_IFREG|0644, st_size=24788, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/proxies.py", {st_mode=S_IFREG|0644, st_size=24788, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/proxies.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=17531, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=17531, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\301e\333Z\324`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 17532) = 17531
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/site-packages/dbus", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_expat_introspect_parser.py", {st_mode=S_IFREG|0644, st_size=3376, ...}) = 0
stat("/usr/lib64/python3.7/site-packages/dbus/_expat_introspect_parser.py", {st_mode=S_IFREG|0644, st_size=3376, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2176, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2176, ...}) = 0
read(4, "B\r\r\n\0\0\0\0iR\333V0\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2177) = 2176
read(4, "", 1) = 0
close(4) = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0) = 4
connect(4, {sa_family=AF_UNIX, sun_path="/run/dbus/system_bus_socket"}, 29) = 0
fcntl(4, F_GETFL) = 0x2 (flags O_RDWR)
fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0
geteuid() = 1000
getsockname(4, {sa_family=AF_UNIX}, [128->2]) = 0
poll([{fd=4, events=POLLOUT}], 1, 0) = 1 ([{fd=4, revents=POLLOUT}])
sendto(4, "\0", 1, MSG_NOSIGNAL, NULL, 0) = 1
sendto(4, "AUTH EXTERNAL 31303030\r\n", 24, MSG_NOSIGNAL, NULL, 0) = 24
poll([{fd=4, events=POLLIN}], 1, -1) = 1 ([{fd=4, revents=POLLIN}])
read(4, "OK 355c94274358c94537ed57f95c238"..., 2048) = 37
poll([{fd=4, events=POLLOUT}], 1, -1) = 1 ([{fd=4, revents=POLLOUT}])
sendto(4, "NEGOTIATE_UNIX_FD\r\n", 19, MSG_NOSIGNAL, NULL, 0) = 19
poll([{fd=4, events=POLLIN}], 1, -1) = 1 ([{fd=4, revents=POLLIN}])
read(4, "AGREE_UNIX_FD\r\n", 2048) = 15
poll([{fd=4, events=POLLOUT}], 1, -1) = 1 ([{fd=4, revents=POLLOUT}])
sendto(4, "BEGIN\r\n", 7, MSG_NOSIGNAL, NULL, 0) = 7
poll([{fd=4, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=4, revents=POLLOUT}])
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1\0\0\0\0\1\0\0\0n\0\0\0\1\1o\0\25\0\0\0/org/fre"..., iov_len=128}, {iov_base="", iov_len=0}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 128
poll([{fd=4, events=POLLIN}], 1, 25000) = 1 ([{fd=4, revents=POLLIN}])
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1\f\0\0\0\377\377\377\377?\0\0\0\5\1u\0\1\0\0\0\7\1s\0\24\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 264
recvmsg(4, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1\35\0\0\0\2\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre"..., iov_len=144}, {iov_base="\30\0\0\0org.freedesktop.problems\0", iov_len=29}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 173
poll([{fd=4, events=POLLIN}], 1, 25000) = 1 ([{fd=4, revents=POLLIN}])
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1\v\0\0\0\377\377\377\377?\0\0\0\5\1u\0\2\0\0\0\7\1s\0\24\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 91
recvmsg(4, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1\0\0\0\0\3\0\0\0{\0\0\0\1\1o\0\31\0\0\0/org/fre"..., iov_len=144}, {iov_base="", iov_len=0}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 144
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1\35\0\0\0\4\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre"..., iov_len=144}, {iov_base="\30\0\0\0org.freedesktop.problems\0", iov_len=29}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 173
poll([{fd=4, events=POLLIN}], 1, 25000) = 1 ([{fd=4, revents=POLLIN}])
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1\v\0\0\0\377\377\377\377?\0\0\0\5\1u\0\4\0\0\0\7\1s\0\24\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 91
recvmsg(4, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1\0\0\0\0\5\0\0\0{\0\0\0\1\1o\0\31\0\0\0/org/fre"..., iov_len=144}, {iov_base="", iov_len=0}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 144
lstat("/etc", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
lstat("/etc/abrt", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/etc/abrt/plugins", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/etc/abrt/plugins/python3.conf", {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
stat("/usr/share/augeas/lenses/libreport.aug", {st_mode=S_IFREG|0644, st_size=1348, ...}) = 0
openat(AT_FDCWD, "/usr/share/augeas/lenses/libreport.aug", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1348, ...}) = 0
read(5, "module Libreport =\n autoload "..., 8192) = 1348
read(5, "", 4096) = 0
read(5, "", 8192) = 0
close(5) = 0
stat("/usr/share/augeas/lenses/rx.aug", 0x7fff2164b740) = -1 ENOENT (No such file or directory)
stat("/usr/share/augeas/lenses/dist/rx.aug", {st_mode=S_IFREG|0644, st_size=4158, ...}) = 0
openat(AT_FDCWD, "/usr/share/augeas/lenses/dist/rx.aug", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=4158, ...}) = 0
read(5, "(*\nModule: Rx\n Generic regexps"..., 8192) = 4158
read(5, "", 4096) = 0
read(5, "", 8192) = 0
close(5) = 0
brk(NULL) = 0x56215c999000
brk(0x56215c9ba000) = 0x56215c9ba000
brk(NULL) = 0x56215c9ba000
brk(0x56215c9db000) = 0x56215c9db000
brk(NULL) = 0x56215c9db000
brk(0x56215c9fc000) = 0x56215c9fc000
brk(NULL) = 0x56215c9fc000
brk(0x56215ca1d000) = 0x56215ca1d000
stat("/usr/share/augeas/lenses/sep.aug", 0x7fff2164b780) = -1 ENOENT (No such file or directory)
stat("/usr/share/augeas/lenses/dist/sep.aug", {st_mode=S_IFREG|0644, st_size=1306, ...}) = 0
openat(AT_FDCWD, "/usr/share/augeas/lenses/dist/sep.aug", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1306, ...}) = 0
read(5, "(*\nModule: Sep\n Generic separa"..., 8192) = 1306
read(5, "", 4096) = 0
read(5, "", 8192) = 0
close(5) = 0
stat("/usr/share/augeas/lenses/util.aug", 0x7fff2164b4c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/augeas/lenses/dist/util.aug", {st_mode=S_IFREG|0644, st_size=4963, ...}) = 0
openat(AT_FDCWD, "/usr/share/augeas/lenses/dist/util.aug", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=4963, ...}) = 0
read(5, "(*\nModule: Util\n Generic module"..., 8192) = 4963
read(5, "", 4096) = 0
read(5, "", 8192) = 0
close(5) = 0
lstat("/etc/abrt/plugins/python3.conf", {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
stat("/etc/abrt/plugins/python3.conf", {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
stat("/etc/abrt/plugins/python3.conf", {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
openat(AT_FDCWD, "/etc/abrt/plugins/python3.conf", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
read(5, "# Configuration for the ABRT Pyt"..., 8192) = 372
read(5, "", 4096) = 0
close(5) = 0
stat("/etc/abrt/plugins/python3.conf", {st_mode=S_IFREG|0644, st_size=372, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164b8d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = 0
fcntl(5, F_DUPFD_CLOEXEC, 0) = 6
fcntl(6, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(6, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
read(6, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
close(6) = 0
lseek(5, 0, SEEK_SET) = 0
read(5, "from nmigen import *\nfrom nmigen"..., 8192) = 2759
close(5) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164b8d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = 0
fcntl(5, F_DUPFD_CLOEXEC, 0) = 6
fcntl(6, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(6, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
read(6, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
close(6) = 0
lseek(5, 0, SEEK_SET) = 0
read(5, "from nmigen import *\nfrom nmigen"..., 8192) = 2759
close(5) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164b8d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = 0
fcntl(5, F_DUPFD_CLOEXEC, 0) = 6
fcntl(6, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(6, {st_mode=S_IFREG|0644, st_size=3342, ...}) = 0
read(6, "import os\nimport re\nimport shuti"..., 4096) = 3342
close(6) = 0
lseek(5, 0, SEEK_SET) = 0
read(5, "import os\nimport re\nimport shuti"..., 8192) = 3342
close(5) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/subprocess.py", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164b8d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = 0
fcntl(5, F_DUPFD_CLOEXEC, 0) = 6
fcntl(6, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(6, {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
read(6, "# subprocess - Subprocesses with"..., 4096) = 4096
close(6) = 0
lseek(5, 0, SEEK_SET) = 0
read(5, "# subprocess - Subprocesses with"..., 8192) = 8192
read(5, " had not\n # exited at the tim"..., 8192) = 8192
read(5, "ou to\n pass bytes or a string"..., 8192) = 8192
read(5, "s been\n # updated to prev"..., 8192) = 8192
close(5) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/subprocess.py", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
ioctl(5, TCGETS, 0x7fff2164b8d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(5, 0, SEEK_CUR) = 0
fcntl(5, F_DUPFD_CLOEXEC, 0) = 6
fcntl(6, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(6, {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
read(6, "# subprocess - Subprocesses with"..., 4096) = 4096
close(6) = 0
lseek(5, 0, SEEK_SET) = 0
read(5, "# subprocess - Subprocesses with"..., 8192) = 8192
read(5, " had not\n # exited at the tim"..., 8192) = 8192
read(5, "ou to\n pass bytes or a string"..., 8192) = 8192
read(5, "s been\n # updated to prev"..., 8192) = 8192
read(5, " if self.returncode is None and "..., 8192) = 8192
read(5, " if errwrite is None:\n "..., 8192) = 8192
read(5, " self.stdout_threa"..., 8192) = 8192
read(5, " close_fds, t"..., 8192) = 8192
close(5) = 0
write(2, "Traceback (most recent call last"..., 695Traceback (most recent call last):
File "formal.py", line 100, in <module>
tc.test_result(EuclidianDivider(32))
File "formal.py", line 76, in test_result
self.assertFormal(DividerResultSpec(dut), mode="bmc", depth=10)
File "/usr/local/lib/python3.7/site-packages/nmigen/test/utils.py", line 100, in assertFormal
stdin=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
File "/usr/lib64/python3.7/subprocess.py", line 800, in __init__
restore_signals, start_new_session)
File "/usr/lib64/python3.7/subprocess.py", line 1551, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: '': ''
) = 695
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, {sa_handler=0x7f5a4469ea00, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f5a44874ec0}, 8) = 0
munmap(0x7f5a3690d000, 262144) = 0
sigaltstack(NULL, {ss_sp=0x56215c628fc0, ss_flags=0, ss_size=16384}) = 0
sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}, NULL) = 0
exit_group(1) = ?
+++ exited with 1 +++
This file has been truncated, but you can view the full file.
execve("/usr/bin/python3", ["python3", "formal.py"], 0x7ffc6fcd9ac8 /* 63 vars */) = 0
brk(NULL) = 0x55d88ffa4000
arch_prctl(0x3001 /* ARCH_??? */, 0x7ffe0664e240) = -1 EINVAL (Invalid argument)
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf79cef000
close(3) = 0
openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P@\2\0\0\0\0\0"..., 832) = 832
lseek(3, 792, SEEK_SET) = 792
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\346\4=\16,\314\275\4\36$\325#\200%i\326"..., 68) = 68
fstat(3, {st_mode=S_IFREG|0755, st_size=6697832, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf79ced000
lseek(3, 792, SEEK_SET) = 792
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\346\4=\16,\314\275\4\36$\325#\200%i\326"..., 68) = 68
lseek(3, 864, SEEK_SET) = 864
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 1857472, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf79b27000
mprotect(0x7fbf79b49000, 1679360, PROT_NONE) = 0
mmap(0x7fbf79b49000, 1363968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x22000) = 0x7fbf79b49000
mmap(0x7fbf79c96000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16f000) = 0x7fbf79c96000
mmap(0x7fbf79ce3000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1bb000) = 0x7fbf79ce3000
mmap(0x7fbf79ce9000, 14272, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf79ce9000
close(3) = 0
openat(AT_FDCWD, "/lib64/libpython3.7m.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\204\6\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3371192, ...}) = 0
mmap(NULL, 3446704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf797dd000
mprotect(0x7fbf7983f000, 2457600, PROT_NONE) = 0
mmap(0x7fbf7983f000, 1724416, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x62000) = 0x7fbf7983f000
mmap(0x7fbf799e4000, 729088, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x207000) = 0x7fbf799e4000
mmap(0x7fbf79a97000, 454656, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b9000) = 0x7fbf79a97000
mmap(0x7fbf79b06000, 133040, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf79b06000
close(3) = 0
openat(AT_FDCWD, "/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=823192, ...}) = 0
lseek(3, 808, SEEK_SET) = 808
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 132288, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf797bc000
mmap(0x7fbf797c2000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf797c2000
mmap(0x7fbf797d1000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fbf797d1000
mmap(0x7fbf797d7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fbf797d7000
mmap(0x7fbf797d9000, 13504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf797d9000
close(3) = 0
openat(AT_FDCWD, "/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=61872, ...}) = 0
mmap(NULL, 20784, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf797b6000
mmap(0x7fbf797b7000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf797b7000
mmap(0x7fbf797b9000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf797b9000
mmap(0x7fbf797ba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf797ba000
close(3) = 0
openat(AT_FDCWD, "/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\23\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=36544, ...}) = 0
mmap(NULL, 16656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf797b1000
mmap(0x7fbf797b2000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf797b2000
mmap(0x7fbf797b3000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf797b3000
mmap(0x7fbf797b4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf797b4000
close(3) = 0
openat(AT_FDCWD, "/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\323\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3621096, ...}) = 0
mmap(NULL, 1331456, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf7966b000
mmap(0x7fbf79678000, 638976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7fbf79678000
mmap(0x7fbf79714000, 634880, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa9000) = 0x7fbf79714000
mmap(0x7fbf797af000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x143000) = 0x7fbf797af000
close(3) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf79669000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf79667000
arch_prctl(ARCH_SET_FS, 0x7fbf7966a680) = 0
mprotect(0x7fbf79ce3000, 16384, PROT_READ) = 0
mprotect(0x7fbf797af000, 4096, PROT_READ) = 0
mprotect(0x7fbf797b4000, 4096, PROT_READ) = 0
mprotect(0x7fbf797ba000, 4096, PROT_READ) = 0
mprotect(0x7fbf797d7000, 4096, PROT_READ) = 0
mprotect(0x7fbf79a97000, 24576, PROT_READ) = 0
mprotect(0x55d88e0d8000, 4096, PROT_READ) = 0
mprotect(0x7fbf79d4b000, 4096, PROT_READ) = 0
munmap(0x7fbf79cef000, 202255) = 0
set_tid_address(0x7fbf7966a950) = 20872
set_robust_list(0x7fbf7966a960, 24) = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7fbf797c2c50, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7fbf797cec60}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7fbf797c2cf0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7fbf797cec60}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL) = 0x55d88ffa4000
brk(0x55d88ffc5000) = 0x55d88ffc5000
brk(NULL) = 0x55d88ffc5000
openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=217750512, ...}) = 0
mmap(NULL, 217750512, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c6bd000
close(3) = 0
openat(AT_FDCWD, "/usr/lib64/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26398, ...}) = 0
mmap(NULL, 26398, PROT_READ, MAP_SHARED, 3, 0) = 0x7fbf79d1a000
close(3) = 0
futex(0x7fbf79ce8a34, FUTEX_WAKE_PRIVATE, 2147483647) = 0
stat("/usr/share/Modules/bin/python3", 0x7ffe06641b10) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/python3", 0x7ffe06641b10) = -1 ENOENT (No such file or directory)
stat("/usr/local/sbin/python3", 0x7ffe06641b10) = -1 ENOENT (No such file or directory)
stat("/usr/bin/python3", {st_mode=S_IFREG|0755, st_size=17608, ...}) = 0
readlink("/usr/bin/python3", "python3.7", 4096) = 9
readlink("/usr/bin/python3.7", 0x7ffe0663ba60, 4096) = -1 EINVAL (Invalid argument)
openat(AT_FDCWD, "/usr/bin/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup", 0x7ffe06641b10) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/os.py", 0x7ffe0663c9f0) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/os.pyc", 0x7ffe0663c9f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
stat("/usr/bin/pybuilddir.txt", 0x7ffe0663caf0) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python3.7/lib-dynload", 0x7ffe0663caf0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
getrandom("\x8d\x5a\x1c\xf9\xec\xb4\xe7\x33\xbb\x9a\x61\x4c\x08\xc6\x07\xc4\xca\xd5\xd1\x92\xed\x26\x73\xdc", 24, GRND_NONBLOCK) = 24
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c67d000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c63d000
brk(NULL) = 0x55d88ffc5000
brk(0x55d88ffe9000) = 0x55d88ffe9000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c5fd000
brk(NULL) = 0x55d88ffe9000
brk(0x55d89000b000) = 0x55d89000b000
sysinfo({uptime=92608, loads=[14976, 8864, 18560], totalram=8158568448, freeram=401330176, sharedram=821886976, bufferram=98500608, totalswap=8317300736, freeswap=7596204032, procs=995, totalhigh=0, freehigh=0, mem_unit=1}) = 0
sigaltstack({ss_sp=0x55d88ffc2fc0, ss_flags=0, ss_size=16384}, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
stat("/usr/lib64/python37.zip", 0x7ffe0664c5b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
stat("/usr/lib64/python37.zip", 0x7ffe0664bc60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 207 entries */, 32768) = 6920
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe0664c040) = -1 ENOENT (No such file or directory)
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c5bd000
munmap(0x7fbf6c5bd000, 262144) = 0
stat("/usr/lib64/python3.7/encodings/__init__.abi3.so", 0x7ffe0664c040) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/encodings/__init__.so", 0x7ffe0664c040) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c5bd000
stat("/usr/lib64/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
fstat(3, {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]$\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 3932) = 3931
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
stat("/usr/lib64/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/codecs.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34059, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34059, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\272\216\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0,\0\0"..., 34060) = 34059
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 128 entries */, 32768) = 4336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
stat("/usr/lib64/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/aliases.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6280, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6280, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\331<\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0D\1\0"..., 6281) = 6280
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
stat("/usr/lib64/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/utf_8.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1598, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1598, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\355\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1599) = 1598
read(3, "", 1) = 0
close(3) = 0
rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fbf79b5eec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fbf79b5eec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
getpid() = 20872
rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fbf79b5eec0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fbf79b5eec0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=0x7fbf79988a00, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fbf79b5eec0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
stat("/usr/lib64/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
stat("/usr/lib64/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/encodings/__pycache__/latin_1.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1880, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1880, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\360\4\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 1881) = 1880
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
stat("/usr/lib64/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/io.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3393, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3393, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\275\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 3394) = 3393
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
stat("/usr/lib64/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6435, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6435, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\314\25\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 6436) = 6435
read(3, "", 1) = 0
close(3) = 0
dup(0) = 3
close(3) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(1) = 3
close(3) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(2) = 3
close(3) = 0
fstat(2, {st_mode=S_IFREG|0664, st_size=23206, ...}) = 0
ioctl(2, TCGETS, 0x7ffe0664d690) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(2, 0, SEEK_CUR) = 23359
ioctl(2, TCGETS, 0x7ffe0664d990) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(2, TCGETS, 0x7ffe0664d8a0) = -1 ENOTTY (Inappropriate ioctl for device)
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
stat("/usr/lib64/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_bootlocale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1233, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1233, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\t\7\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 1234) = 1233
read(3, "", 1) = 0
close(3) = 0
lseek(2, 0, SEEK_CUR) = 24283
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21816, ...}) = 0
stat("/usr/lib64/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21816, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/site.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16846, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16846, ...}) = 0
brk(NULL) = 0x55d89000b000
brk(0x55d89002e000) = 0x55d89002e000
read(3, "B\r\r\n\0\0\0\0\216P\250]8U\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 16847) = 16846
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c57d000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
stat("/usr/lib64/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37787, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/os.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=29708, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=29708, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\233\223\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 29709) = 29708
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
stat("/usr/lib64/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/stat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3857, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3857, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\256\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 3858) = 3857
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
stat("/usr/lib64/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/posixpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10413, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10413, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\233=\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 10414) = 10413
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 151552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf79cf5000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4912, ...}) = 0
stat("/usr/lib64/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4912, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/genericpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3888, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3888, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]0\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 3889) = 3888
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
stat("/usr/lib64/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_collections_abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=28926, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=28926, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]8g\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 28927) = 28926
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c53d000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
stat("/usr/lib64/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_sitebuiltins.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3449, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3449, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]+\f\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3450) = 3449
read(3, "", 1) = 0
close(3) = 0
stat("/usr/bin/pyvenv.cfg", 0x7ffe0664bf50) = -1 ENOENT (No such file or directory)
stat("/usr/pyvenv.cfg", 0x7ffe0664bf50) = -1 ENOENT (No such file or directory)
geteuid() = 1000
getuid() = 1000
getegid() = 1000
getgid() = 1000
stat("/home/jeanthomas/.local/lib/python3.7/site-packages", 0x7ffe0664c230) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 48 entries */, 32768) = 2160
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/easy-install.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1111, ...}) = 0
ioctl(3, TCGETS, 0x7ffe0664bc80) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7ffe0664bbb0) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "/home/jeanthomas/Documents/Chubb"..., 8192) = 1111
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/setuptools.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=33, ...}) = 0
ioctl(3, TCGETS, 0x7ffe0664bc80) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7ffe0664bbb0) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "/usr/lib/python3.7/site-packages"..., 8192) = 33
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 147 entries */, 32768) = 5832
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Paste-2.0.3-py3.7-nspkg.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=534, ...}) = 0
ioctl(3, TCGETS, 0x7ffe0664bc80) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7ffe0664bbb0) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "import sys, types, os;has_mfs = "..., 8192) = 534
brk(NULL) = 0x55d89002e000
brk(0x55d890051000) = 0x55d890051000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
stat("/usr/lib64/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/types.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=8960, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=8960, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\251&\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 8961) = 8960
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/importlib/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe066498c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.abi3.so", 0x7ffe066498c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.so", 0x7ffe066498c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/importlib/__init__.py", {st_mode=S_IFREG|0644, st_size=6037, ...}) = 0
stat("/usr/lib64/python3.7/importlib/__init__.py", {st_mode=S_IFREG|0644, st_size=6037, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\225\27\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 3717) = 3716
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
stat("/usr/lib64/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/warnings.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13924, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13924, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\22O\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 13925) = 13924
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 10 entries */, 32768) = 328
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib/util.py", {st_mode=S_IFREG|0644, st_size=11319, ...}) = 0
stat("/usr/lib64/python3.7/importlib/util.py", {st_mode=S_IFREG|0644, st_size=11319, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/util.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=9340, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=9340, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]7,\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 9341) = 9340
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib/abc.py", {st_mode=S_IFREG|0644, st_size=12873, ...}) = 0
stat("/usr/lib64/python3.7/importlib/abc.py", {st_mode=S_IFREG|0644, st_size=12873, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13471, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13471, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]I2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 13472) = 13471
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7/importlib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/importlib/machinery.py", {st_mode=S_IFREG|0644, st_size=844, ...}) = 0
stat("/usr/lib64/python3.7/importlib/machinery.py", {st_mode=S_IFREG|0644, st_size=844, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/importlib/__pycache__/machinery.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=956, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=956, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]L\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 957) = 956
read(4, "", 1) = 0
close(4) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c4fd000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/contextlib.py", {st_mode=S_IFREG|0644, st_size=24762, ...}) = 0
stat("/usr/lib64/python3.7/contextlib.py", {st_mode=S_IFREG|0644, st_size=24762, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/contextlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=20442, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=20442, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\272`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 20443) = 20442
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/collections/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe066481b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.abi3.so", 0x7ffe066481b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.so", 0x7ffe066481b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48380, ...}) = 0
stat("/usr/lib64/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48380, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=47076, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=47076, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\374\274\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 47077) = 47076
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
stat("/usr/lib64/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/operator.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13884, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13884, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]o*\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0006\0\0"..., 13885) = 13884
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2243, ...}) = 0
stat("/usr/lib64/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2243, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/keyword.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1793, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1793, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\303\10\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0#\0\0"..., 1794) = 1793
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
stat("/usr/lib64/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/heapq.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14346, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=14346, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\351Y\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 14347) = 14346
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 68 entries */, 32768) = 4232
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib64/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=27152, ...}) = 0
futex(0x7fbf797bb0e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\20\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=27152, ...}) = 0
mmap(NULL, 27920, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fbf6c4f6000
mmap(0x7fbf6c4f7000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7fbf6c4f7000
mmap(0x7fbf6c4f9000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7fbf6c4f9000
mmap(0x7fbf6c4fa000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7fbf6c4fa000
close(4) = 0
mprotect(0x7fbf6c4fa000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c4b6000
munmap(0x7fbf6c4b6000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c4b6000
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
stat("/usr/lib64/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/reprlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=5334, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=5334, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\223\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 5335) = 5334
read(4, "", 1) = 0
close(4) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32932, ...}) = 0
stat("/usr/lib64/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32932, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/functools.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=24215, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=24215, ...}) = 0
read(4, "B\r\r\n\0\0\0\0\204\367\244]\244\200\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 24216) = 24215
read(4, "", 1) = 0
close(4) = 0
brk(NULL) = 0x55d890051000
brk(0x55d890074000) = 0x55d890074000
brk(NULL) = 0x55d890074000
brk(NULL) = 0x55d890074000
brk(0x55d89006b000) = 0x55d89006b000
brk(NULL) = 0x55d89006b000
brk(NULL) = 0x55d89006b000
brk(NULL) = 0x55d89006b000
brk(0x55d890069000) = 0x55d890069000
brk(NULL) = 0x55d890069000
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(4, /* 147 entries */, 32768) = 5832
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib/python3.7/site-packages/paste/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe0664abb0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.abi3.so", 0x7ffe0664abb0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.so", 0x7ffe0664abb0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.py", 0x7ffe0664abb0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste/__init__.pyc", 0x7ffe0664abb0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/paste", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(3, "", 8192) = 0
close(3) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/abrt3.pth", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=31, ...}) = 0
ioctl(3, TCGETS, 0x7ffe0664bc80) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
ioctl(3, TCGETS, 0x7ffe0664bbb0) = -1 ENOTTY (Inappropriate ioctl for device)
read(3, "import abrt_exception_handler3\n", 8192) = 31
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 8 entries */, 32768) = 296
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 48 entries */, 32768) = 2160
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 14 entries */, 32768) = 432
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 120
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 192
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 184
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 5 entries */, 32768) = 192
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 120
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(4, /* 4 entries */, 32768) = 112
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 15 entries */, 32768) = 456
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 15 entries */, 32768) = 424
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 13 entries */, 32768) = 384
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 9 entries */, 32768) = 272
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 4
fstat(4, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(4, /* 12 entries */, 32768) = 352
getdents64(4, /* 0 entries */, 32768) = 0
close(4) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
stat("/usr/lib/python3.7/site-packages/abrt_exception_handler3.py", {st_mode=S_IFREG|0644, st_size=6866, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/__pycache__/abrt_exception_handler3.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4175, ...}) = 0
lseek(4, 0, SEEK_CUR) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=4175, ...}) = 0
read(4, "B\r\r\n\0\0\0\0002\t\247]\322\32\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 4176) = 4175
read(4, "", 1) = 0
close(4) = 0
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 89 entries */, 32768) = 3568
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY) = 3
ioctl(3, FIOCLEX) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
lseek(3, 0, SEEK_SET) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 2737) = 2737
read(3, "EuclidianDivider(32))\n", 4096) = 22
close(3) = 0
stat("formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
readlink("formal.py", 0x7ffe0663cc80, 4096) = -1 EINVAL (Invalid argument)
getcwd("/home/jeanthomas", 4096) = 17
lstat("/home/jeanthomas/formal.py", {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
openat(AT_FDCWD, "formal.py", O_RDONLY) = 3
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
ioctl(3, TCGETS, 0x7ffe0664dfc0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0664, st_size=2759, ...}) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
lseek(3, 0, SEEK_SET) = 0
read(3, "from nmigen import *\nfrom nmigen"..., 4096) = 2759
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c476000
read(3, "", 4096) = 0
munmap(0x7fbf6c476000, 262144) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c476000
munmap(0x7fbf6c476000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c476000
munmap(0x7fbf6c476000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c476000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
getdents64(3, /* 287 entries */, 32768) = 10752
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe0664c3f0) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.abi3.so", 0x7ffe0664c3f0) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.so", 0x7ffe0664c3f0) = -1 ENOENT (No such file or directory)
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.py", {st_mode=S_IFREG|0644, st_size=526, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen/__init__.py", {st_mode=S_IFREG|0644, st_size=526, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=621, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=621, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\220F\354]\16\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 622) = 621
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe0664b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.abi3.so", 0x7ffe0664b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.so", 0x7ffe0664b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.py", {st_mode=S_IFREG|0644, st_size=106677, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/__init__.py", {st_mode=S_IFREG|0644, st_size=106677, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=98489, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=98489, ...}) = 0
brk(NULL) = 0x55d890069000
brk(0x55d890092000) = 0x55d890092000
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\265\240\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0G\0\0"..., 98490) = 98489
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/__future__.py", {st_mode=S_IFREG|0644, st_size=5101, ...}) = 0
stat("/usr/lib64/python3.7/__future__.py", {st_mode=S_IFREG|0644, st_size=5101, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/__future__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4116, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4116, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\355\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 4117) = 4116
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c436000
munmap(0x7fbf6c436000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c436000
openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2962, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2962, ...}) = 0
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\0"..., 4096) = 2962
lseek(3, -1863, SEEK_CUR) = 1099
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\0"..., 4096) = 1863
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
stat("/usr/lib64/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/re.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13788, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13788, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]X;\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\35\0\0"..., 13789) = 13788
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34777, ...}) = 0
stat("/usr/lib64/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34777, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/enum.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24254, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24254, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\331\207\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 24255) = 24254
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
stat("/usr/lib64/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_compile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15187, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15187, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\370h\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 15188) = 15187
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39156, ...}) = 0
stat("/usr/lib64/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39156, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_parse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21270, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21270, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\364\230\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 21271) = 21270
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
stat("/usr/lib64/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sre_constants.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6275, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6275, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\t\34\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0"..., 6276) = 6275
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c3f6000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
stat("/usr/lib64/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/copyreg.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]i\33\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 4229) = 4228
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/zipfile.py", {st_mode=S_IFREG|0644, st_size=80522, ...}) = 0
stat("/usr/lib64/python3.7/zipfile.py", {st_mode=S_IFREG|0644, st_size=80522, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/zipfile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=49871, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=49871, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\212:\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 49872) = 49871
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
stat("/usr/lib64/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/shutil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30964, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30964, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\336\243\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 30965) = 30964
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
stat("/usr/lib64/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/fnmatch.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\330\17\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3322) = 3321
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=42640, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=42640, ...}) = 0
mmap(NULL, 43200, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3eb000
mprotect(0x7fbf6c3ed000, 24576, PROT_NONE) = 0
mmap(0x7fbf6c3ed000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3ed000
mmap(0x7fbf6c3f1000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf6c3f1000
mmap(0x7fbf6c3f3000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fbf6c3f3000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c3b9000
close(3) = 0
openat(AT_FDCWD, "/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3605\0\0\0\0\0\0"..., 832) = 832
lseek(3, 94320, SEEK_SET) = 94320
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=131200, ...}) = 0
lseek(3, 94320, SEEK_SET) = 94320
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 102408, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c39f000
mmap(0x7fbf6c3a2000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf6c3a2000
mmap(0x7fbf6c3b0000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7fbf6c3b0000
mmap(0x7fbf6c3b7000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fbf6c3b7000
mmap(0x7fbf6c3b8000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c3b8000
close(3) = 0
mprotect(0x7fbf6c3b7000, 4096, PROT_READ) = 0
mprotect(0x7fbf6c3f3000, 4096, PROT_READ) = 0
munmap(0x7fbf6c3b9000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
stat("/usr/lib64/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/bz2.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11165, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11165, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]z0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 11166) = 11165
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c35f000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
stat("/usr/lib64/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_compression.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\334\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 4109) = 4108
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49049, ...}) = 0
stat("/usr/lib64/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49049, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/threading.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=37870, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=37870, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\231\277\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 37871) = 37870
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
stat("/usr/lib64/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/traceback.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19607, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19607, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\216[\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 19608) = 19607
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
stat("/usr/lib64/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/linecache.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3773, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\300\24\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 3774) = 3773
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
stat("/usr/lib64/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/tokenize.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=17815, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=17815, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\227i\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0/\0\0"..., 17816) = 17815
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
stat("/usr/lib64/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/token.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3583, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3583, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\263\16\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3584) = 3583
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x55d890092000
brk(0x55d8900b9000) = 0x55d8900b9000
brk(NULL) = 0x55d8900b9000
brk(NULL) = 0x55d8900b9000
brk(0x55d8900b0000) = 0x55d8900b0000
brk(NULL) = 0x55d8900b0000
brk(NULL) = 0x55d8900b0000
brk(NULL) = 0x55d8900b0000
brk(0x55d8900ae000) = 0x55d8900ae000
brk(NULL) = 0x55d8900ae000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c31f000
munmap(0x7fbf6c31f000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c31f000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
stat("/usr/lib64/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/_weakrefset.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7446, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7446, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]/\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 7447) = 7446
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=27160, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=27160, ...}) = 0
mmap(NULL, 27864, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3e4000
mmap(0x7fbf6c3e6000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3e6000
mmap(0x7fbf6c3e8000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c3e8000
mmap(0x7fbf6c3e9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c3e9000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c2ed000
close(3) = 0
openat(AT_FDCWD, "/lib64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000%\0\0\0\0\0\0"..., 832) = 832
lseek(3, 70984, SEEK_SET) = 70984
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=92376, ...}) = 0
lseek(3, 70984, SEEK_SET) = 70984
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 80904, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3d0000
mmap(0x7fbf6c3d2000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3d2000
mmap(0x7fbf6c3e0000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fbf6c3e0000
mmap(0x7fbf6c3e2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7fbf6c3e2000
close(3) = 0
mprotect(0x7fbf6c3e2000, 4096, PROT_READ) = 0
mprotect(0x7fbf6c3e9000, 4096, PROT_READ) = 0
munmap(0x7fbf6c2ed000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
stat("/usr/lib64/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/lzma.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11923, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11923, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\2672\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0$\0\0"..., 11924) = 11923
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 299008, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c2d6000
munmap(0x7fbf79cf5000, 151552) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=42872, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 $\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=42872, ...}) = 0
mmap(NULL, 43336, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf79d0f000
mmap(0x7fbf79d11000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf79d11000
mmap(0x7fbf79d15000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf79d15000
mmap(0x7fbf79d17000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fbf79d17000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c2a4000
close(3) = 0
openat(AT_FDCWD, "/lib64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3609\0\0\0\0\0\0"..., 832) = 832
lseek(3, 154368, SEEK_SET) = 154368
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=299384, ...}) = 0
lseek(3, 154368, SEEK_SET) = 154368
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 163848, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c27b000
mprotect(0x7fbf6c27e000, 147456, PROT_NONE) = 0
mmap(0x7fbf6c27e000, 98304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf6c27e000
mmap(0x7fbf6c296000, 45056, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7fbf6c296000
mmap(0x7fbf6c2a2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7fbf6c2a2000
mmap(0x7fbf6c2a3000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c2a3000
close(3) = 0
mprotect(0x7fbf6c2a2000, 4096, PROT_READ) = 0
mprotect(0x7fbf79d17000, 4096, PROT_READ) = 0
munmap(0x7fbf6c2a4000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=17352, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17352, ...}) = 0
mmap(NULL, 18672, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf79d0a000
mmap(0x7fbf79d0b000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf79d0b000
mmap(0x7fbf79d0c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf79d0c000
mmap(0x7fbf79d0d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf79d0d000
close(3) = 0
mprotect(0x7fbf79d0d000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
stat("/usr/lib64/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/struct.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\1\1\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 319) = 318
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=56992, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 4\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=56992, ...}) = 0
mmap(NULL, 56808, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf79cfc000
mprotect(0x7fbf79cff000, 32768, PROT_NONE) = 0
mmap(0x7fbf79cff000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf79cff000
mmap(0x7fbf79d04000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fbf79d04000
mmap(0x7fbf79d07000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fbf79d07000
close(3) = 0
mprotect(0x7fbf79d07000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/binascii.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=35088, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/binascii.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35088, ...}) = 0
mmap(NULL, 35704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf79cf3000
mmap(0x7fbf79cf5000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf79cf5000
mmap(0x7fbf79cf8000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fbf79cf8000
mmap(0x7fbf79cfa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf79cfa000
close(3) = 0
mprotect(0x7fbf79cfa000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/pkgutil.py", {st_mode=S_IFREG|0644, st_size=21461, ...}) = 0
stat("/usr/lib64/python3.7/pkgutil.py", {st_mode=S_IFREG|0644, st_size=21461, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/pkgutil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16344, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16344, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\325S\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 16345) = 16344
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x55d8900ae000
brk(0x55d8900d6000) = 0x55d8900d6000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/weakref.py", {st_mode=S_IFREG|0644, st_size=21508, ...}) = 0
stat("/usr/lib64/python3.7/weakref.py", {st_mode=S_IFREG|0644, st_size=21508, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/weakref.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19553, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19553, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\4T\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 19554) = 19553
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/platform.py", {st_mode=S_IFREG|0755, st_size=46959, ...}) = 0
stat("/usr/lib64/python3.7/platform.py", {st_mode=S_IFREG|0755, st_size=46959, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/platform.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=28148, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=28148, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o\267\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 28149) = 28148
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c23b000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/subprocess.py", {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
stat("/usr/lib64/python3.7/subprocess.py", {st_mode=S_IFREG|0644, st_size=71675, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/subprocess.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=39173, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=39173, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\373\27\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 39174) = 39173
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
stat("/usr/lib64/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/signal.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2496, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2496, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]K\10\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 2497) = 2496
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_posixsubprocess.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=24864, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_posixsubprocess.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=24864, ...}) = 0
mmap(NULL, 25712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3c9000
mmap(0x7fbf6c3cb000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3cb000
mmap(0x7fbf6c3cd000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c3cd000
mmap(0x7fbf6c3ce000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c3ce000
close(3) = 0
mprotect(0x7fbf6c3ce000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=37488, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=37488, ...}) = 0
mmap(NULL, 38072, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3bf000
mmap(0x7fbf6c3c1000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3c1000
mmap(0x7fbf6c3c5000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf6c3c5000
mmap(0x7fbf6c3c6000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf6c3c6000
close(3) = 0
mprotect(0x7fbf6c3c6000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/selectors.py", {st_mode=S_IFREG|0644, st_size=18561, ...}) = 0
stat("/usr/lib64/python3.7/selectors.py", {st_mode=S_IFREG|0644, st_size=18561, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/selectors.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16932, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16932, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\201H\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 16933) = 16932
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
stat("/usr/lib64/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/collections/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=189, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=189, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]D\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 190) = 189
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/math.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=52152, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/math.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\00004\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=52152, ...}) = 0
mmap(NULL, 52392, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c2c9000
mmap(0x7fbf6c2cc000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf6c2cc000
mmap(0x7fbf6c2d1000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7fbf6c2d1000
mmap(0x7fbf6c2d3000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fbf6c2d3000
close(3) = 0
mprotect(0x7fbf6c2d3000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c1fb000
munmap(0x7fbf6c1fb000, 262144) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/plistlib.py", {st_mode=S_IFREG|0644, st_size=29902, ...}) = 0
stat("/usr/lib64/python3.7/plistlib.py", {st_mode=S_IFREG|0644, st_size=29902, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/plistlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=25096, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=25096, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\316t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 25097) = 25096
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c1fb000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/datetime.py", {st_mode=S_IFREG|0644, st_size=86544, ...}) = 0
stat("/usr/lib64/python3.7/datetime.py", {st_mode=S_IFREG|0644, st_size=86544, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/datetime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=57211, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=57211, ...}) = 0
brk(NULL) = 0x55d8900d6000
brk(0x55d8900f7000) = 0x55d8900f7000
read(3, "B\r\r\n\0\0\0\0\204\367\244]\20R\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 57212) = 57211
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_datetime.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=131664, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_datetime.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 U\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=131664, ...}) = 0
mmap(NULL, 130736, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c2a9000
mmap(0x7fbf6c2ae000, 73728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fbf6c2ae000
mmap(0x7fbf6c2c0000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fbf6c2c0000
mmap(0x7fbf6c2c6000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7fbf6c2c6000
close(3) = 0
mprotect(0x7fbf6c2c6000, 4096, PROT_READ) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c1bb000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/xml/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe06648130) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.abi3.so", 0x7ffe06648130) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.so", 0x7ffe06648130) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/__init__.py", {st_mode=S_IFREG|0644, st_size=557, ...}) = 0
stat("/usr/lib64/python3.7/xml/__init__.py", {st_mode=S_IFREG|0644, st_size=557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=690, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=690, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]-\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 691) = 690
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe06648a60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.abi3.so", 0x7ffe06648a60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.so", 0x7ffe06648a60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/xml/parsers/__init__.py", {st_mode=S_IFREG|0644, st_size=167, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers/__init__.py", {st_mode=S_IFREG|0644, st_size=167, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=303, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=303, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\247\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 304) = 303
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768) = 144
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/xml/parsers/expat.py", {st_mode=S_IFREG|0644, st_size=248, ...}) = 0
stat("/usr/lib64/python3.7/xml/parsers/expat.py", {st_mode=S_IFREG|0644, st_size=248, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/xml/parsers/__pycache__/expat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=332, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=332, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\370\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 333) = 332
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/pyexpat.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=71056, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/pyexpat.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260E\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=71056, ...}) = 0
mmap(NULL, 71488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c1a9000
mmap(0x7fbf6c1ad000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c1ad000
mmap(0x7fbf6c1b5000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7fbf6c1b5000
mmap(0x7fbf6c1b8000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7fbf6c1b8000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c177000
close(3) = 0
openat(AT_FDCWD, "/lib64/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360B\0\0\0\0\0\0"..., 832) = 832
lseek(3, 169952, SEEK_SET) = 169952
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
fstat(3, {st_mode=S_IFREG|0755, st_size=191704, ...}) = 0
lseek(3, 169952, SEEK_SET) = 169952
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
mmap(NULL, 184328, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c149000
mprotect(0x7fbf6c14d000, 159744, PROT_NONE) = 0
mmap(0x7fbf6c14d000, 114688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c14d000
mmap(0x7fbf6c169000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7fbf6c169000
mmap(0x7fbf6c174000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7fbf6c174000
mmap(0x7fbf6c176000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c176000
close(3) = 0
mprotect(0x7fbf6c174000, 8192, PROT_READ) = 0
mprotect(0x7fbf6c1b8000, 4096, PROT_READ) = 0
munmap(0x7fbf6c177000, 202255) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/email/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe06649a80) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.abi3.so", 0x7ffe06649a80) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.so", 0x7ffe06649a80) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/email/__init__.py", {st_mode=S_IFREG|0644, st_size=1766, ...}) = 0
stat("/usr/lib64/python3.7/email/__init__.py", {st_mode=S_IFREG|0644, st_size=1766, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1675, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1675, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\346\6\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 1676) = 1675
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 25 entries */, 32768) = 864
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email/parser.py", {st_mode=S_IFREG|0644, st_size=5041, ...}) = 0
stat("/usr/lib64/python3.7/email/parser.py", {st_mode=S_IFREG|0644, st_size=5041, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/parser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5731, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5731, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\261\23\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 5732) = 5731
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/feedparser.py", {st_mode=S_IFREG|0644, st_size=22780, ...}) = 0
stat("/usr/lib64/python3.7/email/feedparser.py", {st_mode=S_IFREG|0644, st_size=22780, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/feedparser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10613, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10613, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\374X\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 10614) = 10613
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/errors.py", {st_mode=S_IFREG|0644, st_size=3647, ...}) = 0
stat("/usr/lib64/python3.7/email/errors.py", {st_mode=S_IFREG|0644, st_size=3647, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/errors.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6175, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6175, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]?\16\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 6176) = 6175
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/_policybase.py", {st_mode=S_IFREG|0644, st_size=15073, ...}) = 0
stat("/usr/lib64/python3.7/email/_policybase.py", {st_mode=S_IFREG|0644, st_size=15073, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/_policybase.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14834, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14834, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\341:\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 14835) = 14834
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/header.py", {st_mode=S_IFREG|0644, st_size=24102, ...}) = 0
stat("/usr/lib64/python3.7/email/header.py", {st_mode=S_IFREG|0644, st_size=24102, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/header.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16370, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16370, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]&^\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 16371) = 16370
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/quoprimime.py", {st_mode=S_IFREG|0644, st_size=9858, ...}) = 0
stat("/usr/lib64/python3.7/email/quoprimime.py", {st_mode=S_IFREG|0644, st_size=9858, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/quoprimime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7648, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7648, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\202&\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 7649) = 7648
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/string.py", {st_mode=S_IFREG|0644, st_size=11564, ...}) = 0
stat("/usr/lib64/python3.7/string.py", {st_mode=S_IFREG|0644, st_size=11564, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/string.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7819, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7819, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244],-\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 7820) = 7819
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/base64mime.py", {st_mode=S_IFREG|0644, st_size=3558, ...}) = 0
stat("/usr/lib64/python3.7/email/base64mime.py", {st_mode=S_IFREG|0644, st_size=3558, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/base64mime.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3219, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3219, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\346\r\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 3220) = 3219
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/base64.py", {st_mode=S_IFREG|0755, st_size=20378, ...}) = 0
stat("/usr/lib64/python3.7/base64.py", {st_mode=S_IFREG|0755, st_size=20378, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/base64.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16972, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16972, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\232O\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 16973) = 16972
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/charset.py", {st_mode=S_IFREG|0644, st_size=17151, ...}) = 0
stat("/usr/lib64/python3.7/email/charset.py", {st_mode=S_IFREG|0644, st_size=17151, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/charset.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11513, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11513, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\377B\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 11514) = 11513
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/encoders.py", {st_mode=S_IFREG|0644, st_size=1786, ...}) = 0
stat("/usr/lib64/python3.7/email/encoders.py", {st_mode=S_IFREG|0644, st_size=1786, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/encoders.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1648, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1648, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\372\6\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1649) = 1648
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/quopri.py", {st_mode=S_IFREG|0755, st_size=7252, ...}) = 0
stat("/usr/lib64/python3.7/quopri.py", {st_mode=S_IFREG|0755, st_size=7252, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/quopri.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5755, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5755, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]T\34\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 5756) = 5755
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/utils.py", {st_mode=S_IFREG|0644, st_size=13488, ...}) = 0
stat("/usr/lib64/python3.7/email/utils.py", {st_mode=S_IFREG|0644, st_size=13488, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/utils.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9451, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9451, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\2604\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0"..., 9452) = 9451
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/random.py", {st_mode=S_IFREG|0644, st_size=27557, ...}) = 0
stat("/usr/lib64/python3.7/random.py", {st_mode=S_IFREG|0644, st_size=27557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/random.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19392, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19392, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\245k\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 19393) = 19392
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/hashlib.py", {st_mode=S_IFREG|0644, st_size=9534, ...}) = 0
stat("/usr/lib64/python3.7/hashlib.py", {st_mode=S_IFREG|0644, st_size=9534, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/hashlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6575, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6575, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]>%\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 6576) = 6575
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=35072, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35072, ...}) = 0
mmap(NULL, 35704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c1a0000
mmap(0x7fbf6c1a2000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c1a2000
mmap(0x7fbf6c1a5000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fbf6c1a5000
mmap(0x7fbf6c1a7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fbf6c1a7000
close(3) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202255, ...}) = 0
mmap(NULL, 202255, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fbf6c117000
close(3) = 0
openat(AT_FDCWD, "/lib64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\240\7\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=4277160, ...}) = 0
mmap(NULL, 3014528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6be37000
mprotect(0x7fbf6beb0000, 2310144, PROT_NONE) = 0
mmap(0x7fbf6beb0000, 1712128, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x79000) = 0x7fbf6beb0000
mmap(0x7fbf6c052000, 593920, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x21b000) = 0x7fbf6c052000
mmap(0x7fbf6c0e4000, 192512, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2ac000) = 0x7fbf6c0e4000
mmap(0x7fbf6c113000, 16256, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fbf6c113000
close(3) = 0
mprotect(0x7fbf6c0e4000, 176128, PROT_READ) = 0
mprotect(0x7fbf6c1a7000, 4096, PROT_READ) = 0
access("/etc/system-fips", F_OK) = -1 ENOENT (No such file or directory)
munmap(0x7fbf6c117000, 202255) = 0
futex(0x7fbf6c1157d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7fbf6c1157cc, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7fbf6c1157c4, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7fbf6c1158c0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x7fbf6c1157a8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_blake2.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=51520, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_blake2.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=51520, ...}) = 0
mmap(NULL, 52160, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c193000
mprotect(0x7fbf6c195000, 36864, PROT_NONE) = 0
mmap(0x7fbf6c195000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c195000
mmap(0x7fbf6c19c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fbf6c19c000
mmap(0x7fbf6c19e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fbf6c19e000
close(3) = 0
mprotect(0x7fbf6c19e000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_sha3.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=102272, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_sha3.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=102272, ...}) = 0
mmap(NULL, 102744, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c179000
mprotect(0x7fbf6c17b000, 86016, PROT_NONE) = 0
mmap(0x7fbf6c17b000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c17b000
mmap(0x7fbf6c18e000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fbf6c18e000
mmap(0x7fbf6c190000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fbf6c190000
close(3) = 0
mprotect(0x7fbf6c190000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/bisect.py", {st_mode=S_IFREG|0644, st_size=2557, ...}) = 0
stat("/usr/lib64/python3.7/bisect.py", {st_mode=S_IFREG|0644, st_size=2557, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/bisect.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2682, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2682, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\375\t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 2683) = 2682
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_bisect.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=17720, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_bisect.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17720, ...}) = 0
mmap(NULL, 18576, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c3ba000
mmap(0x7fbf6c3bb000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf6c3bb000
mmap(0x7fbf6c3bc000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3bc000
mmap(0x7fbf6c3bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c3bd000
close(3) = 0
mprotect(0x7fbf6c3bd000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_random.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=20576, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_random.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=20576, ...}) = 0
mmap(NULL, 21368, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c143000
mmap(0x7fbf6c144000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf6c144000
mmap(0x7fbf6c146000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf6c146000
mmap(0x7fbf6c147000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fbf6c147000
close(3) = 0
mprotect(0x7fbf6c147000, 4096, PROT_READ) = 0
getrandom("\x0b\xfb\x5d\x5e\xad\x61\x52\xf5\x2a\x4f\xed\x03\xbd\x3f\x73\xa8\xfd\x01\xb8\x6d\xdf\xd8\xd0\xeb\x84\x26\xe6\x3a\xf0\x2a\xf1\x74"..., 2496, GRND_NONBLOCK) = 2496
getrandom("\x03\xd5\x72\x48\xe1\x2c\x1e\x96\xd7\x8a\x4f\xe8\x7b\x80\x2f\xb7\x18\x78\xe9\xf2\xa5\x05\x81\x91\x70\x43\xc2\xa6\x79\x7f\xa3\xb0"..., 2496, GRND_NONBLOCK) = 2496
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/socket.py", {st_mode=S_IFREG|0644, st_size=27363, ...}) = 0
stat("/usr/lib64/python3.7/socket.py", {st_mode=S_IFREG|0644, st_size=27363, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/socket.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=22005, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=22005, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\343j\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 22006) = 22005
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bdf7000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_socket.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=135472, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_socket.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360G\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=135472, ...}) = 0
mmap(NULL, 135088, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c122000
mmap(0x7fbf6c126000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fbf6c126000
mmap(0x7fbf6c137000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fbf6c137000
mmap(0x7fbf6c13d000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fbf6c13d000
close(3) = 0
mprotect(0x7fbf6c13d000, 4096, PROT_READ) = 0
brk(NULL) = 0x55d8900f7000
brk(0x55d890119000) = 0x55d890119000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/urllib/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe06645a00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.abi3.so", 0x7ffe06645a00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.so", 0x7ffe06645a00) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python3.7/urllib/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/lib64/python3.7/urllib/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=126, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=126, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\355Z\250]\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 127) = 126
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/urllib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 280
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib64/python3.7/urllib/parse.py", {st_mode=S_IFREG|0644, st_size=38756, ...}) = 0
stat("/usr/lib64/python3.7/urllib/parse.py", {st_mode=S_IFREG|0644, st_size=38756, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/urllib/__pycache__/parse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30817, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30817, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]d\227\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 30818) = 30817
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib64/python3.7/email", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/email/_parseaddr.py", {st_mode=S_IFREG|0644, st_size=17604, ...}) = 0
stat("/usr/lib64/python3.7/email/_parseaddr.py", {st_mode=S_IFREG|0644, st_size=17604, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/email/__pycache__/_parseaddr.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12389, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12389, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\304D\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 12390) = 12389
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/calendar.py", {st_mode=S_IFREG|0644, st_size=24826, ...}) = 0
stat("/usr/lib64/python3.7/calendar.py", {st_mode=S_IFREG|0644, st_size=24826, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/calendar.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27408, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=27408, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\372`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0"..., 27409) = 27408
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bdb7000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78191, ...}) = 0
stat("/usr/lib64/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78191, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/locale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34572, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34572, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o1\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0M\2\0"..., 34573) = 34572
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x55d890119000
brk(0x55d89013a000) = 0x55d89013a000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/tempfile.py", {st_mode=S_IFREG|0644, st_size=26710, ...}) = 0
stat("/usr/lib64/python3.7/tempfile.py", {st_mode=S_IFREG|0644, st_size=26710, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/tempfile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=22129, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=22129, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]Vh\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 22130) = 22129
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bd77000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19407, ...}) = 0
stat("/usr/lib64/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19407, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/textwrap.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13509, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13509, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\317K\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 13510) = 13509
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/inspect.py", {st_mode=S_IFREG|0644, st_size=117634, ...}) = 0
stat("/usr/lib64/python3.7/inspect.py", {st_mode=S_IFREG|0644, st_size=117634, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/inspect.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=80027, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=80027, ...}) = 0
brk(NULL) = 0x55d89013a000
brk(0x55d89015b000) = 0x55d89015b000
read(3, "B\r\r\n\0\0\0\0\204\367\244]\202\313\1\0\343\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0"..., 80028) = 80027
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/dis.py", {st_mode=S_IFREG|0644, st_size=19888, ...}) = 0
stat("/usr/lib64/python3.7/dis.py", {st_mode=S_IFREG|0644, st_size=19888, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/dis.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15189, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15189, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\260M\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 15190) = 15189
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/opcode.py", {st_mode=S_IFREG|0644, st_size=5824, ...}) = 0
stat("/usr/lib64/python3.7/opcode.py", {st_mode=S_IFREG|0644, st_size=5824, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/opcode.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5362, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5362, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\300\26\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 5363) = 5362
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bd37000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=15720, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=15720, ...}) = 0
mmap(NULL, 16656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fbf6c2a4000
mmap(0x7fbf6c2a5000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fbf6c2a5000
mmap(0x7fbf6c2a6000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c2a6000
mmap(0x7fbf6c2a7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fbf6c2a7000
close(3) = 0
mprotect(0x7fbf6c2a7000, 4096, PROT_READ) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/ntpath.py", {st_mode=S_IFREG|0644, st_size=22340, ...}) = 0
stat("/usr/lib64/python3.7/ntpath.py", {st_mode=S_IFREG|0644, st_size=22340, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/ntpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12988, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12988, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]DW\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 12989) = 12988
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 216
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe0664a3b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.abi3.so", 0x7ffe0664a3b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.so", 0x7ffe0664a3b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.py", {st_mode=S_IFREG|0644, st_size=2498, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern/__init__.py", {st_mode=S_IFREG|0644, st_size=2498, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2337, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2337, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\302\t\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 2338) = 2337
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/extern", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 4 entries */, 32768) = 112
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe066485a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.abi3.so", 0x7ffe066485a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.so", 0x7ffe066485a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=117, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\0\0\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"..., 118) = 117
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 240
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\222u\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0A\0\0"..., 24319) = 24318
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bcf7000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/six.py", {st_mode=S_IFREG|0644, st_size=30098, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24318, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\222u\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0A\0\0"..., 24319) = 24318
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/py31compat.py", {st_mode=S_IFREG|0644, st_size=558, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/py31compat.py", {st_mode=S_IFREG|0644, st_size=558, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=562, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=562, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\.\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 563) = 562
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py", {st_mode=S_IFREG|0644, st_size=24679, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py", {st_mode=S_IFREG|0644, st_size=24679, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20605, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=20605, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\g`\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0"..., 20606) = 20605
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffe06648ed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.abi3.so", 0x7ffe06648ed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.so", 0x7ffe06648ed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py", {st_mode=S_IFREG|0644, st_size=513, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=481, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=481, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\1\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 482) = 481
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 392
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__about__.py", {st_mode=S_IFREG|0644, st_size=720, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__about__.py", {st_mode=S_IFREG|0644, st_size=720, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=643, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=643, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\320\2\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 644) = 643
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/version.py", {st_mode=S_IFREG|0644, st_size=11556, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/version.py", {st_mode=S_IFREG|0644, st_size=11556, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10478, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10478, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\$-\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 10479) = 10478
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_structures.py", {st_mode=S_IFREG|0644, st_size=1416, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_structures.py", {st_mode=S_IFREG|0644, st_size=1416, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2785, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2785, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\210\5\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 2786) = 2785
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x55d89015b000
brk(0x55d89017c000) = 0x55d89017c000
brk(NULL) = 0x55d89017c000
brk(0x55d89019d000) = 0x55d89019d000
brk(NULL) = 0x55d89019d000
brk(NULL) = 0x55d89019d000
brk(0x55d89016d000) = 0x55d89016d000
brk(NULL) = 0x55d89016d000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/specifiers.py", {st_mode=S_IFREG|0644, st_size=28025, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/specifiers.py", {st_mode=S_IFREG|0644, st_size=28025, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19711, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19711, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\ym\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 19712) = 19711
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_compat.py", {st_mode=S_IFREG|0644, st_size=860, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_compat.py", {st_mode=S_IFREG|0644, st_size=860, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=933, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=933, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\\\3\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 934) = 933
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bcb7000
brk(NULL) = 0x55d89016d000
brk(0x55d890194000) = 0x55d890194000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/requirements.py", {st_mode=S_IFREG|0644, st_size=4355, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/requirements.py", {st_mode=S_IFREG|0644, st_size=4355, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3798, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3798, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\\3\21\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 3799) = 3798
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/extern", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=202960, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=202960, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\w\212\3\0\343\0\0\0\0\0\0\0\0\0\0\0\0i\0\0"..., 202961) = 202960
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bc77000
brk(NULL) = 0x55d890194000
brk(0x55d8901b5000) = 0x55d8901b5000
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/copy.py", {st_mode=S_IFREG|0644, st_size=8815, ...}) = 0
stat("/usr/lib64/python3.7/copy.py", {st_mode=S_IFREG|0644, st_size=8815, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/copy.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7085, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7085, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]o\"\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 7086) = 7085
read(3, "", 1) = 0
close(3) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
stat("/usr/lib64/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/pprint.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15817, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15817, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\204\367\244]\224Q\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 15818) = 15817
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bc37000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06646e50) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
read(3, "# module pyparsing.py\r\n#\r\n# Copy"..., 4096) = 4096
read(3, "\r\n\r\ntry:\r\n from _thread impor"..., 8192) = 8192
read(3, " #~ - with a modified start loc"..., 8192) = 8192
read(3, "askeys( self ):\r\n \"\"\"Sinc"..., 8192) = 8192
read(3, "n actual list\r\n resul"..., 8192) = 8192
read(3, " ident = Word(alphas, a"..., 8192) = 8192
read(3, "= integer(\"year\") + '/' + intege"..., 8192) = 8192
read(3, "opy()\r\n year_int.addC"..., 8192) = 8192
read(3, " self.not_in_cache"..., 8192) = 8192
read(3, "t self.streamlined:\r\n "..., 8192) = 8192
read(3, "g, stacklevel=2)\r\n re"..., 8192) = 8192
read(3, " match C{<TAB>} characters.\r\n "..., 8192) = 8192
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bbf7000
read(3, " # negative integer\r\n "..., 8192) = 8192
read(3, ")\r\n c.identChars = Keywor"..., 8192) = 8192
read(3, "else:\r\n self.maxLen ="..., 8192) = 8192
read(3, "lf.quoteChar = quoteChar\r\n "..., 8192) = 8192
read(3, "xError = False\r\n\r\nclass GoToColu"..., 8192) = 8192
read(3, " ( len(self.exprs) == 2 ):\r\n "..., 8192) = 8192
read(3, "s, savelist)\r\n if self.ex"..., 8192) = 8192
read(3, " if isinstance( other, Suppr"..., 8192) = 8192
read(3, " if the optional expression is n"..., 8192) = 8192
read(3, "itespace = self.expr.skipWhitesp"..., 8192) = 8192
read(3, "dCall):\r\n self.callable ="..., 8192) = 8192
read(3, "lambda a,b: b.upper().startswith"..., 8192) = 8192
read(3, "\n \"\"\"\r\n _expanded = lambda"..., 8192) = 8192
read(3, "withAttribute(type=\"grid\"))\r\n "..., 8192) = 8192
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bbb7000
read(3, "ombine(Regex(r'\"(?:[^\"\\n\\r\\\\]|(?"..., 8192) = 8192
read(3, "\n raise ParseExceptio"..., 8192) = 8192
read(3, "0-9]{1,2})(\\.(25[0-5]|2[0-4][0-9"..., 8192) = 6775
read(3, "", 8192) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
brk(NULL) = 0x55d8901b5000
brk(0x55d8901d6000) = 0x55d8901d6000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bb77000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/markers.py", {st_mode=S_IFREG|0644, st_size=8248, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/markers.py", {st_mode=S_IFREG|0644, st_size=8248, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8793, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8793, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\22\367Y\\8 \0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 8794) = 8793
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
brk(NULL) = 0x55d8901d6000
brk(0x55d890205000) = 0x55d890205000
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/usr/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py", {st_mode=S_IFREG|0644, st_size=232055, ...}) = 0
stat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
stat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib64/python3.7/sysconfig.py", {st_mode=S_IFREG|0644, st_size=24440, ...}) = 0
stat("/usr/lib64/python3.7/sysconfig.py", {st_mode=S_IFREG|0644, st_size=24440, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/__pycache__/sysconfig.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15524, ...}) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15524, ...}) = 0
read(3, "B\r\r\n\0\0\0\0\354Z\250]x_\0\0\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 15525) = 15524
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bb37000
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0555, st_size=86016, ...}) = 0
lstat("/usr/bin/python3", {st_mode=S_IFLNK|0777, st_size=9, ...}) = 0
readlink("/usr/bin/python3", "python3.7", 4096) = 9
lstat("/usr/bin/python3.7", {st_mode=S_IFREG|0755, st_size=17608, ...}) = 0
stat("/usr/bin/Modules/Setup.dist", 0x7ffe06649c20) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup.local", 0x7ffe06649c20) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="localhost.localdomain", ...}) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
getdents64(3, /* 287 entries */, 32768) = 10752
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 207 entries */, 32768) = 6920
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=172032, ...}) = 0
lstat("/usr/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
lstat("/usr/lib64/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 68 entries */, 32768) = 4232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib64/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/pygame-1.9.6.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 216
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/Paver-1.3.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 368
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib64/python3.7/site-packages/bitarray-1.0.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1001, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: bita"..., 1002) = 1001
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 48 entries */, 32768) = 2160
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyvcd-0.1.4.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pyusb-1.0.2-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: pyus"..., 2228) = 2227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/pycodestyle-2.5.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 416
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 304
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen-0.2.dev11+g6765021-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: nmig"..., 404) = 403
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/nmigen_boards-0.1.dev55+gb8b2bba-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=391, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: nmig"..., 392) = 391
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 10 entries */, 32768) = 336
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/autopep8-1.4.4-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19220, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: auto"..., 19221) = 19220
read(3, "", 1) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/asyncserial-0.1.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/local/lib/python3.7/site-packages/argparse-1.4.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 296
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/migen", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 14 entries */, 32768) = 432
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/migen/migen.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4563, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: mige"..., 4564) = 4563
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/colorama-0.4.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2986, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Sphinx-2.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7029, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_serializinghtml-1.1.3-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1493, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_qthelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1397, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_jsmath-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1361, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_htmlhelp-1.0.2-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1405, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_devhelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1403, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/sphinxcontrib_applehelp-1.0.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1409, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/snowballstemmer-1.2.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2059, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/packaging-19.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=7228, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/imagesize-1.1.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1270, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/docutils-0.14-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2330, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Babel-2.6.0-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1169, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/alabaster-0.7.12-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1980, ...}) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1-py3.7.egg/EGG-INFO/PKG-INFO", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litex", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 456
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 264
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litex/litex.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6118) = 6117
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteeth/liteeth.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4812, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4813) = 4812
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteusb/liteusb.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4273, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4274) = 4273
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litedram", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litedram/litedram.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5436, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5437) = 5436
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litepcie/litepcie.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4966, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4967) = 4966
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litesata", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesata/litesata.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6061, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 6062) = 6061
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 15 entries */, 32768) = 424
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litesdcard/litesdcard.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5427, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5428) = 5427
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 13 entries */, 32768) = 384
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/liteiclink/liteiclink.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5149, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5150) = 5149
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 9 entries */, 32768) = 272
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litevideo/litevideo.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4821, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 4822) = 4821
read(3, "", 1) = 0
close(3) = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas", {st_mode=S_IFDIR|0700, st_size=155648, ...}) = 0
lstat("/home/jeanthomas/Documents", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat("/home/jeanthomas/Documents/Chubby75-blinken/litescope", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
getdents64(3, /* 12 entries */, 32768) = 352
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 6 entries */, 32768) = 192
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
openat(AT_FDCWD, "/home/jeanthomas/Documents/Chubby75-blinken/litescope/litescope.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5069, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: lite"..., 5070) = 5069
read(3, "", 1) = 0
close(3) = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib", {st_mode=S_IFDIR|0555, st_size=36864, ...}) = 0
lstat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 147 entries */, 32768) = 5832
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 232
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/youtube_dl-2019.9.28-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1486, ...}) = 0
read(3, "Metadata-Version: 1.2\nName: yout"..., 1487) = 1486
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/urllib3-1.24.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=44940, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: urll"..., 44941) = 44940
read(3, "", 1) = 0
close(3) = 0
brk(NULL) = 0x55d890205000
brk(0x55d890228000) = 0x55d890228000
mmap(NULL, 180224, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bb0b000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbf6bacb000
munmap(0x7fbf6bb0b000, 180224) = 0
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/Tempita-0.5.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1315, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: Temp"..., 1316) = 1315
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
stat("/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/SSSDConfig-2.2.2-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=204, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: SSSD"..., 205) = 204
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/speg-0.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=258, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: speg"..., 259) = 258
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sos-3.8-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=305, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: sos\n"..., 306) = 305
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 197) = 196
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
stat("/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/slip.dbus-0.6.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=269, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: slip"..., 270) = 269
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/six-1.12.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 248
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
stat("/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/simpleline-1.4-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=266, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: simp"..., 267) = 266
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/setuptools-40.8.0.dist-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 11 entries */, 32768) = 360
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
stat("/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/sepolicy-1.1-py3.7.egg-info", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
ioctl(3, TCGETS, 0x7ffe06649bb0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=227, ...}) = 0
read(3, "Metadata-Version: 1.0\nName: sepo"..., 228) = 227
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 8 entries */, 32768) = 256
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests-2.21.0-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5932, ...}) = 0
read(3, "Metadata-Version: 2.1\nName: requ"..., 5933) = 5932
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_ftp-0.3.1-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4265, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 4266) = 4265
read(3, "", 1) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 7 entries */, 32768) = 224
getdents64(3, /* 0 entries */, 32768) = 0
close(3) = 0
stat("/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages/requests_file-1.4.3-py3.7.egg-info/PKG-INFO", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
ioctl(3, TCGETS, 0x7ffe066499c0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=547, ...}) = 0
read(3, "Metadata-Version: 1.1\nName: requ"..., 548) = 547
read(3, "", 1) = 0
close(3) = 0
stat("/usr/l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment