summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-03 16:01:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-15 14:53:45 +0100
commiteb226b897fcba0ec1d94e15957e714d241931813 (patch)
tree585b5623a6b52bf9868e19801b78512ce21ea5fc
parent26ae42ded7f2a59f7ccc8e8e8b763b4613a2bbdb (diff)
downloadpoky-eb226b897fcba0ec1d94e15957e714d241931813.tar.gz
buildhistory: Add simplistic file move detection
We'd like to use buildhistory more during patch review however its proving hard, particularly where whole subtrees of files move, such as a kernel version upgrade, or where a software module moves include directory. This adds file rename matching which covers our common case of library moves, kernel upgrades and more. A new test case is also added so that someone in the future can change the code and test the logic is still doing the expected things. (From OE-Core rev: 791ce304f5e066759874beac0feef5ee62a1c255) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oe/buildhistory_analysis.py65
-rw-r--r--meta/lib/oeqa/files/buildhistory_filelist1.txt9214
-rw-r--r--meta/lib/oeqa/files/buildhistory_filelist2.txt9217
-rw-r--r--meta/lib/oeqa/selftest/cases/oelib/buildhistory.py46
4 files changed, 18539 insertions, 3 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
index 5b28774c98..2d6fa1779e 100644
--- a/meta/lib/oe/buildhistory_analysis.py
+++ b/meta/lib/oe/buildhistory_analysis.py
@@ -213,6 +213,7 @@ class FileChange:
213 changetype_perms = 'P' 213 changetype_perms = 'P'
214 changetype_ownergroup = 'O' 214 changetype_ownergroup = 'O'
215 changetype_link = 'L' 215 changetype_link = 'L'
216 changetype_move = 'M'
216 217
217 def __init__(self, path, changetype, oldvalue = None, newvalue = None): 218 def __init__(self, path, changetype, oldvalue = None, newvalue = None):
218 self.path = path 219 self.path = path
@@ -251,10 +252,11 @@ class FileChange:
251 return '%s changed owner/group from %s to %s' % (self.path, self.oldvalue, self.newvalue) 252 return '%s changed owner/group from %s to %s' % (self.path, self.oldvalue, self.newvalue)
252 elif self.changetype == self.changetype_link: 253 elif self.changetype == self.changetype_link:
253 return '%s changed symlink target from %s to %s' % (self.path, self.oldvalue, self.newvalue) 254 return '%s changed symlink target from %s to %s' % (self.path, self.oldvalue, self.newvalue)
255 elif self.changetype == self.changetype_move:
256 return '%s moved to %s' % (self.path, self.oldvalue)
254 else: 257 else:
255 return '%s changed (unknown)' % self.path 258 return '%s changed (unknown)' % self.path
256 259
257
258def blob_to_dict(blob): 260def blob_to_dict(blob):
259 alines = [line for line in blob.data_stream.read().decode('utf-8').splitlines()] 261 alines = [line for line in blob.data_stream.read().decode('utf-8').splitlines()]
260 adict = {} 262 adict = {}
@@ -281,11 +283,14 @@ def file_list_to_dict(lines):
281 adict[path] = splitv[0:3] 283 adict[path] = splitv[0:3]
282 return adict 284 return adict
283 285
286numeric_removal = str.maketrans('0123456789', 'XXXXXXXXXX')
284 287
285def compare_file_lists(alines, blines, compare_ownership=True): 288def compare_file_lists(alines, blines, compare_ownership=True):
286 adict = file_list_to_dict(alines) 289 adict = file_list_to_dict(alines)
287 bdict = file_list_to_dict(blines) 290 bdict = file_list_to_dict(blines)
288 filechanges = [] 291 filechanges = []
292 additions = []
293 removals = []
289 for path, splitv in adict.items(): 294 for path, splitv in adict.items():
290 newsplitv = bdict.pop(path, None) 295 newsplitv = bdict.pop(path, None)
291 if newsplitv: 296 if newsplitv:
@@ -318,11 +323,65 @@ def compare_file_lists(alines, blines, compare_ownership=True):
318 if oldvalue != newvalue: 323 if oldvalue != newvalue:
319 filechanges.append(FileChange(path, FileChange.changetype_link, oldvalue, newvalue)) 324 filechanges.append(FileChange(path, FileChange.changetype_link, oldvalue, newvalue))
320 else: 325 else:
321 filechanges.append(FileChange(path, FileChange.changetype_remove)) 326 removals.append(path)
322 327
323 # Whatever is left over has been added 328 # Whatever is left over has been added
324 for path in bdict: 329 for path in bdict:
325 filechanges.append(FileChange(path, FileChange.changetype_add)) 330 additions.append(path)
331
332 # Rather than print additions and removals, its nicer to print file 'moves'
333 # where names or paths are similar.
334 revmap_remove = {}
335 for removal in removals:
336 translated = removal.translate(numeric_removal)
337 if translated not in revmap_remove:
338 revmap_remove[translated] = []
339 revmap_remove[translated].append(removal)
340
341 #
342 # We want to detect renames of large trees of files like
343 # /lib/modules/5.4.40-yocto-standard to /lib/modules/5.4.43-yocto-standard
344 #
345 renames = {}
346 for addition in additions.copy():
347 if addition not in additions:
348 continue
349 translated = addition.translate(numeric_removal)
350 if translated in revmap_remove:
351 if len(revmap_remove[translated]) != 1:
352 continue
353 removal = revmap_remove[translated][0]
354 commondir = addition.split("/")
355 commondir2 = removal.split("/")
356 idx = None
357 for i in range(len(commondir)):
358 if commondir[i] != commondir2[i]:
359 idx = i
360 break
361 commondir = "/".join(commondir[:i+1])
362 commondir2 = "/".join(commondir2[:i+1])
363 # If the common parent is in one dict and not the other its likely a rename
364 # so iterate through those files and process as such
365 if commondir2 not in bdict and commondir not in adict:
366 if commondir not in renames:
367 renames[commondir] = commondir2
368 for addition2 in additions.copy():
369 if addition2.startswith(commondir):
370 removal2 = addition2.replace(commondir, commondir2)
371 if removal2 in removals:
372 additions.remove(addition2)
373 removals.remove(removal2)
374 continue
375 filechanges.append(FileChange(removal, FileChange.changetype_move, addition))
376 additions.remove(addition)
377 removals.remove(removal)
378 for rename in renames:
379 filechanges.append(FileChange(renames[rename], FileChange.changetype_move, rename))
380
381 for addition in additions:
382 filechanges.append(FileChange(addition, FileChange.changetype_add))
383 for removal in removals:
384 filechanges.append(FileChange(removal, FileChange.changetype_remove))
326 385
327 return filechanges 386 return filechanges
328 387
diff --git a/meta/lib/oeqa/files/buildhistory_filelist1.txt b/meta/lib/oeqa/files/buildhistory_filelist1.txt
new file mode 100644
index 0000000000..8d882895ad
--- /dev/null
+++ b/meta/lib/oeqa/files/buildhistory_filelist1.txt
@@ -0,0 +1,9214 @@
1drwxr-xr-x root root 4096 ./bin
2lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid
3lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils
4-rwxr-xr-x root root 1190872 ./bin/bash.bash
5lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash
6lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid
7-rwxr-xr-x root root 613008 ./bin/busybox.nosuid
8-rwsr-xr-x root root 59440 ./bin/busybox.suid
9lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils
10-rwxr-xr-x root root 47336 ./bin/cat.coreutils
11lrwxrwxrwx root root 21 ./bin/chattr -> /bin/chattr.e2fsprogs
12-rwxr-xr-x root root 14312 ./bin/chattr.e2fsprogs
13lrwxrwxrwx root root 20 ./bin/chgrp -> /bin/chgrp.coreutils
14-rwxr-xr-x root root 75944 ./bin/chgrp.coreutils
15lrwxrwxrwx root root 20 ./bin/chmod -> /bin/chmod.coreutils
16-rwxr-xr-x root root 71880 ./bin/chmod.coreutils
17lrwxrwxrwx root root 20 ./bin/chown -> /bin/chown.coreutils
18-rwxr-xr-x root root 80040 ./bin/chown.coreutils
19lrwxrwxrwx root root 17 ./bin/cp -> /bin/cp.coreutils
20-rwxr-xr-x root root 137416 ./bin/cp.coreutils
21lrwxrwxrwx root root 19 ./bin/cpio -> /bin/busybox.nosuid
22lrwxrwxrwx root root 19 ./bin/date -> /bin/date.coreutils
23-rwxr-xr-x root root 121032 ./bin/date.coreutils
24lrwxrwxrwx root root 17 ./bin/dd -> /bin/dd.coreutils
25-rwxr-xr-x root root 88272 ./bin/dd.coreutils
26lrwxrwxrwx root root 21 ./bin/df -> /usr/bin/df.coreutils
27lrwxrwxrwx root root 21 ./bin/dmesg -> /bin/dmesg.util-linux
28-rwxr-xr-x root root 84256 ./bin/dmesg.util-linux
29lrwxrwxrwx root root 19 ./bin/dnsdomainname -> /bin/busybox.nosuid
30lrwxrwxrwx root root 19 ./bin/dumpkmap -> /bin/busybox.nosuid
31lrwxrwxrwx root root 19 ./bin/echo -> /bin/echo.coreutils
32-rwxr-xr-x root root 39064 ./bin/echo.coreutils
33lrwxrwxrwx root root 15 ./bin/egrep -> /bin/egrep.grep
34-rwxr-xr-x root root 28 ./bin/egrep.grep
35lrwxrwxrwx root root 20 ./bin/false -> /bin/false.coreutils
36-rwxr-xr-x root root 39064 ./bin/false.coreutils
37lrwxrwxrwx root root 15 ./bin/fgrep -> /bin/fgrep.grep
38-rwxr-xr-x root root 28 ./bin/fgrep.grep
39lrwxrwxrwx root root 22 ./bin/getopt -> /bin/getopt.util-linux
40-rwxr-xr-x root root 22576 ./bin/getopt.util-linux
41lrwxrwxrwx root root 14 ./bin/grep -> /bin/grep.grep
42-rwxr-xr-x root root 244016 ./bin/grep.grep
43lrwxrwxrwx root root 19 ./bin/gunzip -> /bin/busybox.nosuid
44lrwxrwxrwx root root 19 ./bin/gzip -> /bin/busybox.nosuid
45lrwxrwxrwx root root 23 ./bin/hostname -> /bin/hostname.coreutils
46-rwxr-xr-x root root 43176 ./bin/hostname.coreutils
47lrwxrwxrwx root root 16 ./bin/kill -> /bin/kill.procps
48-rwxr-xr-x root root 47712 ./bin/kill.coreutils
49-rwxr-xr-x root root 30760 ./bin/kill.procps
50-rwxr-xr-x root root 38960 ./bin/kill.util-linux
51-rwxr-xr-x root root 141456 ./bin/kmod
52lrwxrwxrwx root root 17 ./bin/ln -> /bin/ln.coreutils
53-rwxr-xr-x root root 75984 ./bin/ln.coreutils
54lrwxrwxrwx root root 17 ./bin/login -> /bin/login.shadow
55-rwxr-xr-x root root 73120 ./bin/login.shadow
56lrwxrwxrwx root root 17 ./bin/ls -> /bin/ls.coreutils
57-rwxr-xr-x root root 162448 ./bin/ls.coreutils
58lrwxrwxrwx root root 15 ./bin/lsmod -> /bin/lsmod.kmod
59lrwxrwxrwx root root 4 ./bin/lsmod.kmod -> kmod
60lrwxrwxrwx root root 20 ./bin/mkdir -> /bin/mkdir.coreutils
61-rwxr-xr-x root root 67752 ./bin/mkdir.coreutils
62lrwxrwxrwx root root 20 ./bin/mknod -> /bin/mknod.coreutils
63-rwxr-xr-x root root 47272 ./bin/mknod.coreutils
64lrwxrwxrwx root root 25 ./bin/mktemp -> /usr/bin/mktemp.coreutils
65lrwxrwxrwx root root 20 ./bin/more -> /bin/more.util-linux
66-rwxr-xr-x root root 42976 ./bin/more.util-linux
67lrwxrwxrwx root root 21 ./bin/mount -> /bin/mount.util-linux
68lrwxrwxrwx root root 26 ./bin/mountpoint -> /bin/mountpoint.util-linux
69-rwxr-xr-x root root 14304 ./bin/mountpoint.sysvinit
70-rwxr-xr-x root root 18480 ./bin/mountpoint.util-linux
71-rwsr-xr-x root root 55344 ./bin/mount.util-linux
72lrwxrwxrwx root root 17 ./bin/mv -> /bin/mv.coreutils
73-rwxr-xr-x root root 145616 ./bin/mv.coreutils
74lrwxrwxrwx root root 19 ./bin/netstat -> /bin/busybox.nosuid
75lrwxrwxrwx root root 23 ./bin/nice -> /usr/bin/nice.coreutils
76lrwxrwxrwx root root 19 ./bin/pidof -> /bin/pidof.sysvinit
77-rwxr-xr-x root root 22568 ./bin/pidof.procps
78lrwxrwxrwx root root 14 ./bin/pidof.sysvinit -> /sbin/killall5
79lrwxrwxrwx root root 17 ./bin/ping6 -> /bin/busybox.suid
80lrwxrwxrwx root root 17 ./bin/ping -> /bin/busybox.suid
81lrwxrwxrwx root root 27 ./bin/printenv -> /usr/bin/printenv.coreutils
82lrwxrwxrwx root root 14 ./bin/ps -> /bin/ps.procps
83-rwxr-xr-x root root 137496 ./bin/ps.procps
84lrwxrwxrwx root root 18 ./bin/pwd -> /bin/pwd.coreutils
85-rwxr-xr-x root root 47272 ./bin/pwd.coreutils
86lrwxrwxrwx root root 17 ./bin/rm -> /bin/rm.coreutils
87-rwxr-xr-x root root 75976 ./bin/rm.coreutils
88lrwxrwxrwx root root 20 ./bin/rmdir -> /bin/rmdir.coreutils
89-rwxr-xr-x root root 55464 ./bin/rmdir.coreutils
90lrwxrwxrwx root root 19 ./bin/run-parts -> /bin/busybox.nosuid
91lrwxrwxrwx root root 12 ./bin/sed -> /bin/sed.sed
92-rwxr-xr-x root root 190896 ./bin/sed.sed
93lrwxrwxrwx root root 14 ./bin/sh -> /bin/bash.bash
94lrwxrwxrwx root root 20 ./bin/sleep -> /bin/sleep.coreutils
95-rwxr-xr-x root root 43176 ./bin/sleep.coreutils
96-rwxr-xr-x root root 1736 ./bin/start_getty
97lrwxrwxrwx root root 19 ./bin/stat -> /bin/stat.coreutils
98-rwxr-xr-x root root 96456 ./bin/stat.coreutils
99lrwxrwxrwx root root 19 ./bin/stty -> /bin/stty.coreutils
100-rwxr-xr-x root root 92360 ./bin/stty.coreutils
101lrwxrwxrwx root root 14 ./bin/su -> /bin/su.shadow
102-rwsr-xr-x root root 60992 ./bin/su.shadow
103lrwxrwxrwx root root 19 ./bin/sync -> /bin/sync.coreutils
104-rwxr-xr-x root root 43176 ./bin/sync.coreutils
105lrwxrwxrwx root root 19 ./bin/tar -> /bin/busybox.nosuid
106lrwxrwxrwx root root 20 ./bin/touch -> /bin/touch.coreutils
107-rwxr-xr-x root root 108744 ./bin/touch.coreutils
108lrwxrwxrwx root root 19 ./bin/true -> /bin/true.coreutils
109-rwxr-xr-x root root 39064 ./bin/true.coreutils
110lrwxrwxrwx root root 22 ./bin/umount -> /bin/umount.util-linux
111-rwsr-xr-x root root 34864 ./bin/umount.util-linux
112lrwxrwxrwx root root 20 ./bin/uname -> /bin/uname.coreutils
113-rwxr-xr-x root root 43208 ./bin/uname.coreutils
114lrwxrwxrwx root root 19 ./bin/usleep -> /bin/busybox.nosuid
115lrwxrwxrwx root root 19 ./bin/vi -> /bin/busybox.nosuid
116lrwxrwxrwx root root 17 ./bin/watch -> /bin/watch.procps
117-rwxr-xr-x root root 27016 ./bin/watch.procps
118lrwxrwxrwx root root 19 ./bin/zcat -> /bin/busybox.nosuid
119drwxr-xr-x root root 4096 ./boot
120drwxr-xr-x root root 4096 ./dev
121drwxr-xr-x root root 4096 ./etc
122-rw-r--r-- root root 45 ./etc/bash_completion
123drwxr-xr-x root root 4096 ./etc/bash_completion.d
124-rw-r--r-- root root 447 ./etc/bindresvport.blacklist
125-rw-r--r-- root root 506 ./etc/build
126-rw-r--r-- root root 2370 ./etc/busybox.links.nosuid
127-rw-r--r-- root root 91 ./etc/busybox.links.suid
128drwxr-xr-x root root 4096 ./etc/ca-certificates
129-rw-r--r-- root root 5340 ./etc/ca-certificates.conf
130drwxr-xr-x root root 4096 ./etc/ca-certificates/update.d
131drwxr-xr-x root root 4096 ./etc/dbus-1
132-rw-r--r-- root root 838 ./etc/dbus-1/session.conf
133-rw-r--r-- root root 833 ./etc/dbus-1/system.conf
134drwxr-xr-x root root 4096 ./etc/default
135-rwxr-xr-x root root 93 ./etc/default/devpts
136-rw-r--r-- root root 36 ./etc/default/mountall
137-rw-r--r-- root root 52 ./etc/default/postinst
138-rw-r--r-- root root 1040 ./etc/default/rcS
139-rw-r--r-- root root 117 ./etc/default/useradd
140drwxr-xr-x root root 4096 ./etc/default/volatiles
141-rw-r--r-- root root 1637 ./etc/default/volatiles/00_core
142-rw-r--r-- root root 36 ./etc/default/volatiles/01_bootlogd
143-rw-r--r-- root root 48 ./etc/default/volatiles/99_dbus
144drwxr-xr-x root root 4096 ./etc/depmod.d
145-rw-r--r-- root root 685 ./etc/e2scrub.conf
146drwxr-xr-x root root 4096 ./etc/fonts
147drwxr-xr-x root root 4096 ./etc/fonts/conf.d
148lrwxrwxrwx root root 63 ./etc/fonts/conf.d/10-hinting-slight.conf -> ../../../usr/share/fontconfig/conf.avail/10-hinting-slight.conf
149lrwxrwxrwx root root 67 ./etc/fonts/conf.d/10-scale-bitmap-fonts.conf -> ../../../usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
150lrwxrwxrwx root root 66 ./etc/fonts/conf.d/20-unhint-small-vera.conf -> ../../../usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf
151lrwxrwxrwx root root 63 ./etc/fonts/conf.d/30-metric-aliases.conf -> ../../../usr/share/fontconfig/conf.avail/30-metric-aliases.conf
152lrwxrwxrwx root root 57 ./etc/fonts/conf.d/40-nonlatin.conf -> ../../../usr/share/fontconfig/conf.avail/40-nonlatin.conf
153lrwxrwxrwx root root 56 ./etc/fonts/conf.d/45-generic.conf -> ../../../usr/share/fontconfig/conf.avail/45-generic.conf
154lrwxrwxrwx root root 54 ./etc/fonts/conf.d/45-latin.conf -> ../../../usr/share/fontconfig/conf.avail/45-latin.conf
155lrwxrwxrwx root root 58 ./etc/fonts/conf.d/49-sansserif.conf -> ../../../usr/share/fontconfig/conf.avail/49-sansserif.conf
156lrwxrwxrwx root root 53 ./etc/fonts/conf.d/50-user.conf -> ../../../usr/share/fontconfig/conf.avail/50-user.conf
157lrwxrwxrwx root root 54 ./etc/fonts/conf.d/51-local.conf -> ../../../usr/share/fontconfig/conf.avail/51-local.conf
158lrwxrwxrwx root root 56 ./etc/fonts/conf.d/60-generic.conf -> ../../../usr/share/fontconfig/conf.avail/60-generic.conf
159lrwxrwxrwx root root 54 ./etc/fonts/conf.d/60-latin.conf -> ../../../usr/share/fontconfig/conf.avail/60-latin.conf
160lrwxrwxrwx root root 62 ./etc/fonts/conf.d/65-fonts-persian.conf -> ../../../usr/share/fontconfig/conf.avail/65-fonts-persian.conf
161lrwxrwxrwx root root 57 ./etc/fonts/conf.d/65-nonlatin.conf -> ../../../usr/share/fontconfig/conf.avail/65-nonlatin.conf
162lrwxrwxrwx root root 56 ./etc/fonts/conf.d/69-unifont.conf -> ../../../usr/share/fontconfig/conf.avail/69-unifont.conf
163lrwxrwxrwx root root 58 ./etc/fonts/conf.d/80-delicious.conf -> ../../../usr/share/fontconfig/conf.avail/80-delicious.conf
164lrwxrwxrwx root root 58 ./etc/fonts/conf.d/90-synthetic.conf -> ../../../usr/share/fontconfig/conf.avail/90-synthetic.conf
165-rw-r--r-- root root 978 ./etc/fonts/conf.d/README
166-rw-r--r-- root root 2532 ./etc/fonts/fonts.conf
167-rw-r--r-- root root 650 ./etc/fstab
168-rw-r--r-- root root 501 ./etc/group
169-r-------- root root 420 ./etc/gshadow
170-rw-r--r-- root root 26 ./etc/host.conf
171-rw-r--r-- root root 11 ./etc/hostname
172-rw-r--r-- root root 258 ./etc/hosts
173drwxr-xr-x root root 4096 ./etc/init.d
174-rwxr-xr-x root root 492 ./etc/init.d/banner.sh
175-rwxr-xr-x root root 1997 ./etc/init.d/bootlogd
176-rwxr-xr-x root root 2017 ./etc/init.d/bootmisc.sh
177-rwxr-xr-x root root 3591 ./etc/init.d/checkroot.sh
178-rwxr-xr-x root root 2893 ./etc/init.d/dbus-1
179-rwxr-xr-x root root 526 ./etc/init.d/devpts.sh
180-rwxr-xr-x root root 352 ./etc/init.d/dmesg.sh
181-rw-r--r-- root root 2141 ./etc/init.d/functions
182-rwxr-xr-x root root 510 ./etc/init.d/halt
183-rwxr-xr-x root root 580 ./etc/init.d/hostname.sh
184-rwxr-xr-x root root 2541 ./etc/init.d/hwclock.sh
185-rwxr-xr-x root root 1773 ./etc/init.d/mdmonitor
186-rwxr-xr-x root root 1223 ./etc/init.d/modutils.sh
187-rwxr-xr-x root root 869 ./etc/init.d/mountall.sh
188-rwxr-xr-x root root 1589 ./etc/init.d/mountnfs.sh
189-rwxr-xr-x root root 1956 ./etc/init.d/networking
190-rwxr-xr-x root root 7823 ./etc/init.d/populate-volatile.sh
191-rwxr-xr-x root root 4457 ./etc/init.d/rc
192-rwxr-xr-x root root 525 ./etc/init.d/rcS
193-rwxr-xr-x root root 1273 ./etc/init.d/read-only-rootfs-hook.sh
194-rwxr-xr-x root root 289 ./etc/init.d/reboot
195-rwxr-xr-x root root 585 ./etc/init.d/rmnologin.sh
196-rwxr-xr-x root root 25 ./etc/init.d/run-postinsts
197-rwxr-xr-x root root 429 ./etc/init.d/save-rtc.sh
198-rwxr-xr-x root root 438 ./etc/init.d/sendsigs
199-rwxr-xr-x root root 578 ./etc/init.d/single
200lrwxrwxrwx root root 8 ./etc/init.d/stop-bootlogd -> bootlogd
201-rwxr-xr-x root root 1046 ./etc/init.d/sysfs.sh
202-rwxr-xr-x root root 2066 ./etc/init.d/syslog
203-rwxr-xr-x root root 2779 ./etc/init.d/udev
204-rwxr-xr-x root root 540 ./etc/init.d/umountfs
205-rwxr-xr-x root root 711 ./etc/init.d/umountnfs.sh
206-rwxr-xr-x root root 1473 ./etc/init.d/urandom
207-rw-r--r-- root root 1140 ./etc/inittab
208-rw-r--r-- root root 1633 ./etc/inputrc
209drwxr-xr-x root root 4096 ./etc/iproute2
210-rw-r--r-- root root 85 ./etc/iproute2/bpf_pinning
211-rw-r--r-- root root 81 ./etc/iproute2/ematch_map
212-rw-r--r-- root root 31 ./etc/iproute2/group
213-rw-r--r-- root root 262 ./etc/iproute2/nl_protos
214-rw-r--r-- root root 331 ./etc/iproute2/rt_dsfield
215-rw-r--r-- root root 201 ./etc/iproute2/rt_protos
216-rw-r--r-- root root 112 ./etc/iproute2/rt_realms
217-rw-r--r-- root root 92 ./etc/iproute2/rt_scopes
218-rw-r--r-- root root 87 ./etc/iproute2/rt_tables
219drwxr-xr-x root root 4096 ./etc/iptables
220-rw-r--r-- root root 0 ./etc/iptables/ip6tables.rules
221-rw-r--r-- root root 0 ./etc/iptables/iptables.rules
222-rw-r--r-- root root 58 ./etc/issue
223-rw-r--r-- root root 55 ./etc/issue.net
224-rw-r--r-- root root 18635 ./etc/ld.so.cache
225-rw-r--r-- root root 33 ./etc/ld.so.conf
226-rw-r--r-- root root 827 ./etc/limits
227-rw-r--r-- root root 2006 ./etc/login.access
228-rw-r--r-- root root 12001 ./etc/login.defs
229-rw-r--r-- root root 121 ./etc/logrotate-dmesg.conf
230-rw-r--r-- root root 2687 ./etc/mdadm.conf
231-rw-r--r-- root root 812 ./etc/mke2fs.conf
232drwxr-xr-x root root 4096 ./etc/modprobe.d
233-rw-r--r-- root root 0 ./etc/motd
234lrwxrwxrwx root root 12 ./etc/mtab -> /proc/mounts
235-rw-r--r-- root root 767 ./etc/netconfig
236drwxr-xr-x root root 4096 ./etc/network
237drwxr-xr-x root root 4096 ./etc/network/if-down.d
238drwxr-xr-x root root 4096 ./etc/network/if-post-down.d
239drwxr-xr-x root root 4096 ./etc/network/if-pre-up.d
240-rwxr-xr-x root root 809 ./etc/network/if-pre-up.d/nfsroot
241drwxr-xr-x root root 4096 ./etc/network/if-up.d
242-rw-r--r-- root root 132 ./etc/network/interfaces
243-rw-r--r-- root root 0 ./etc/network/nm-disabled-eth0
244-rw-r--r-- root root 465 ./etc/nsswitch.conf
245-rw-r--r-- root root 767 ./etc/passwd
246-rw-r--r-- root root 984 ./etc/profile
247drwxr-xr-x root root 4096 ./etc/profile.d
248-rw-r--r-- root root 729 ./etc/profile.d/bash_completion.sh
249-rw-r--r-- root root 1107 ./etc/profile.d/gawk.csh
250-rw-r--r-- root root 757 ./etc/profile.d/gawk.sh
251-rw-r--r-- root root 2932 ./etc/protocols
252drwxr-xr-x root root 4096 ./etc/rc0.d
253lrwxrwxrwx root root 16 ./etc/rc0.d/K20dbus-1 -> ../init.d/dbus-1
254lrwxrwxrwx root root 20 ./etc/rc0.d/K20hwclock.sh -> ../init.d/hwclock.sh
255lrwxrwxrwx root root 16 ./etc/rc0.d/K20syslog -> ../init.d/syslog
256lrwxrwxrwx root root 20 ./etc/rc0.d/K80networking -> ../init.d/networking
257lrwxrwxrwx root root 18 ./etc/rc0.d/S20sendsigs -> ../init.d/sendsigs
258lrwxrwxrwx root root 21 ./etc/rc0.d/S25save-rtc.sh -> ../init.d/save-rtc.sh
259lrwxrwxrwx root root 22 ./etc/rc0.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
260lrwxrwxrwx root root 17 ./etc/rc0.d/S38urandom -> ../init.d/urandom
261lrwxrwxrwx root root 18 ./etc/rc0.d/S40umountfs -> ../init.d/umountfs
262lrwxrwxrwx root root 14 ./etc/rc0.d/S90halt -> ../init.d/halt
263drwxr-xr-x root root 4096 ./etc/rc1.d
264lrwxrwxrwx root root 16 ./etc/rc1.d/K20dbus-1 -> ../init.d/dbus-1
265lrwxrwxrwx root root 20 ./etc/rc1.d/K20hwclock.sh -> ../init.d/hwclock.sh
266lrwxrwxrwx root root 16 ./etc/rc1.d/K20syslog -> ../init.d/syslog
267lrwxrwxrwx root root 20 ./etc/rc1.d/K80networking -> ../init.d/networking
268lrwxrwxrwx root root 22 ./etc/rc1.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
269drwxr-xr-x root root 4096 ./etc/rc2.d
270lrwxrwxrwx root root 20 ./etc/rc2.d/S01networking -> ../init.d/networking
271lrwxrwxrwx root root 16 ./etc/rc2.d/S02dbus-1 -> ../init.d/dbus-1
272lrwxrwxrwx root root 21 ./etc/rc2.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
273lrwxrwxrwx root root 20 ./etc/rc2.d/S20hwclock.sh -> ../init.d/hwclock.sh
274lrwxrwxrwx root root 16 ./etc/rc2.d/S20syslog -> ../init.d/syslog
275lrwxrwxrwx root root 22 ./etc/rc2.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
276lrwxrwxrwx root root 23 ./etc/rc2.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
277drwxr-xr-x root root 4096 ./etc/rc3.d
278lrwxrwxrwx root root 20 ./etc/rc3.d/S01networking -> ../init.d/networking
279lrwxrwxrwx root root 16 ./etc/rc3.d/S02dbus-1 -> ../init.d/dbus-1
280lrwxrwxrwx root root 21 ./etc/rc3.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
281lrwxrwxrwx root root 20 ./etc/rc3.d/S20hwclock.sh -> ../init.d/hwclock.sh
282lrwxrwxrwx root root 16 ./etc/rc3.d/S20syslog -> ../init.d/syslog
283lrwxrwxrwx root root 22 ./etc/rc3.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
284lrwxrwxrwx root root 23 ./etc/rc3.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
285drwxr-xr-x root root 4096 ./etc/rc4.d
286lrwxrwxrwx root root 20 ./etc/rc4.d/S01networking -> ../init.d/networking
287lrwxrwxrwx root root 21 ./etc/rc4.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
288lrwxrwxrwx root root 20 ./etc/rc4.d/S20hwclock.sh -> ../init.d/hwclock.sh
289lrwxrwxrwx root root 16 ./etc/rc4.d/S20syslog -> ../init.d/syslog
290lrwxrwxrwx root root 22 ./etc/rc4.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
291lrwxrwxrwx root root 23 ./etc/rc4.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
292drwxr-xr-x root root 4096 ./etc/rc5.d
293lrwxrwxrwx root root 20 ./etc/rc5.d/S01networking -> ../init.d/networking
294lrwxrwxrwx root root 16 ./etc/rc5.d/S02dbus-1 -> ../init.d/dbus-1
295lrwxrwxrwx root root 21 ./etc/rc5.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
296lrwxrwxrwx root root 20 ./etc/rc5.d/S20hwclock.sh -> ../init.d/hwclock.sh
297lrwxrwxrwx root root 16 ./etc/rc5.d/S20syslog -> ../init.d/syslog
298lrwxrwxrwx root root 22 ./etc/rc5.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
299lrwxrwxrwx root root 23 ./etc/rc5.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
300drwxr-xr-x root root 4096 ./etc/rc6.d
301lrwxrwxrwx root root 16 ./etc/rc6.d/K20dbus-1 -> ../init.d/dbus-1
302lrwxrwxrwx root root 20 ./etc/rc6.d/K20hwclock.sh -> ../init.d/hwclock.sh
303lrwxrwxrwx root root 16 ./etc/rc6.d/K20syslog -> ../init.d/syslog
304lrwxrwxrwx root root 20 ./etc/rc6.d/K80networking -> ../init.d/networking
305lrwxrwxrwx root root 18 ./etc/rc6.d/S20sendsigs -> ../init.d/sendsigs
306lrwxrwxrwx root root 21 ./etc/rc6.d/S25save-rtc.sh -> ../init.d/save-rtc.sh
307lrwxrwxrwx root root 22 ./etc/rc6.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
308lrwxrwxrwx root root 17 ./etc/rc6.d/S38urandom -> ../init.d/urandom
309lrwxrwxrwx root root 18 ./etc/rc6.d/S40umountfs -> ../init.d/umountfs
310lrwxrwxrwx root root 16 ./etc/rc6.d/S90reboot -> ../init.d/reboot
311drwxr-xr-x root root 4096 ./etc/rcS.d
312lrwxrwxrwx root root 19 ./etc/rcS.d/S02banner.sh -> ../init.d/banner.sh
313lrwxrwxrwx root root 18 ./etc/rcS.d/S02sysfs.sh -> ../init.d/sysfs.sh
314lrwxrwxrwx root root 21 ./etc/rcS.d/S03mountall.sh -> ../init.d/mountall.sh
315lrwxrwxrwx root root 14 ./etc/rcS.d/S04udev -> ../init.d/udev
316lrwxrwxrwx root root 21 ./etc/rcS.d/S05modutils.sh -> ../init.d/modutils.sh
317lrwxrwxrwx root root 22 ./etc/rcS.d/S06checkroot.sh -> ../init.d/checkroot.sh
318lrwxrwxrwx root root 19 ./etc/rcS.d/S06devpts.sh -> ../init.d/devpts.sh
319lrwxrwxrwx root root 18 ./etc/rcS.d/S07bootlogd -> ../init.d/bootlogd
320lrwxrwxrwx root root 34 ./etc/rcS.d/S29read-only-rootfs-hook.sh -> ../init.d/read-only-rootfs-hook.sh
321lrwxrwxrwx root root 21 ./etc/rcS.d/S36bootmisc.sh -> ../init.d/bootmisc.sh
322lrwxrwxrwx root root 30 ./etc/rcS.d/S37populate-volatile.sh -> ../init.d/populate-volatile.sh
323lrwxrwxrwx root root 18 ./etc/rcS.d/S38dmesg.sh -> ../init.d/dmesg.sh
324lrwxrwxrwx root root 17 ./etc/rcS.d/S38urandom -> ../init.d/urandom
325lrwxrwxrwx root root 21 ./etc/rcS.d/S39hostname.sh -> ../init.d/hostname.sh
326-rw-r--r-- root root 887 ./etc/rpc
327-r-------- root root 1848 ./etc/securetty
328-rw-r--r-- root root 14464 ./etc/services
329-r-------- root root 404 ./etc/shadow
330-rw-r--r-- root root 52 ./etc/shells
331drwxr-xr-x root root 4096 ./etc/skel
332-rwxr-xr-x root root 410 ./etc/skel/.bashrc
333-rwxr-xr-x root root 241 ./etc/skel/.profile
334drwxr-xr-x root root 4096 ./etc/ssl
335drwxr-xr-x root root 16384 ./etc/ssl/certs
336lrwxrwxrwx root root 45 ./etc/ssl/certs/02265526.0 -> Entrust_Root_Certification_Authority_-_G2.pem
337lrwxrwxrwx root root 36 ./etc/ssl/certs/03179a64.0 -> Staat_der_Nederlanden_EV_Root_CA.pem
338lrwxrwxrwx root root 27 ./etc/ssl/certs/062cdee6.0 -> GlobalSign_Root_CA_-_R3.pem
339lrwxrwxrwx root root 25 ./etc/ssl/certs/064e0aa9.0 -> QuoVadis_Root_CA_2_G3.pem
340lrwxrwxrwx root root 50 ./etc/ssl/certs/06dc52d5.0 -> SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
341lrwxrwxrwx root root 20 ./etc/ssl/certs/080911ac.0 -> QuoVadis_Root_CA.pem
342lrwxrwxrwx root root 54 ./etc/ssl/certs/09789157.0 -> Starfield_Services_Root_Certificate_Authority_-_G2.pem
343lrwxrwxrwx root root 16 ./etc/ssl/certs/0b1b94ef.0 -> CFCA_EV_ROOT.pem
344lrwxrwxrwx root root 44 ./etc/ssl/certs/0bf05006.0 -> SSL.com_Root_Certification_Authority_ECC.pem
345lrwxrwxrwx root root 34 ./etc/ssl/certs/0c4c9b6c.0 -> Global_Chambersign_Root_-_2008.pem
346lrwxrwxrwx root root 26 ./etc/ssl/certs/0f6fa695.0 -> GDCA_TrustAUTH_R5_ROOT.pem
347lrwxrwxrwx root root 46 ./etc/ssl/certs/106f3e4d.0 -> Entrust_Root_Certification_Authority_-_EC1.pem
348lrwxrwxrwx root root 49 ./etc/ssl/certs/116bf586.0 -> GeoTrust_Primary_Certification_Authority_-_G2.pem
349lrwxrwxrwx root root 35 ./etc/ssl/certs/128805a3.0 -> EE_Certification_Centre_Root_CA.pem
350lrwxrwxrwx root root 26 ./etc/ssl/certs/157753a5.0 -> AddTrust_External_Root.pem
351lrwxrwxrwx root root 59 ./etc/ssl/certs/1636090b.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
352lrwxrwxrwx root root 23 ./etc/ssl/certs/18856ac4.0 -> SecureSign_RootCA11.pem
353lrwxrwxrwx root root 31 ./etc/ssl/certs/1d3472b9.0 -> GlobalSign_ECC_Root_CA_-_R5.pem
354lrwxrwxrwx root root 37 ./etc/ssl/certs/1e08bfd1.0 -> IdenTrust_Public_Sector_Root_CA_1.pem
355lrwxrwxrwx root root 32 ./etc/ssl/certs/1e09d511.0 -> T-TeleSec_GlobalRoot_Class_2.pem
356lrwxrwxrwx root root 38 ./etc/ssl/certs/244b5494.0 -> DigiCert_High_Assurance_EV_Root_CA.pem
357lrwxrwxrwx root root 20 ./etc/ssl/certs/2ae6433e.0 -> CA_Disig_Root_R2.pem
358lrwxrwxrwx root root 26 ./etc/ssl/certs/2b349938.0 -> AffirmTrust_Commercial.pem
359lrwxrwxrwx root root 22 ./etc/ssl/certs/2c543cd1.0 -> GeoTrust_Global_CA.pem
360lrwxrwxrwx root root 26 ./etc/ssl/certs/2e4eed3c.0 -> thawte_Primary_Root_CA.pem
361lrwxrwxrwx root root 18 ./etc/ssl/certs/2e5ac55d.0 -> DST_Root_CA_X3.pem
362lrwxrwxrwx root root 59 ./etc/ssl/certs/32888f65.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
363lrwxrwxrwx root root 10 ./etc/ssl/certs/349f2832.0 -> EC-ACC.pem
364lrwxrwxrwx root root 27 ./etc/ssl/certs/3513523f.0 -> DigiCert_Global_Root_CA.pem
365lrwxrwxrwx root root 61 ./etc/ssl/certs/3bde41ac.0 -> Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
366lrwxrwxrwx root root 26 ./etc/ssl/certs/3e44d2f7.0 -> TrustCor_RootCert_CA-2.pem
367lrwxrwxrwx root root 27 ./etc/ssl/certs/3e45d192.0 -> Hongkong_Post_Root_CA_1.pem
368lrwxrwxrwx root root 31 ./etc/ssl/certs/40193066.0 -> Certum_Trusted_Network_CA_2.pem
369lrwxrwxrwx root root 16 ./etc/ssl/certs/4042bcee.0 -> ISRG_Root_X1.pem
370lrwxrwxrwx root root 34 ./etc/ssl/certs/40547a79.0 -> COMODO_Certification_Authority.pem
371lrwxrwxrwx root root 43 ./etc/ssl/certs/4304c5e5.0 -> Network_Solutions_Certificate_Authority.pem
372lrwxrwxrwx root root 44 ./etc/ssl/certs/480720ec.0 -> GeoTrust_Primary_Certification_Authority.pem
373lrwxrwxrwx root root 29 ./etc/ssl/certs/48bec511.0 -> Certum_Trusted_Network_CA.pem
374lrwxrwxrwx root root 27 ./etc/ssl/certs/4a6481c9.0 -> GlobalSign_Root_CA_-_R2.pem
375lrwxrwxrwx root root 45 ./etc/ssl/certs/4bfab552.0 -> Starfield_Root_Certificate_Authority_-_G2.pem
376lrwxrwxrwx root root 26 ./etc/ssl/certs/4f316efb.0 -> SwissSign_Gold_CA_-_G2.pem
377lrwxrwxrwx root root 35 ./etc/ssl/certs/5273a94c.0 -> E-Tugra_Certification_Authority.pem
378lrwxrwxrwx root root 32 ./etc/ssl/certs/5443e9e3.0 -> T-TeleSec_GlobalRoot_Class_3.pem
379lrwxrwxrwx root root 27 ./etc/ssl/certs/54657681.0 -> Buypass_Class_2_Root_CA.pem
380lrwxrwxrwx root root 28 ./etc/ssl/certs/57bcb2da.0 -> SwissSign_Silver_CA_-_G2.pem
381lrwxrwxrwx root root 38 ./etc/ssl/certs/5a4d6896.0 -> Staat_der_Nederlanden_Root_CA_-_G3.pem
382lrwxrwxrwx root root 22 ./etc/ssl/certs/5ad8a5d6.0 -> GlobalSign_Root_CA.pem
383lrwxrwxrwx root root 38 ./etc/ssl/certs/5c44d531.0 -> Staat_der_Nederlanden_Root_CA_-_G2.pem
384lrwxrwxrwx root root 26 ./etc/ssl/certs/5cd81ad7.0 -> TeliaSonera_Root_CA_v1.pem
385lrwxrwxrwx root root 26 ./etc/ssl/certs/5d3033c5.0 -> TrustCor_RootCert_CA-1.pem
386lrwxrwxrwx root root 23 ./etc/ssl/certs/5f15c80c.0 -> TWCA_Global_Root_CA.pem
387lrwxrwxrwx root root 27 ./etc/ssl/certs/607986c7.0 -> DigiCert_Global_Root_G2.pem
388lrwxrwxrwx root root 15 ./etc/ssl/certs/6410666e.0 -> Taiwan_GRCA.pem
389lrwxrwxrwx root root 29 ./etc/ssl/certs/653b494a.0 -> Baltimore_CyberTrust_Root.pem
390lrwxrwxrwx root root 40 ./etc/ssl/certs/6b99d060.0 -> Entrust_Root_Certification_Authority.pem
391lrwxrwxrwx root root 20 ./etc/ssl/certs/6d41d539.0 -> Amazon_Root_CA_2.pem
392lrwxrwxrwx root root 44 ./etc/ssl/certs/6fa5da56.0 -> SSL.com_Root_Certification_Authority_RSA.pem
393lrwxrwxrwx root root 24 ./etc/ssl/certs/706f604c.0 -> XRamp_Global_CA_Root.pem
394lrwxrwxrwx root root 25 ./etc/ssl/certs/749e9e03.0 -> QuoVadis_Root_CA_1_G3.pem
395lrwxrwxrwx root root 28 ./etc/ssl/certs/75d1b2ed.0 -> DigiCert_Trusted_Root_G4.pem
396lrwxrwxrwx root root 26 ./etc/ssl/certs/76cb8f92.0 -> Cybertrust_Global_Root.pem
397lrwxrwxrwx root root 22 ./etc/ssl/certs/76faf6c0.0 -> QuoVadis_Root_CA_3.pem
398lrwxrwxrwx root root 63 ./etc/ssl/certs/7719f463.0 -> Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
399lrwxrwxrwx root root 35 ./etc/ssl/certs/773e07ad.0 -> OISTE_WISeKey_Global_Root_GC_CA.pem
400lrwxrwxrwx root root 18 ./etc/ssl/certs/7aaf71c0.0 -> TrustCor_ECA-1.pem
401lrwxrwxrwx root root 64 ./etc/ssl/certs/7d0b38bd.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem
402lrwxrwxrwx root root 31 ./etc/ssl/certs/7f3d5d1d.0 -> DigiCert_Assured_ID_Root_G3.pem
403lrwxrwxrwx root root 30 ./etc/ssl/certs/812e17de.0 -> Deutsche_Telekom_Root_CA_2.pem
404lrwxrwxrwx root root 34 ./etc/ssl/certs/8160b96c.0 -> Microsec_e-Szigno_Root_CA_2009.pem
405lrwxrwxrwx root root 27 ./etc/ssl/certs/8867006a.0 -> GeoTrust_Universal_CA_2.pem
406lrwxrwxrwx root root 20 ./etc/ssl/certs/8cb5ee0f.0 -> Amazon_Root_CA_3.pem
407lrwxrwxrwx root root 20 ./etc/ssl/certs/8d86cdd1.0 -> certSIGN_ROOT_CA.pem
408lrwxrwxrwx root root 34 ./etc/ssl/certs/930ac5d2.0 -> Actalis_Authentication_Root_CA.pem
409lrwxrwxrwx root root 26 ./etc/ssl/certs/93bc0acc.0 -> AffirmTrust_Networking.pem
410lrwxrwxrwx root root 48 ./etc/ssl/certs/988a38cb.0 -> NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem
411lrwxrwxrwx root root 26 ./etc/ssl/certs/9c2e7d30.0 -> Sonera_Class_2_Root_CA.pem
412lrwxrwxrwx root root 27 ./etc/ssl/certs/9c8dfbd4.0 -> AffirmTrust_Premium_ECC.pem
413lrwxrwxrwx root root 31 ./etc/ssl/certs/9d04f354.0 -> DigiCert_Assured_ID_Root_G2.pem
414lrwxrwxrwx root root 24 ./etc/ssl/certs/9f0f5fd6.0 -> Certinomis_-_Root_CA.pem
415lrwxrwxrwx root root 13 ./etc/ssl/certs/a94d09e5.0 -> ACCVRAIZ1.pem
416lrwxrwxrwx root root 56 ./etc/ssl/certs/ACCVRAIZ1.pem -> ../../../usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt
417lrwxrwxrwx root root 63 ./etc/ssl/certs/AC_RAIZ_FNMT-RCM.pem -> ../../../usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt
418lrwxrwxrwx root root 77 ./etc/ssl/certs/Actalis_Authentication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt
419lrwxrwxrwx root root 25 ./etc/ssl/certs/ad088e1d.0 -> GeoTrust_Universal_CA.pem
420lrwxrwxrwx root root 69 ./etc/ssl/certs/AddTrust_External_Root.pem -> ../../../usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt
421lrwxrwxrwx root root 45 ./etc/ssl/certs/aee5f10d.0 -> Entrust.net_Premium_2048_Secure_Server_CA.pem
422lrwxrwxrwx root root 69 ./etc/ssl/certs/AffirmTrust_Commercial.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt
423lrwxrwxrwx root root 69 ./etc/ssl/certs/AffirmTrust_Networking.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt
424lrwxrwxrwx root root 70 ./etc/ssl/certs/AffirmTrust_Premium_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt
425lrwxrwxrwx root root 66 ./etc/ssl/certs/AffirmTrust_Premium.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt
426lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt
427lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt
428lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt
429lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_4.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt
430lrwxrwxrwx root root 68 ./etc/ssl/certs/Atos_TrustedRoot_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt
431lrwxrwxrwx root root 104 ./etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem -> ../../../usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt
432lrwxrwxrwx root root 31 ./etc/ssl/certs/b0e59380.0 -> GlobalSign_ECC_Root_CA_-_R4.pem
433lrwxrwxrwx root root 31 ./etc/ssl/certs/b1159c4c.0 -> DigiCert_Assured_ID_Root_CA.pem
434lrwxrwxrwx root root 35 ./etc/ssl/certs/b1b8a7f3.0 -> OISTE_WISeKey_Global_Root_GA_CA.pem
435lrwxrwxrwx root root 64 ./etc/ssl/certs/b204d74a.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
436lrwxrwxrwx root root 20 ./etc/ssl/certs/b66938e9.0 -> Secure_Global_CA.pem
437lrwxrwxrwx root root 23 ./etc/ssl/certs/b727005e.0 -> AffirmTrust_Premium.pem
438lrwxrwxrwx root root 37 ./etc/ssl/certs/b7a5b843.0 -> TWCA_Root_Certification_Authority.pem
439lrwxrwxrwx root root 31 ./etc/ssl/certs/ba89ed3b.0 -> thawte_Primary_Root_CA_-_G3.pem
440lrwxrwxrwx root root 72 ./etc/ssl/certs/Baltimore_CyberTrust_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt
441lrwxrwxrwx root root 70 ./etc/ssl/certs/Buypass_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt
442lrwxrwxrwx root root 70 ./etc/ssl/certs/Buypass_Class_3_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt
443lrwxrwxrwx root root 51 ./etc/ssl/certs/c01cdfa2.0 -> VeriSign_Universal_Root_Certification_Authority.pem
444lrwxrwxrwx root root 31 ./etc/ssl/certs/c089bbbd.0 -> thawte_Primary_Root_CA_-_G2.pem
445lrwxrwxrwx root root 64 ./etc/ssl/certs/c0ff1f52.0 -> Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
446lrwxrwxrwx root root 34 ./etc/ssl/certs/c28a8a30.0 -> D-TRUST_Root_Class_3_CA_2_2009.pem
447lrwxrwxrwx root root 36 ./etc/ssl/certs/c47d9980.0 -> Chambers_of_Commerce_Root_-_2008.pem
448lrwxrwxrwx root root 37 ./etc/ssl/certs/ca6e4ad9.0 -> ePKI_Root_Certification_Authority.pem
449-rw-r--r-- root root 200061 ./etc/ssl/certs/ca-certificates.crt
450lrwxrwxrwx root root 63 ./etc/ssl/certs/CA_Disig_Root_R2.pem -> ../../../usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt
451lrwxrwxrwx root root 44 ./etc/ssl/certs/cbf06781.0 -> Go_Daddy_Root_Certificate_Authority_-_G2.pem
452lrwxrwxrwx root root 14 ./etc/ssl/certs/cc450945.0 -> Izenpe.com.pem
453lrwxrwxrwx root root 34 ./etc/ssl/certs/cd58d51e.0 -> Security_Communication_RootCA2.pem
454lrwxrwxrwx root root 20 ./etc/ssl/certs/cd8c0d63.0 -> AC_RAIZ_FNMT-RCM.pem
455lrwxrwxrwx root root 20 ./etc/ssl/certs/ce5e74ef.0 -> Amazon_Root_CA_1.pem
456lrwxrwxrwx root root 55 ./etc/ssl/certs/Certigna.pem -> ../../../usr/share/ca-certificates/mozilla/Certigna.crt
457lrwxrwxrwx root root 67 ./etc/ssl/certs/Certinomis_-_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt
458lrwxrwxrwx root root 74 ./etc/ssl/certs/Certplus_Class_2_Primary_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt
459lrwxrwxrwx root root 63 ./etc/ssl/certs/certSIGN_ROOT_CA.pem -> ../../../usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt
460lrwxrwxrwx root root 74 ./etc/ssl/certs/Certum_Trusted_Network_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt
461lrwxrwxrwx root root 72 ./etc/ssl/certs/Certum_Trusted_Network_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt
462lrwxrwxrwx root root 59 ./etc/ssl/certs/CFCA_EV_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt
463lrwxrwxrwx root root 79 ./etc/ssl/certs/Chambers_of_Commerce_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt
464lrwxrwxrwx root root 71 ./etc/ssl/certs/Comodo_AAA_Services_root.pem -> ../../../usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt
465lrwxrwxrwx root root 77 ./etc/ssl/certs/COMODO_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt
466lrwxrwxrwx root root 81 ./etc/ssl/certs/COMODO_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt
467lrwxrwxrwx root root 81 ./etc/ssl/certs/COMODO_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt
468lrwxrwxrwx root root 69 ./etc/ssl/certs/Cybertrust_Global_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt
469lrwxrwxrwx root root 37 ./etc/ssl/certs/d4dae3dd.0 -> D-TRUST_Root_Class_3_CA_2_EV_2009.pem
470lrwxrwxrwx root root 38 ./etc/ssl/certs/d6325660.0 -> COMODO_RSA_Certification_Authority.pem
471lrwxrwxrwx root root 22 ./etc/ssl/certs/d7e8dc79.0 -> QuoVadis_Root_CA_2.pem
472lrwxrwxrwx root root 23 ./etc/ssl/certs/d853d49e.0 -> Trustis_FPS_Root_CA.pem
473lrwxrwxrwx root root 27 ./etc/ssl/certs/dc4d6a89.0 -> GlobalSign_Root_CA_-_R6.pem
474lrwxrwxrwx root root 27 ./etc/ssl/certs/dd8e9d41.0 -> DigiCert_Global_Root_G3.pem
475lrwxrwxrwx root root 20 ./etc/ssl/certs/de6d66f3.0 -> Amazon_Root_CA_4.pem
476lrwxrwxrwx root root 26 ./etc/ssl/certs/def36a68.0 -> LuxTrust_Global_Root_2.pem
477lrwxrwxrwx root root 73 ./etc/ssl/certs/Deutsche_Telekom_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt
478lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt
479lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt
480lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt
481lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt
482lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt
483lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt
484lrwxrwxrwx root root 81 ./etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt
485lrwxrwxrwx root root 71 ./etc/ssl/certs/DigiCert_Trusted_Root_G4.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt
486lrwxrwxrwx root root 61 ./etc/ssl/certs/DST_Root_CA_X3.pem -> ../../../usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
487lrwxrwxrwx root root 77 ./etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt
488lrwxrwxrwx root root 80 ./etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_EV_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt
489lrwxrwxrwx root root 12 ./etc/ssl/certs/e113c810.0 -> Certigna.pem
490lrwxrwxrwx root root 25 ./etc/ssl/certs/e18bfb83.0 -> QuoVadis_Root_CA_3_G3.pem
491lrwxrwxrwx root root 49 ./etc/ssl/certs/e2799e36.0 -> GeoTrust_Primary_Certification_Authority_-_G3.pem
492lrwxrwxrwx root root 25 ./etc/ssl/certs/e36a6752.0 -> Atos_TrustedRoot_2011.pem
493lrwxrwxrwx root root 35 ./etc/ssl/certs/e73d606e.0 -> OISTE_WISeKey_Global_Root_GB_CA.pem
494lrwxrwxrwx root root 27 ./etc/ssl/certs/e8de2f56.0 -> Buypass_Class_3_Root_CA.pem
495lrwxrwxrwx root root 53 ./etc/ssl/certs/EC-ACC.pem -> ../../../usr/share/ca-certificates/mozilla/EC-ACC.crt
496lrwxrwxrwx root root 28 ./etc/ssl/certs/ee64a828.0 -> Comodo_AAA_Services_root.pem
497lrwxrwxrwx root root 78 ./etc/ssl/certs/EE_Certification_Centre_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt
498lrwxrwxrwx root root 38 ./etc/ssl/certs/eed8c118.0 -> COMODO_ECC_Certification_Authority.pem
499lrwxrwxrwx root root 34 ./etc/ssl/certs/ef954a4e.0 -> IdenTrust_Commercial_Root_CA_1.pem
500lrwxrwxrwx root root 88 ./etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt
501lrwxrwxrwx root root 89 ./etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt
502lrwxrwxrwx root root 88 ./etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt
503lrwxrwxrwx root root 83 ./etc/ssl/certs/Entrust_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt
504lrwxrwxrwx root root 80 ./etc/ssl/certs/ePKI_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt
505lrwxrwxrwx root root 78 ./etc/ssl/certs/E-Tugra_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt
506lrwxrwxrwx root root 31 ./etc/ssl/certs/f060240e.0 -> Certplus_Class_2_Primary_CA.pem
507lrwxrwxrwx root root 23 ./etc/ssl/certs/f081611a.0 -> Go_Daddy_Class_2_CA.pem
508lrwxrwxrwx root root 47 ./etc/ssl/certs/f0c70a8d.0 -> SSL.com_EV_Root_Certification_Authority_ECC.pem
509lrwxrwxrwx root root 41 ./etc/ssl/certs/f30dd6ad.0 -> USERTrust_ECC_Certification_Authority.pem
510lrwxrwxrwx root root 34 ./etc/ssl/certs/f3377b1b.0 -> Security_Communication_Root_CA.pem
511lrwxrwxrwx root root 24 ./etc/ssl/certs/f387163d.0 -> Starfield_Class_2_CA.pem
512lrwxrwxrwx root root 18 ./etc/ssl/certs/f39fc864.0 -> SecureTrust_CA.pem
513lrwxrwxrwx root root 41 ./etc/ssl/certs/fc5a8f99.0 -> USERTrust_RSA_Certification_Authority.pem
514lrwxrwxrwx root root 19 ./etc/ssl/certs/fe8a2cd8.0 -> SZAFIR_ROOT_CA2.pem
515lrwxrwxrwx root root 49 ./etc/ssl/certs/ff34af3f.0 -> TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
516lrwxrwxrwx root root 69 ./etc/ssl/certs/GDCA_TrustAUTH_R5_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt
517lrwxrwxrwx root root 65 ./etc/ssl/certs/GeoTrust_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt
518lrwxrwxrwx root root 92 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt
519lrwxrwxrwx root root 92 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt
520lrwxrwxrwx root root 87 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt
521lrwxrwxrwx root root 70 ./etc/ssl/certs/GeoTrust_Universal_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt
522lrwxrwxrwx root root 68 ./etc/ssl/certs/GeoTrust_Universal_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt
523lrwxrwxrwx root root 77 ./etc/ssl/certs/Global_Chambersign_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt
524lrwxrwxrwx root root 74 ./etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R4.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt
525lrwxrwxrwx root root 74 ./etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R5.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt
526lrwxrwxrwx root root 65 ./etc/ssl/certs/GlobalSign_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt
527lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt
528lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt
529lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R6.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt
530lrwxrwxrwx root root 66 ./etc/ssl/certs/Go_Daddy_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt
531lrwxrwxrwx root root 87 ./etc/ssl/certs/Go_Daddy_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt
532lrwxrwxrwx root root 106 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt
533lrwxrwxrwx root root 102 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt
534lrwxrwxrwx root root 102 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt
535lrwxrwxrwx root root 70 ./etc/ssl/certs/Hongkong_Post_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt
536lrwxrwxrwx root root 77 ./etc/ssl/certs/IdenTrust_Commercial_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt
537lrwxrwxrwx root root 80 ./etc/ssl/certs/IdenTrust_Public_Sector_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt
538lrwxrwxrwx root root 59 ./etc/ssl/certs/ISRG_Root_X1.pem -> ../../../usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
539lrwxrwxrwx root root 57 ./etc/ssl/certs/Izenpe.com.pem -> ../../../usr/share/ca-certificates/mozilla/Izenpe.com.crt
540lrwxrwxrwx root root 69 ./etc/ssl/certs/LuxTrust_Global_Root_2.pem -> ../../../usr/share/ca-certificates/mozilla/LuxTrust_Global_Root_2.crt
541lrwxrwxrwx root root 77 ./etc/ssl/certs/Microsec_e-Szigno_Root_CA_2009.pem -> ../../../usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt
542lrwxrwxrwx root root 91 ./etc/ssl/certs/NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem -> ../../../usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt
543lrwxrwxrwx root root 86 ./etc/ssl/certs/Network_Solutions_Certificate_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt
544lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GA_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GA_CA.crt
545lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GB_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt
546lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GC_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt
547lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_1_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt
548lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_2_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt
549lrwxrwxrwx root root 65 ./etc/ssl/certs/QuoVadis_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt
550lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_3_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt
551lrwxrwxrwx root root 65 ./etc/ssl/certs/QuoVadis_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt
552lrwxrwxrwx root root 63 ./etc/ssl/certs/QuoVadis_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt
553lrwxrwxrwx root root 63 ./etc/ssl/certs/Secure_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Secure_Global_CA.crt
554lrwxrwxrwx root root 66 ./etc/ssl/certs/SecureSign_RootCA11.pem -> ../../../usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt
555lrwxrwxrwx root root 61 ./etc/ssl/certs/SecureTrust_CA.pem -> ../../../usr/share/ca-certificates/mozilla/SecureTrust_CA.crt
556lrwxrwxrwx root root 77 ./etc/ssl/certs/Security_Communication_RootCA2.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt
557lrwxrwxrwx root root 77 ./etc/ssl/certs/Security_Communication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt
558lrwxrwxrwx root root 69 ./etc/ssl/certs/Sonera_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt
559lrwxrwxrwx root root 90 ./etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt
560lrwxrwxrwx root root 93 ./etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_RSA_R2.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt
561lrwxrwxrwx root root 87 ./etc/ssl/certs/SSL.com_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt
562lrwxrwxrwx root root 87 ./etc/ssl/certs/SSL.com_Root_Certification_Authority_RSA.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt
563lrwxrwxrwx root root 79 ./etc/ssl/certs/Staat_der_Nederlanden_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt
564lrwxrwxrwx root root 81 ./etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G2.crt
565lrwxrwxrwx root root 81 ./etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt
566lrwxrwxrwx root root 67 ./etc/ssl/certs/Starfield_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt
567lrwxrwxrwx root root 88 ./etc/ssl/certs/Starfield_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt
568lrwxrwxrwx root root 97 ./etc/ssl/certs/Starfield_Services_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt
569lrwxrwxrwx root root 69 ./etc/ssl/certs/SwissSign_Gold_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt
570lrwxrwxrwx root root 71 ./etc/ssl/certs/SwissSign_Silver_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt
571lrwxrwxrwx root root 62 ./etc/ssl/certs/SZAFIR_ROOT_CA2.pem -> ../../../usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt
572lrwxrwxrwx root root 58 ./etc/ssl/certs/Taiwan_GRCA.pem -> ../../../usr/share/ca-certificates/mozilla/Taiwan_GRCA.crt
573lrwxrwxrwx root root 69 ./etc/ssl/certs/TeliaSonera_Root_CA_v1.pem -> ../../../usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt
574lrwxrwxrwx root root 74 ./etc/ssl/certs/thawte_Primary_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G2.crt
575lrwxrwxrwx root root 74 ./etc/ssl/certs/thawte_Primary_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G3.crt
576lrwxrwxrwx root root 69 ./etc/ssl/certs/thawte_Primary_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA.crt
577lrwxrwxrwx root root 61 ./etc/ssl/certs/TrustCor_ECA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt
578lrwxrwxrwx root root 69 ./etc/ssl/certs/TrustCor_RootCert_CA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt
579lrwxrwxrwx root root 69 ./etc/ssl/certs/TrustCor_RootCert_CA-2.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt
580lrwxrwxrwx root root 66 ./etc/ssl/certs/Trustis_FPS_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt
581lrwxrwxrwx root root 75 ./etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt
582lrwxrwxrwx root root 75 ./etc/ssl/certs/T-TeleSec_GlobalRoot_Class_3.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt
583lrwxrwxrwx root root 92 ./etc/ssl/certs/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem -> ../../../usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt
584lrwxrwxrwx root root 66 ./etc/ssl/certs/TWCA_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt
585lrwxrwxrwx root root 80 ./etc/ssl/certs/TWCA_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt
586lrwxrwxrwx root root 84 ./etc/ssl/certs/USERTrust_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt
587lrwxrwxrwx root root 84 ./etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt
588lrwxrwxrwx root root 107 ./etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.crt
589lrwxrwxrwx root root 107 ./etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.crt
590lrwxrwxrwx root root 107 ./etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.crt
591lrwxrwxrwx root root 94 ./etc/ssl/certs/VeriSign_Universal_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt
592lrwxrwxrwx root root 67 ./etc/ssl/certs/XRamp_Global_CA_Root.pem -> ../../../usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt
593-rw-r--r-- root root 10909 ./etc/ssl/openssl.cnf
594drwxr-xr-x root root 4096 ./etc/ssl/private
595-rw-r--r-- root root 2128 ./etc/sysctl.conf
596-rw-r--r-- root root 69 ./etc/syslog.conf
597-rw-r--r-- root root 651 ./etc/syslog-startup.conf
598drwxr-xr-x root root 4096 ./etc/terminfo
599drwxr-xr-x root root 4096 ./etc/terminfo/a
600-rw-r--r-- root root 1481 ./etc/terminfo/a/ansi
601drwxr-xr-x root root 4096 ./etc/terminfo/d
602-rw-r--r-- root root 308 ./etc/terminfo/d/dumb
603drwxr-xr-x root root 4096 ./etc/terminfo/l
604-rw-r--r-- root root 1730 ./etc/terminfo/l/linux
605drwxr-xr-x root root 4096 ./etc/terminfo/r
606-rw-r--r-- root root 2222 ./etc/terminfo/r/rxvt
607drwxr-xr-x root root 4096 ./etc/terminfo/s
608-rw-r--r-- root root 1573 ./etc/terminfo/s/screen
609-rw-r--r-- root root 1687 ./etc/terminfo/s/screen-256color
610-rw-r--r-- root root 1004 ./etc/terminfo/s/sun
611drwxr-xr-x root root 4096 ./etc/terminfo/v
612-rw-r--r-- root root 1190 ./etc/terminfo/v/vt100
613-rw-r--r-- root root 1184 ./etc/terminfo/v/vt102
614-rw-r--r-- root root 1377 ./etc/terminfo/v/vt200
615-rw-r--r-- root root 1377 ./etc/terminfo/v/vt220
616-rw-r--r-- root root 470 ./etc/terminfo/v/vt52
617drwxr-xr-x root root 4096 ./etc/terminfo/x
618-rw-r--r-- root root 3780 ./etc/terminfo/x/xterm-256color
619-rw-r--r-- root root 1551 ./etc/terminfo/x/xterm-color
620-rw-r--r-- root root 2240 ./etc/terminfo/x/xterm-xfree86
621lrwxrwxrwx root root 11 ./etc/terminfo/x/xterm -> xterm-color
622-rw-r--r-- root root 15 ./etc/timestamp
623drwxr-xr-x root root 4096 ./etc/udev
624drwxr-xr-x root root 4096 ./etc/udev/rules.d
625-rw-r--r-- root root 0 ./etc/udev/rules.d/80-net-name-slot.rules
626-rw-r--r-- root root 885 ./etc/udev/rules.d/local.rules
627-rw-r--r-- root root 49 ./etc/udev/udev.conf
628drwxr-xr-x root root 4096 ./etc/udhcpc.d
629-rwxr-xr-x root root 2652 ./etc/udhcpc.d/50default
630-rw-r--r-- root root 15 ./etc/version
631-rw-r--r-- root root 642 ./etc/xattr.conf
632drwxr-xr-x root root 4096 ./home
633drwx------ root root 4096 ./home/root
634drwxr-xr-x root root 4096 ./lib
635drwxr-xr-x root root 4096 ./lib/depmod.d
636-rw-r--r-- root root 71 ./lib/depmod.d/search.conf
637-rwxr-xr-x root root 177712 ./lib/ld-2.31.so
638lrwxrwxrwx root root 10 ./lib/ld-linux-x86-64.so.2 -> ld-2.31.so
639-rwxr-xr-x root root 18696 ./lib/libanl-2.31.so
640lrwxrwxrwx root root 14 ./lib/libanl.so.1 -> libanl-2.31.so
641-rwxr-xr-x root root 326600 ./lib/libblkid.so.1.1.0
642lrwxrwxrwx root root 17 ./lib/libblkid.so.1 -> libblkid.so.1.1.0
643-rwxr-xr-x root root 14296 ./lib/libBrokenLocale-2.31.so
644lrwxrwxrwx root root 23 ./lib/libBrokenLocale.so.1 -> libBrokenLocale-2.31.so
645-rwxr-xr-x root root 1806504 ./lib/libc-2.31.so
646-rwxr-xr-x root root 26512 ./lib/libcap-ng.so.0.0.0
647lrwxrwxrwx root root 18 ./lib/libcap-ng.so.0 -> libcap-ng.so.0.0.0
648-rw-r--r-- root root 39152 ./lib/libcap.so.2.33
649lrwxrwxrwx root root 14 ./lib/libcap.so.2 -> libcap.so.2.33
650lrwxrwxrwx root root 11 ./lib/libcap.so -> libcap.so.2
651-rwxr-xr-x root root 18320 ./lib/libcom_err.so.2.1
652lrwxrwxrwx root root 17 ./lib/libcom_err.so.2 -> libcom_err.so.2.1
653lrwxrwxrwx root root 15 ./lib/libcom_err.so -> libcom_err.so.2
654lrwxrwxrwx root root 12 ./lib/libc.so.6 -> libc-2.31.so
655-rwxr-xr-x root root 14360 ./lib/libdl-2.31.so
656lrwxrwxrwx root root 13 ./lib/libdl.so.2 -> libdl-2.31.so
657-rwxr-xr-x root root 44616 ./lib/libe2p.so.2.3
658lrwxrwxrwx root root 13 ./lib/libe2p.so.2 -> libe2p.so.2.3
659lrwxrwxrwx root root 11 ./lib/libe2p.so -> libe2p.so.2
660-rwxr-xr-x root root 426264 ./lib/libext2fs.so.2.4
661lrwxrwxrwx root root 16 ./lib/libext2fs.so.2 -> libext2fs.so.2.4
662lrwxrwxrwx root root 14 ./lib/libext2fs.so -> libext2fs.so.2
663-rwxr-xr-x root root 440104 ./lib/libfdisk.so.1.1.0
664lrwxrwxrwx root root 17 ./lib/libfdisk.so.1 -> libfdisk.so.1.1.0
665-rw-r--r-- root root 132 ./lib/libgcc_s.so
666-rw-r--r-- root root 100248 ./lib/libgcc_s.so.1
667-rwxr-xr-x root root 1312800 ./lib/libm-2.31.so
668-rwxr-xr-x root root 379432 ./lib/libmount.so.1.1.0
669lrwxrwxrwx root root 17 ./lib/libmount.so.1 -> libmount.so.1.1.0
670lrwxrwxrwx root root 12 ./lib/libm.so.6 -> libm-2.31.so
671-rwxr-xr-x root root 174104 ./lib/libmvec-2.31.so
672lrwxrwxrwx root root 15 ./lib/libmvec.so.1 -> libmvec-2.31.so
673-rwxr-xr-x root root 157512 ./lib/libncurses.so.5.9
674lrwxrwxrwx root root 17 ./lib/libncurses.so.5 -> libncurses.so.5.9
675-rwxr-xr-x root root 210760 ./lib/libncursesw.so.5.9
676lrwxrwxrwx root root 18 ./lib/libncursesw.so.5 -> libncursesw.so.5.9
677-rwxr-xr-x root root 92184 ./lib/libnsl-2.31.so
678lrwxrwxrwx root root 14 ./lib/libnsl.so.1 -> libnsl-2.31.so
679-rwxr-xr-x root root 35288 ./lib/libnss_compat-2.31.so
680lrwxrwxrwx root root 21 ./lib/libnss_compat.so.2 -> libnss_compat-2.31.so
681-rwxr-xr-x root root 30752 ./lib/libnss_db-2.31.so
682lrwxrwxrwx root root 17 ./lib/libnss_db.so.2 -> libnss_db-2.31.so
683-rwxr-xr-x root root 22560 ./lib/libnss_dns-2.31.so
684lrwxrwxrwx root root 18 ./lib/libnss_dns.so.2 -> libnss_dns-2.31.so
685-rwxr-xr-x root root 51232 ./lib/libnss_files-2.31.so
686lrwxrwxrwx root root 20 ./lib/libnss_files.so.2 -> libnss_files-2.31.so
687-rwxr-xr-x root root 22560 ./lib/libnss_hesiod-2.31.so
688lrwxrwxrwx root root 21 ./lib/libnss_hesiod.so.2 -> libnss_hesiod-2.31.so
689-rwxr-xr-x root root 113296 ./lib/libpthread-2.31.so
690lrwxrwxrwx root root 18 ./lib/libpthread.so.0 -> libpthread-2.31.so
691-rwxr-xr-x root root 88320 ./lib/libresolv-2.31.so
692lrwxrwxrwx root root 17 ./lib/libresolv.so.2 -> libresolv-2.31.so
693-rwxr-xr-x root root 39328 ./lib/librt-2.31.so
694lrwxrwxrwx root root 13 ./lib/librt.so.1 -> librt-2.31.so
695-rwxr-xr-x root root 227432 ./lib/libsmartcols.so.1.1.0
696lrwxrwxrwx root root 21 ./lib/libsmartcols.so.1 -> libsmartcols.so.1.1.0
697-rwxr-xr-x root root 34704 ./lib/libss.so.2.0
698lrwxrwxrwx root root 12 ./lib/libss.so.2 -> libss.so.2.0
699lrwxrwxrwx root root 10 ./lib/libss.so -> libss.so.2
700-rwxr-xr-x root root 35416 ./lib/libthread_db-1.0.so
701lrwxrwxrwx root root 19 ./lib/libthread_db.so.1 -> libthread_db-1.0.so
702-rwxr-xr-x root root 175208 ./lib/libtinfo.so.5.9
703lrwxrwxrwx root root 15 ./lib/libtinfo.so.5 -> libtinfo.so.5.9
704-rwxr-xr-x root root 157912 ./lib/libudev.so.1.6.3
705lrwxrwxrwx root root 16 ./lib/libudev.so.1 -> libudev.so.1.6.3
706-rwxr-xr-x root root 14360 ./lib/libutil-2.31.so
707lrwxrwxrwx root root 15 ./lib/libutil.so.1 -> libutil-2.31.so
708-rwxr-xr-x root root 30752 ./lib/libuuid.so.1.3.0
709lrwxrwxrwx root root 16 ./lib/libuuid.so.1 -> libuuid.so.1.3.0
710-rwxr-xr-x root root 39816 ./lib/libwrap.so.0.7.6
711lrwxrwxrwx root root 16 ./lib/libwrap.so.0 -> libwrap.so.0.7.6
712-rwxr-xr-x root root 100312 ./lib/libz.so.1.2.11
713lrwxrwxrwx root root 14 ./lib/libz.so.1 -> libz.so.1.2.11
714drwxr-xr-x root root 4096 ./lib/modprobe.d
715drwxr-xr-x root root 4096 ./lib/modules
716drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard
717drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel
718drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/drivers
719drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/drivers/video
720drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/drivers/video/fbdev
721-rw-r--r-- root root 46440 ./lib/modules/5.4.40-yocto-standard/kernel/drivers/video/fbdev/uvesafb.ko
722drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net
723drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4
724drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4/netfilter
725-rw-r--r-- root root 6912 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4/netfilter/iptable_filter.ko
726-rw-r--r-- root root 6272 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4/netfilter/iptable_nat.ko
727-rw-r--r-- root root 32144 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4/netfilter/ip_tables.ko
728-rw-r--r-- root root 6160 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv4/netfilter/nf_defrag_ipv4.ko
729drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv6
730drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv6/netfilter
731-rw-r--r-- root root 6928 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv6/netfilter/ip6table_filter.ko
732-rw-r--r-- root root 32640 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv6/netfilter/ip6_tables.ko
733-rw-r--r-- root root 16472 ./lib/modules/5.4.40-yocto-standard/kernel/net/ipv6/netfilter/nf_defrag_ipv6.ko
734drwxr-xr-x root root 4096 ./lib/modules/5.4.40-yocto-standard/kernel/net/netfilter
735-rw-r--r-- root root 164400 ./lib/modules/5.4.40-yocto-standard/kernel/net/netfilter/nf_conntrack.ko
736-rw-r--r-- root root 45776 ./lib/modules/5.4.40-yocto-standard/kernel/net/netfilter/nf_nat.ko
737-rw-r--r-- root root 49480 ./lib/modules/5.4.40-yocto-standard/kernel/net/netfilter/x_tables.ko
738-rw-r--r-- root root 199 ./lib/modules/5.4.40-yocto-standard/modules.alias
739-rw-r--r-- root root 443 ./lib/modules/5.4.40-yocto-standard/modules.alias.bin
740-rw-r--r-- root root 9285 ./lib/modules/5.4.40-yocto-standard/modules.builtin
741-rw-r--r-- root root 10874 ./lib/modules/5.4.40-yocto-standard/modules.builtin.bin
742-rw-r--r-- root root 68434 ./lib/modules/5.4.40-yocto-standard/modules.builtin.modinfo
743-rw-r--r-- root root 1099 ./lib/modules/5.4.40-yocto-standard/modules.dep
744-rw-r--r-- root root 1794 ./lib/modules/5.4.40-yocto-standard/modules.dep.bin
745-rw-r--r-- root root 0 ./lib/modules/5.4.40-yocto-standard/modules.devname
746-rw-r--r-- root root 17785 ./lib/modules/5.4.40-yocto-standard/modules.order
747-rw-r--r-- root root 55 ./lib/modules/5.4.40-yocto-standard/modules.softdep
748-rw-r--r-- root root 7817 ./lib/modules/5.4.40-yocto-standard/modules.symbols
749-rw-r--r-- root root 9233 ./lib/modules/5.4.40-yocto-standard/modules.symbols.bin
750drwxr-xr-x root root 4096 ./lib/udev
751-rwxr-xr-x root root 104640 ./lib/udev/ata_id
752-rwxr-xr-x root root 116936 ./lib/udev/cdrom_id
753-rwxr-xr-x root root 100552 ./lib/udev/collect
754-rwxr-xr-x root root 14296 ./lib/udev/mtd_probe
755drwxr-xr-x root root 4096 ./lib/udev/rules.d
756-rw-r--r-- root root 321 ./lib/udev/rules.d/01-md-raid-creating.rules
757-rw-r--r-- root root 121 ./lib/udev/rules.d/50-firmware.rules
758-rw-r--r-- root root 3677 ./lib/udev/rules.d/50-udev-default.rules
759-rw-r--r-- root root 620 ./lib/udev/rules.d/60-block.rules
760-rw-r--r-- root root 1071 ./lib/udev/rules.d/60-cdrom_id.rules
761-rw-r--r-- root root 413 ./lib/udev/rules.d/60-drm.rules
762-rw-r--r-- root root 974 ./lib/udev/rules.d/60-evdev.rules
763-rw-r--r-- root root 282 ./lib/udev/rules.d/60-input-id.rules
764-rw-r--r-- root root 616 ./lib/udev/rules.d/60-persistent-alsa.rules
765-rw-r--r-- root root 2710 ./lib/udev/rules.d/60-persistent-input.rules
766-rw-r--r-- root root 6521 ./lib/udev/rules.d/60-persistent-storage.rules
767-rw-r--r-- root root 1509 ./lib/udev/rules.d/60-persistent-storage-tape.rules
768-rw-r--r-- root root 769 ./lib/udev/rules.d/60-persistent-v4l.rules
769-rw-r--r-- root root 727 ./lib/udev/rules.d/60-sensor.rules
770-rw-r--r-- root root 1190 ./lib/udev/rules.d/60-serial.rules
771-rw-r--r-- root root 2134 ./lib/udev/rules.d/63-md-raid-arrays.rules
772-rw-r--r-- root root 387 ./lib/udev/rules.d/64-btrfs-dm.rules
773-rw-r--r-- root root 574 ./lib/udev/rules.d/64-btrfs.rules
774-rw-r--r-- root root 1444 ./lib/udev/rules.d/64-md-raid-assembly.rules
775-rw-r--r-- root root 846 ./lib/udev/rules.d/69-md-clustered-confirm-device.rules
776-rw-r--r-- root root 432 ./lib/udev/rules.d/70-joystick.rules
777-rw-r--r-- root root 734 ./lib/udev/rules.d/70-mouse.rules
778-rw-r--r-- root root 473 ./lib/udev/rules.d/70-touchpad.rules
779-rw-r--r-- root root 452 ./lib/udev/rules.d/75-net-description.rules
780-rw-r--r-- root root 174 ./lib/udev/rules.d/75-probe_mtd.rules
781-rw-r--r-- root root 4816 ./lib/udev/rules.d/78-sound-card.rules
782-rw-r--r-- root root 615 ./lib/udev/rules.d/80-drivers.rules
783-rw-r--r-- root root 491 ./lib/udev/rules.d/80-net-name-slot.rules
784-rwxr-xr-x root root 109304 ./lib/udev/scsi_id
785-rwxr-xr-x root root 67776 ./lib/udev/v4l_id
786drwxr-xr-x root root 4096 ./media
787drwxr-xr-x root root 4096 ./mnt
788dr-xr-xr-x root root 4096 ./proc
789drwxr-xr-x root root 4096 ./run
790drwxr-xr-x root root 4096 ./sbin
791-rwxr-xr-x root root 64736 ./sbin/agetty
792-rwxr-xr-x root root 34792 ./sbin/badblocks
793lrwxrwxrwx root root 22 ./sbin/blkid -> /sbin/blkid.util-linux
794-rwxr-xr-x root root 120912 ./sbin/blkid.util-linux
795lrwxrwxrwx root root 25 ./sbin/blockdev -> /sbin/blockdev.util-linux
796-rwxr-xr-x root root 63536 ./sbin/blockdev.util-linux
797-rwxr-xr-x root root 22736 ./sbin/bootlogd
798-rwxr-xr-x root root 104568 ./sbin/bridge
799-rwxr-xr-x root root 96664 ./sbin/cfdisk
800-rwxr-xr-x root root 38952 ./sbin/ctrlaltdel
801-rwxr-xr-x root root 239064 ./sbin/debugfs
802lrwxrwxrwx root root 11 ./sbin/depmod.kmod -> ../bin/kmod
803lrwxrwxrwx root root 17 ./sbin/depmod -> /sbin/depmod.kmod
804-rwxr-xr-x root root 30768 ./sbin/dumpe2fs
805-rwxr-xr-x root root 14376 ./sbin/e2freefrag
806-rwxr-xr-x root root 330808 ./sbin/e2fsck
807-rwxr-xr-x root root 38952 ./sbin/e2image
808-rwxr-xr-x root root 30768 ./sbin/e2mmpstatus
809-rwxr-xr-x root root 22560 ./sbin/e2undo
810-rwxr-xr-x root root 26656 ./sbin/e4crypt
811-rwxr-xr-x root root 34776 ./sbin/e4defrag
812lrwxrwxrwx root root 22 ./sbin/fdisk -> /sbin/fdisk.util-linux
813-rwxr-xr-x root root 149600 ./sbin/fdisk.util-linux
814-rwxr-xr-x root root 18416 ./sbin/filefrag
815-rwxr-xr-x root root 330808 ./sbin/fsck.ext2
816-rwxr-xr-x root root 330808 ./sbin/fsck.ext3
817-rwxr-xr-x root root 330808 ./sbin/fsck.ext4
818lrwxrwxrwx root root 21 ./sbin/fsck -> /sbin/fsck.util-linux
819-rwxr-xr-x root root 55392 ./sbin/fsck.util-linux
820-rwxr-xr-x root root 14296 ./sbin/fstab-decode
821lrwxrwxrwx root root 23 ./sbin/fstrim -> /sbin/fstrim.util-linux
822-rwxr-xr-x root root 71728 ./sbin/fstrim.util-linux
823lrwxrwxrwx root root 12 ./sbin/getty -> /sbin/agetty
824lrwxrwxrwx root root 19 ./sbin/halt -> /sbin/halt.sysvinit
825-rwsr-xr-- root shutdown 22512 ./sbin/halt.sysvinit
826lrwxrwxrwx root root 24 ./sbin/hwclock -> /sbin/hwclock.util-linux
827-rwxr-xr-x root root 80048 ./sbin/hwclock.util-linux
828-rwxr-xr-x root root 3109 ./sbin/ifcfg
829lrwxrwxrwx root root 19 ./sbin/ifconfig -> /bin/busybox.nosuid
830lrwxrwxrwx root root 19 ./sbin/ifdown -> /bin/busybox.nosuid
831lrwxrwxrwx root root 19 ./sbin/ifup -> /bin/busybox.nosuid
832lrwxrwxrwx root root 19 ./sbin/init -> /sbin/init.sysvinit
833-rwxr-xr-x root root 47944 ./sbin/init.sysvinit
834lrwxrwxrwx root root 11 ./sbin/insmod.kmod -> ../bin/kmod
835lrwxrwxrwx root root 17 ./sbin/insmod -> /sbin/insmod.kmod
836-rwxr-xr-x root root 619960 ./sbin/ip.iproute2
837lrwxrwxrwx root root 17 ./sbin/ip -> /sbin/ip.iproute2
838-rwxr-xr-x root root 26664 ./sbin/killall5
839lrwxrwxrwx root root 19 ./sbin/klogd -> /bin/busybox.nosuid
840-rwxr-xr-x root root 887640 ./sbin/ldconfig
841lrwxrwxrwx root root 19 ./sbin/loadkmap -> /bin/busybox.nosuid
842lrwxrwxrwx root root 19 ./sbin/logread -> /bin/busybox.nosuid
843-rwxr-xr-x root root 14296 ./sbin/logsave
844lrwxrwxrwx root root 24 ./sbin/losetup -> /sbin/losetup.util-linux
845-rwxr-xr-x root root 112808 ./sbin/losetup.util-linux
846lrwxrwxrwx root root 15 ./sbin/lsmod -> /bin/lsmod.kmod
847-rwxr-xr-x root root 595280 ./sbin/mdadm
848-rwxr-xr-x root root 328880 ./sbin/mdmon
849-rwxr-xr-x root root 137512 ./sbin/mke2fs.e2fsprogs
850lrwxrwxrwx root root 22 ./sbin/mke2fs -> /sbin/mke2fs.e2fsprogs
851-rwxr-xr-x root root 137512 ./sbin/mkfs.ext2.e2fsprogs
852lrwxrwxrwx root root 25 ./sbin/mkfs.ext2 -> /sbin/mkfs.ext2.e2fsprogs
853-rwxr-xr-x root root 137512 ./sbin/mkfs.ext3
854-rwxr-xr-x root root 137512 ./sbin/mkfs.ext4
855-rwxr-xr-x root root 14296 ./sbin/mklost+found
856lrwxrwxrwx root root 23 ./sbin/mkswap -> /sbin/mkswap.util-linux
857-rwxr-xr-x root root 104504 ./sbin/mkswap.util-linux
858lrwxrwxrwx root root 11 ./sbin/modinfo.kmod -> ../bin/kmod
859lrwxrwxrwx root root 18 ./sbin/modinfo -> /sbin/modinfo.kmod
860lrwxrwxrwx root root 11 ./sbin/modprobe.kmod -> ../bin/kmod
861lrwxrwxrwx root root 19 ./sbin/modprobe -> /sbin/modprobe.kmod
862lrwxrwxrwx root root 20 ./sbin/nologin -> /sbin/nologin.shadow
863-rwxr-xr-x root root 14296 ./sbin/nologin.shadow
864-rwxr-xr-x root root 14384 ./sbin/nologin.util-linux
865lrwxrwxrwx root root 27 ./sbin/pivot_root -> /sbin/pivot_root.util-linux
866-rwxr-xr-x root root 14384 ./sbin/pivot_root.util-linux
867-rwxr-xr-x root root 2460 ./sbin/populate-extfs.sh
868lrwxrwxrwx root root 23 ./sbin/poweroff -> /sbin/poweroff.sysvinit
869lrwxrwxrwx root root 13 ./sbin/poweroff.sysvinit -> halt.sysvinit
870lrwxrwxrwx root root 21 ./sbin/reboot -> /sbin/reboot.sysvinit
871lrwxrwxrwx root root 13 ./sbin/reboot.sysvinit -> halt.sysvinit
872lrwxrwxrwx root root 11 ./sbin/rmmod.kmod -> ../bin/kmod
873lrwxrwxrwx root root 16 ./sbin/rmmod -> /sbin/rmmod.kmod
874lrwxrwxrwx root root 19 ./sbin/route -> /bin/busybox.nosuid
875-rwxr-xr-x root root 208 ./sbin/routef
876-rwxr-xr-x root root 1656 ./sbin/routel
877-rwxr-xr-x root root 75832 ./sbin/rtmon
878-rwxr-xr-x root root 70 ./sbin/rtpr
879lrwxrwxrwx root root 23 ./sbin/runlevel -> /sbin/runlevel.sysvinit
880-rwxr-xr-x root root 14304 ./sbin/runlevel.sysvinit
881lrwxrwxrwx root root 19 ./sbin/setconsole -> /bin/busybox.nosuid
882lrwxrwxrwx root root 23 ./sbin/shutdown -> /sbin/shutdown.sysvinit
883-rwsr-xr-- root shutdown 30744 ./sbin/shutdown.sysvinit
884lrwxrwxrwx root root 19 ./sbin/start-stop-daemon -> /bin/busybox.nosuid
885lrwxrwxrwx root root 24 ./sbin/sulogin -> /sbin/sulogin.util-linux
886-rwxr-xr-x root root 47152 ./sbin/sulogin.util-linux
887lrwxrwxrwx root root 24 ./sbin/swapoff -> /sbin/swapoff.util-linux
888-rwxr-xr-x root root 22576 ./sbin/swapoff.util-linux
889lrwxrwxrwx root root 23 ./sbin/swapon -> /sbin/swapon.util-linux
890-rwxr-xr-x root root 51248 ./sbin/swapon.util-linux
891lrwxrwxrwx root root 28 ./sbin/switch_root -> /sbin/switch_root.util-linux
892-rwxr-xr-x root root 14384 ./sbin/switch_root.util-linux
893-rwxr-xr-x root root 30768 ./sbin/sysctl.procps
894lrwxrwxrwx root root 19 ./sbin/sysctl -> /sbin/sysctl.procps
895lrwxrwxrwx root root 19 ./sbin/syslogd -> /bin/busybox.nosuid
896lrwxrwxrwx root root 4 ./sbin/telinit -> init
897lrwxrwxrwx root root 16 ./sbin/udevadm -> /usr/bin/udevadm
898-rwxr-xr-x root root 334168 ./sbin/udevd
899lrwxrwxrwx root root 19 ./sbin/udhcpc -> /bin/busybox.nosuid
900-rwxr-xr-x root root 133264 ./sbin/v86d
901lrwxrwxrwx root root 17 ./sbin/vigr -> /sbin/vigr.shadow
902lrwxrwxrwx root root 11 ./sbin/vigr.shadow -> vipw.shadow
903lrwxrwxrwx root root 17 ./sbin/vipw -> /sbin/vipw.shadow
904-rwxr-xr-x root root 61496 ./sbin/vipw.shadow
905dr-xr-xr-x root root 4096 ./sys
906drwxrwxrwt root root 4096 ./tmp
907drwxr-xr-x root root 4096 ./usr
908drwxr-xr-x root root 20480 ./usr/bin
909lrwxrwxrwx root root 36 ./usr/bin/addr2line -> /usr/bin/x86_64-poky-linux-addr2line
910-rwxr-xr-x root root 43208 ./usr/bin/arch.coreutils
911lrwxrwxrwx root root 23 ./usr/bin/arch -> /usr/bin/arch.coreutils
912lrwxrwxrwx root root 29 ./usr/bin/ar -> /usr/bin/x86_64-poky-linux-ar
913lrwxrwxrwx root root 29 ./usr/bin/as -> /usr/bin/x86_64-poky-linux-as
914-rwxr-xr-x root root 14288 ./usr/bin/attr
915lrwxrwxrwx root root 13 ./usr/bin/awk -> /usr/bin/gawk
916-rwxr-xr-x root root 63680 ./usr/bin/b2sum
917-rwxr-xr-x root root 47264 ./usr/bin/base32
918-rwxr-xr-x root root 47272 ./usr/bin/base64.coreutils
919-rwxr-xr-x root root 43176 ./usr/bin/basename.coreutils
920lrwxrwxrwx root root 27 ./usr/bin/basename -> /usr/bin/basename.coreutils
921-rwxr-xr-x root root 59552 ./usr/bin/basenc
922-rwxr-xr-x root root 96928 ./usr/bin/bc.bc
923lrwxrwxrwx root root 14 ./usr/bin/bc -> /usr/bin/bc.bc
924lrwxrwxrwx root root 19 ./usr/bin/[[ -> /bin/busybox.nosuid
925-rwxr-xr-x root root 455224 ./usr/bin/bison
926-rwxr-xr-x root root 933632 ./usr/bin/btrfs
927lrwxrwxrwx root root 5 ./usr/bin/btrfsck -> btrfs
928-rwxr-xr-x root root 527560 ./usr/bin/btrfs-convert
929-rwxr-xr-x root root 490760 ./usr/bin/btrfs-find-root
930-rwxr-xr-x root root 519360 ./usr/bin/btrfs-image
931-rwxr-xr-x root root 498888 ./usr/bin/btrfs-map-logical
932-rwxr-xr-x root root 494792 ./usr/bin/btrfs-select-super
933-rwxr-xr-x root root 494784 ./usr/bin/btrfstune
934lrwxrwxrwx root root 11 ./usr/bin/bunzip2.bzip2 -> bzip2.bzip2
935lrwxrwxrwx root root 22 ./usr/bin/bunzip2 -> /usr/bin/bunzip2.bzip2
936lrwxrwxrwx root root 11 ./usr/bin/bzcat.bzip2 -> bzip2.bzip2
937lrwxrwxrwx root root 20 ./usr/bin/bzcat -> /usr/bin/bzcat.bzip2
938lrwxrwxrwx root root 6 ./usr/bin/bzcmp -> bzdiff
939-rwxr-xr-x root root 2140 ./usr/bin/bzdiff
940lrwxrwxrwx root root 6 ./usr/bin/bzegrep -> bzgrep
941lrwxrwxrwx root root 6 ./usr/bin/bzfgrep -> bzgrep
942-rwxr-xr-x root root 2054 ./usr/bin/bzgrep
943-rwxr-xr-x root root 38952 ./usr/bin/bzip2.bzip2
944-rwxr-xr-x root root 14296 ./usr/bin/bzip2recover
945lrwxrwxrwx root root 20 ./usr/bin/bzip2 -> /usr/bin/bzip2.bzip2
946lrwxrwxrwx root root 6 ./usr/bin/bzless -> bzmore
947-rwxr-xr-x root root 1259 ./usr/bin/bzmore
948lrwxrwxrwx root root 23 ./usr/bin/cal -> /usr/bin/cal.util-linux
949-rwxr-xr-x root root 67936 ./usr/bin/cal.util-linux
950lrwxrwxrwx root root 34 ./usr/bin/c++filt -> /usr/bin/x86_64-poky-linux-c++filt
951-rwxr-xr-x root root 14288 ./usr/bin/chacl
952-rwsr-xr-x root root 71776 ./usr/bin/chage
953-rwxr-xr-x root root 71848 ./usr/bin/chcon.coreutils
954lrwxrwxrwx root root 24 ./usr/bin/chcon -> /usr/bin/chcon.coreutils
955-rwsr-xr-x root root 54032 ./usr/bin/chfn.shadow
956lrwxrwxrwx root root 20 ./usr/bin/chfn -> /usr/bin/chfn.shadow
957-rwxr-xr-x root root 63528 ./usr/bin/chmem
958-rwxr-xr-x root root 51240 ./usr/bin/choom
959lrwxrwxrwx root root 24 ./usr/bin/chrt -> /usr/bin/chrt.util-linux
960-rwxr-xr-x root root 34864 ./usr/bin/chrt.util-linux
961-rwsr-xr-x root root 53904 ./usr/bin/chsh.shadow
962lrwxrwxrwx root root 20 ./usr/bin/chsh -> /usr/bin/chsh.shadow
963lrwxrwxrwx root root 19 ./usr/bin/chvt -> /bin/busybox.nosuid
964-rwxr-xr-x root root 43176 ./usr/bin/cksum.coreutils
965lrwxrwxrwx root root 24 ./usr/bin/cksum -> /usr/bin/cksum.coreutils
966lrwxrwxrwx root root 19 ./usr/bin/clear -> /bin/busybox.nosuid
967-rwxr-xr-x root root 47176 ./usr/bin/cmp.diffutils
968lrwxrwxrwx root root 22 ./usr/bin/cmp -> /usr/bin/cmp.diffutils
969-rwxr-xr-x root root 34848 ./usr/bin/col
970-rwxr-xr-x root root 14368 ./usr/bin/colcrt
971-rwxr-xr-x root root 30760 ./usr/bin/colrm
972-rwxr-xr-x root root 51240 ./usr/bin/column
973-rwxr-xr-x root root 51400 ./usr/bin/comm.coreutils
974lrwxrwxrwx root root 23 ./usr/bin/comm -> /usr/bin/comm.coreutils
975-rwxr-xr-x root root 1342 ./usr/bin/compile_et
976-rwxr-xr-x root root 6214 ./usr/bin/c_rehash
977-rwxr-xr-x root root 125128 ./usr/bin/csplit.coreutils
978lrwxrwxrwx root root 25 ./usr/bin/csplit -> /usr/bin/csplit.coreutils
979-rwxr-xr-x root root 55496 ./usr/bin/cut.coreutils
980lrwxrwxrwx root root 22 ./usr/bin/cut -> /usr/bin/cut.coreutils
981-rwxr-xr-x root root 14304 ./usr/bin/dbus-cleanup-sockets
982-rwxr-xr-x root root 223688 ./usr/bin/dbus-daemon
983-rwxr-xr-x root root 30680 ./usr/bin/dbus-launch
984-rwxr-xr-x root root 30688 ./usr/bin/dbus-monitor
985-rwxr-xr-x root root 14304 ./usr/bin/dbus-run-session
986-rwxr-xr-x root root 30680 ./usr/bin/dbus-send
987-rwxr-xr-x root root 26672 ./usr/bin/dbus-test-tool
988-rwxr-xr-x root root 14320 ./usr/bin/dbus-update-activation-environment
989-rwxr-xr-x root root 14296 ./usr/bin/dbus-uuidgen
990-rwxr-xr-x root root 55352 ./usr/bin/dc.bc
991lrwxrwxrwx root root 14 ./usr/bin/dc -> /usr/bin/dc.bc
992lrwxrwxrwx root root 19 ./usr/bin/deallocvt -> /bin/busybox.nosuid
993-rwxr-xr-x root root 105232 ./usr/bin/df.coreutils
994-rwxr-xr-x root root 67760 ./usr/bin/diff3
995-rwxr-xr-x root root 223544 ./usr/bin/diff.diffutils
996lrwxrwxrwx root root 23 ./usr/bin/diff -> /usr/bin/diff.diffutils
997-rwxr-xr-x root root 71864 ./usr/bin/dircolors.coreutils
998lrwxrwxrwx root root 28 ./usr/bin/dircolors -> /usr/bin/dircolors.coreutils
999-rwxr-xr-x root root 162448 ./usr/bin/dir.coreutils
1000-rwxr-xr-x root root 43176 ./usr/bin/dirname.coreutils
1001lrwxrwxrwx root root 26 ./usr/bin/dirname -> /usr/bin/dirname.coreutils
1002lrwxrwxrwx root root 22 ./usr/bin/dir -> /usr/bin/dir.coreutils
1003-rwxr-xr-x root root 194760 ./usr/bin/du.coreutils
1004lrwxrwxrwx root root 19 ./usr/bin/dumpleases -> /bin/busybox.nosuid
1005lrwxrwxrwx root root 21 ./usr/bin/du -> /usr/bin/du.coreutils
1006lrwxrwxrwx root root 30 ./usr/bin/dwp -> /usr/bin/x86_64-poky-linux-dwp
1007lrwxrwxrwx root root 25 ./usr/bin/eject -> /usr/bin/eject.util-linux
1008-rwxr-xr-x root root 79920 ./usr/bin/eject.util-linux
1009lrwxrwxrwx root root 34 ./usr/bin/elfedit -> /usr/bin/x86_64-poky-linux-elfedit
1010-rwxr-xr-x root root 55904 ./usr/bin/env.coreutils
1011lrwxrwxrwx root root 22 ./usr/bin/env -> /usr/bin/env.coreutils
1012-rwxr-xr-x root root 39016 ./usr/bin/eu-ar
1013-rwxr-xr-x root root 28656 ./usr/bin/eu-elfclassify
1014-rwxr-xr-x root root 350840 ./usr/bin/eu-elfcmp
1015-rwxr-xr-x root root 31160 ./usr/bin/eu-elfcompress
1016-rwxr-xr-x root root 432760 ./usr/bin/eu-elflint
1017-rwxr-xr-x root root 22672 ./usr/bin/eu-findtextrel
1018-rwxr-xr-x root root 2911 ./usr/bin/eu-make-debug-archive
1019-rwxr-xr-x root root 355056 ./usr/bin/eu-objdump
1020-rwxr-xr-x root root 22568 ./usr/bin/eu-ranlib
1021-rwxr-xr-x root root 27600 ./usr/bin/eu-stack
1022-rwxr-xr-x root root 26736 ./usr/bin/eu-strings
1023-rwxr-xr-x root root 51240 ./usr/bin/eu-unstrip
1024-rwxr-xr-x root root 47304 ./usr/bin/expand.coreutils
1025lrwxrwxrwx root root 25 ./usr/bin/expand -> /usr/bin/expand.coreutils
1026-rwsr-xr-x root root 36336 ./usr/bin/expiry
1027-rwxr-xr-x root root 125096 ./usr/bin/expr.coreutils
1028lrwxrwxrwx root root 23 ./usr/bin/expr -> /usr/bin/expr.coreutils
1029-rwxr-xr-x root root 84168 ./usr/bin/factor.coreutils
1030lrwxrwxrwx root root 25 ./usr/bin/factor -> /usr/bin/factor.coreutils
1031-rwxr-xr-x root root 22784 ./usr/bin/faillog
1032lrwxrwxrwx root root 29 ./usr/bin/fallocate -> /usr/bin/fallocate.util-linux
1033-rwxr-xr-x root root 30776 ./usr/bin/fallocate.util-linux
1034-rwxr-xr-x root root 92656 ./usr/bin/filan
1035-rwxr-xr-x root root 34904 ./usr/bin/fincore
1036-rwxr-xr-x root root 324064 ./usr/bin/find.findutils
1037-rwxr-xr-x root root 68840 ./usr/bin/findmnt
1038lrwxrwxrwx root root 23 ./usr/bin/find -> /usr/bin/find.findutils
1039-rwxr-xr-x root root 443016 ./usr/bin/flex
1040lrwxrwxrwx root root 4 ./usr/bin/flex++ -> flex
1041lrwxrwxrwx root root 25 ./usr/bin/flock -> /usr/bin/flock.util-linux
1042-rwxr-xr-x root root 34944 ./usr/bin/flock.util-linux
1043-rwxr-xr-x root root 55464 ./usr/bin/fmt.coreutils
1044lrwxrwxrwx root root 22 ./usr/bin/fmt -> /usr/bin/fmt.coreutils
1045-rwxr-xr-x root root 47272 ./usr/bin/fold.coreutils
1046lrwxrwxrwx root root 23 ./usr/bin/fold -> /usr/bin/fold.coreutils
1047-rwxr-xr-x root root 26672 ./usr/bin/free.procps
1048lrwxrwxrwx root root 20 ./usr/bin/free -> /usr/bin/free.procps
1049-rwxr-xr-x root root 1185 ./usr/bin/fsck.btrfs
1050-rwxr-xr-x root root 26576 ./usr/bin/funzip
1051lrwxrwxrwx root root 19 ./usr/bin/fuser -> /bin/busybox.nosuid
1052-rwxr-xr-x root root 653560 ./usr/bin/gawk
1053-rwxr-xr-x root root 653560 ./usr/bin/gawk-5.0.1
1054-rwxr-xr-x root root 26808 ./usr/bin/gencat
1055-rwxr-xr-x root root 34912 ./usr/bin/getconf
1056-rwxr-xr-x root root 35280 ./usr/bin/getent
1057-rwxr-xr-x root root 31312 ./usr/bin/getfacl
1058-rwxr-xr-x root root 23032 ./usr/bin/getfattr
1059lrwxrwxrwx root root 28 ./usr/bin/ginsttest-runner -> gnome-desktop-testing-runner
1060-rwxr-xr-x root root 4049 ./usr/bin/g-ir-annotation-tool
1061-rwxr-xr-x root root 187384 ./usr/bin/g-ir-compiler
1062-rwxr-xr-x root root 42968 ./usr/bin/g-ir-generate
1063-rwxr-xr-x root root 14296 ./usr/bin/g-ir-inspect
1064-rwxr-xr-x root root 4040 ./usr/bin/g-ir-scanner
1065-rwxr-xr-x root root 35384 ./usr/bin/gnome-desktop-testing-runner
1066-rwsr-xr-x root root 71624 ./usr/bin/gpasswd
1067lrwxrwxrwx root root 32 ./usr/bin/gprof -> /usr/bin/x86_64-poky-linux-gprof
1068-rwxr-xr-x root root 43176 ./usr/bin/groups.coreutils
1069-rwxr-xr-x root root 14296 ./usr/bin/groups.shadow
1070lrwxrwxrwx root root 22 ./usr/bin/groups -> /usr/bin/groups.shadow
1071-rwxr-xr-x root root 22568 ./usr/bin/hardlink
1072-rwxr-xr-x root root 55496 ./usr/bin/head.coreutils
1073lrwxrwxrwx root root 23 ./usr/bin/head -> /usr/bin/head.coreutils
1074lrwxrwxrwx root root 27 ./usr/bin/hexdump -> /usr/bin/hexdump.util-linux
1075-rwxr-xr-x root root 55352 ./usr/bin/hexdump.util-linux
1076-rwxr-xr-x root root 43176 ./usr/bin/hostid.coreutils
1077lrwxrwxrwx root root 25 ./usr/bin/hostid -> /usr/bin/hostid.coreutils
1078lrwxrwxrwx root root 7 ./usr/bin/i386 -> setarch
1079-rwxr-xr-x root root 59608 ./usr/bin/iconv
1080-rwxr-xr-x root root 55496 ./usr/bin/id.coreutils
1081lrwxrwxrwx root root 21 ./usr/bin/id -> /usr/bin/id.coreutils
1082-rwxr-xr-x root root 141560 ./usr/bin/install.coreutils
1083lrwxrwxrwx root root 26 ./usr/bin/install -> /usr/bin/install.coreutils
1084lrwxrwxrwx root root 26 ./usr/bin/ionice -> /usr/bin/ionice.util-linux
1085-rwxr-xr-x root root 30768 ./usr/bin/ionice.util-linux
1086-rwxr-xr-x root root 30824 ./usr/bin/ipcmk
1087-rwxr-xr-x root root 34856 ./usr/bin/ipcrm
1088-rwxr-xr-x root root 71720 ./usr/bin/ipcs
1089lrwxrwxrwx root root 30 ./usr/bin/iptables-xml -> /usr/sbin/xtables-legacy-multi
1090-rwxr-xr-x root root 30760 ./usr/bin/isosize
1091-rwxr-xr-x root root 59592 ./usr/bin/join.coreutils
1092lrwxrwxrwx root root 23 ./usr/bin/join -> /usr/bin/join.coreutils
1093lrwxrwxrwx root root 19 ./usr/bin/killall -> /bin/busybox.nosuid
1094lrwxrwxrwx root root 13 ./usr/bin/lastb.sysvinit -> last.sysvinit
1095lrwxrwxrwx root root 23 ./usr/bin/lastb -> /usr/bin/lastb.sysvinit
1096lrwxrwxrwx root root 15 ./usr/bin/lastb.util-linux -> last.util-linux
1097-rwxr-xr-x root root 32032 ./usr/bin/lastlog
1098-rwxr-xr-x root root 22512 ./usr/bin/last.sysvinit
1099lrwxrwxrwx root root 22 ./usr/bin/last -> /usr/bin/last.sysvinit
1100-rwxr-xr-x root root 47152 ./usr/bin/last.util-linux
1101-rwxr-xr-x root root 63648 ./usr/bin/lbracket.coreutils
1102lrwxrwxrwx root root 33 ./usr/bin/ld.bfd -> /usr/bin/x86_64-poky-linux-ld.bfd
1103lrwxrwxrwx root root 34 ./usr/bin/ld.gold -> /usr/bin/x86_64-poky-linux-ld.gold
1104lrwxrwxrwx root root 29 ./usr/bin/ld -> /usr/bin/x86_64-poky-linux-ld
1105lrwxrwxrwx root root 19 ./usr/bin/less -> /bin/busybox.nosuid
1106-rwxr-xr-x root root 173 ./usr/bin/libpng16-config
1107lrwxrwxrwx root root 15 ./usr/bin/libpng-config -> libpng16-config
1108-rwxr-xr-x root root 43176 ./usr/bin/link.coreutils
1109lrwxrwxrwx root root 23 ./usr/bin/link -> /usr/bin/link.coreutils
1110lrwxrwxrwx root root 7 ./usr/bin/linux32 -> setarch
1111lrwxrwxrwx root root 7 ./usr/bin/linux64 -> setarch
1112-rwxr-xr-x root root 54648 ./usr/bin/locale
1113-rwxr-xr-x root root 170408 ./usr/bin/locate
1114lrwxrwxrwx root root 26 ./usr/bin/logger -> /usr/bin/logger.util-linux
1115-rwxr-xr-x root root 47760 ./usr/bin/logger.util-linux
1116-rwxr-xr-x root root 43176 ./usr/bin/logname.coreutils
1117lrwxrwxrwx root root 26 ./usr/bin/logname -> /usr/bin/logname.coreutils
1118-rwxr-xr-x root root 14368 ./usr/bin/look
1119-rwxr-xr-x root root 14296 ./usr/bin/lsattr
1120-rwxr-xr-x root root 145448 ./usr/bin/lsblk
1121-rwxr-xr-x root root 100392 ./usr/bin/lscpu
1122-rwxr-xr-x root root 92200 ./usr/bin/lsipc
1123-rwxr-xr-x root root 39288 ./usr/bin/lslocks
1124-rwxr-xr-x root root 67624 ./usr/bin/lslogins
1125-rwxr-xr-x root root 67624 ./usr/bin/lsmem
1126-rwxr-xr-x root root 51240 ./usr/bin/lsns
1127lrwxrwxrwx root root 17 ./usr/bin/lzcat -> /usr/bin/lzcat.xz
1128lrwxrwxrwx root root 5 ./usr/bin/lzcat.xz -> xz.xz
1129lrwxrwxrwx root root 6 ./usr/bin/lzcmp -> xzdiff
1130lrwxrwxrwx root root 6 ./usr/bin/lzdiff -> xzdiff
1131lrwxrwxrwx root root 6 ./usr/bin/lzegrep -> xzgrep
1132lrwxrwxrwx root root 6 ./usr/bin/lzfgrep -> xzgrep
1133lrwxrwxrwx root root 6 ./usr/bin/lzgrep -> xzgrep
1134lrwxrwxrwx root root 6 ./usr/bin/lzless -> xzless
1135-rwxr-xr-x root root 14376 ./usr/bin/lzmadec
1136-rwxr-xr-x root root 14376 ./usr/bin/lzmainfo
1137lrwxrwxrwx root root 16 ./usr/bin/lzma -> /usr/bin/lzma.xz
1138lrwxrwxrwx root root 5 ./usr/bin/lzma.xz -> xz.xz
1139lrwxrwxrwx root root 6 ./usr/bin/lzmore -> xzmore
1140-rwxr-xr-x root root 243992 ./usr/bin/m4
1141-rwxr-xr-x root root 243208 ./usr/bin/make
1142-rwxr-xr-x root root 22712 ./usr/bin/makedb
1143-rwxr-xr-x root root 34920 ./usr/bin/mcookie
1144-rwxr-xr-x root root 55496 ./usr/bin/md5sum.coreutils
1145lrwxrwxrwx root root 25 ./usr/bin/md5sum -> /usr/bin/md5sum.coreutils
1146-rwxr-xr-x root root 14304 ./usr/bin/mesg.sysvinit
1147lrwxrwxrwx root root 22 ./usr/bin/mesg -> /usr/bin/mesg.sysvinit
1148-rwxr-xr-x root root 14376 ./usr/bin/mesg.util-linux
1149lrwxrwxrwx root root 19 ./usr/bin/microcom -> /bin/busybox.nosuid
1150-rwxr-xr-x root root 1102 ./usr/bin/mk_cmds
1151-rwxr-xr-x root root 47272 ./usr/bin/mkfifo.coreutils
1152lrwxrwxrwx root root 25 ./usr/bin/mkfifo -> /usr/bin/mkfifo.coreutils
1153-rwxr-xr-x root root 519360 ./usr/bin/mkfs.btrfs
1154-rwxr-xr-x root root 55464 ./usr/bin/mktemp.coreutils
1155-rwxr-xr-x root root 34856 ./usr/bin/namei
1156lrwxrwxrwx root root 19 ./usr/bin/nc -> /bin/busybox.nosuid
1157-rwxr-xr-x root root 173 ./usr/bin/ncurses5-config
1158-rwxr-xr-x root root 173 ./usr/bin/ncurses6-config
1159-rwxr-xr-x root root 175 ./usr/bin/ncursesw5-config
1160-rwxr-xr-x root root 175 ./usr/bin/ncursesw6-config
1161-rwsr-xr-x root root 41136 ./usr/bin/newgidmap
1162-rwsr-xr-x root root 40312 ./usr/bin/newgrp.shadow
1163lrwxrwxrwx root root 22 ./usr/bin/newgrp -> /usr/bin/newgrp.shadow
1164-rwsr-xr-x root root 37040 ./usr/bin/newuidmap
1165-rwxr-xr-x root root 47272 ./usr/bin/nice.coreutils
1166-rwxr-xr-x root root 117000 ./usr/bin/nl.coreutils
1167lrwxrwxrwx root root 21 ./usr/bin/nl -> /usr/bin/nl.coreutils
1168lrwxrwxrwx root root 29 ./usr/bin/nm -> /usr/bin/x86_64-poky-linux-nm
1169-rwxr-xr-x root root 47272 ./usr/bin/nohup.coreutils
1170lrwxrwxrwx root root 24 ./usr/bin/nohup -> /usr/bin/nohup.coreutils
1171-rwxr-xr-x root root 47272 ./usr/bin/nproc.coreutils
1172lrwxrwxrwx root root 24 ./usr/bin/nproc -> /usr/bin/nproc.coreutils
1173lrwxrwxrwx root root 27 ./usr/bin/nsenter -> /usr/bin/nsenter.util-linux
1174-rwxr-xr-x root root 35072 ./usr/bin/nsenter.util-linux
1175lrwxrwxrwx root root 19 ./usr/bin/nslookup -> /bin/busybox.nosuid
1176-rwxr-xr-x root root 71904 ./usr/bin/numfmt
1177lrwxrwxrwx root root 34 ./usr/bin/objcopy -> /usr/bin/x86_64-poky-linux-objcopy
1178lrwxrwxrwx root root 34 ./usr/bin/objdump -> /usr/bin/x86_64-poky-linux-objdump
1179-rwxr-xr-x root root 80072 ./usr/bin/od.coreutils
1180lrwxrwxrwx root root 21 ./usr/bin/od -> /usr/bin/od.coreutils
1181-rwxr-xr-x root root 736944 ./usr/bin/openssl
1182lrwxrwxrwx root root 19 ./usr/bin/openvt -> /bin/busybox.nosuid
1183-rwsr-xr-x root root 67760 ./usr/bin/passwd.shadow
1184lrwxrwxrwx root root 22 ./usr/bin/passwd -> /usr/bin/passwd.shadow
1185-rwxr-xr-x root root 47304 ./usr/bin/paste.coreutils
1186lrwxrwxrwx root root 24 ./usr/bin/paste -> /usr/bin/paste.coreutils
1187lrwxrwxrwx root root 19 ./usr/bin/patch -> /bin/busybox.nosuid
1188-rwxr-xr-x root root 43176 ./usr/bin/pathchk.coreutils
1189lrwxrwxrwx root root 26 ./usr/bin/pathchk -> /usr/bin/pathchk.coreutils
1190-rwxr-xr-x root root 14520 ./usr/bin/pcprofiledump
1191-rwxr-xr-x root root 165 ./usr/bin/pcre-config
1192-rwxr-xr-x root root 14288 ./usr/bin/perl
1193-rwxr-xr-x root root 30776 ./usr/bin/pgrep.procps
1194lrwxrwxrwx root root 21 ./usr/bin/pgrep -> /usr/bin/pgrep.procps
1195-rwxr-xr-x root root 47304 ./usr/bin/pinky.coreutils
1196lrwxrwxrwx root root 24 ./usr/bin/pinky -> /usr/bin/pinky.coreutils
1197-rwxr-xr-x root root 30776 ./usr/bin/pkill.procps
1198lrwxrwxrwx root root 21 ./usr/bin/pkill -> /usr/bin/pkill.procps
1199-rwxr-xr-x root root 22712 ./usr/bin/pldd
1200-rwxr-xr-x root root 34872 ./usr/bin/pmap.procps
1201lrwxrwxrwx root root 20 ./usr/bin/pmap -> /usr/bin/pmap.procps
1202-rwxr-xr-x root root 84232 ./usr/bin/pr.coreutils
1203-rwxr-xr-x root root 43176 ./usr/bin/printenv.coreutils
1204-rwxr-xr-x root root 63648 ./usr/bin/printf.coreutils
1205lrwxrwxrwx root root 25 ./usr/bin/printf -> /usr/bin/printf.coreutils
1206-rwxr-xr-x root root 39480 ./usr/bin/prlimit
1207-rwxr-xr-x root root 80288 ./usr/bin/procan
1208lrwxrwxrwx root root 21 ./usr/bin/pr -> /usr/bin/pr.coreutils
1209-rwxr-xr-x root root 145640 ./usr/bin/ptx.coreutils
1210lrwxrwxrwx root root 22 ./usr/bin/ptx -> /usr/bin/ptx.coreutils
1211-rwxr-xr-x root root 14376 ./usr/bin/pwdx.procps
1212lrwxrwxrwx root root 20 ./usr/bin/pwdx -> /usr/bin/pwdx.procps
1213-rwxr-xr-x root root 14296 ./usr/bin/python3.8
1214-rwxr-xr-x root root 2114 ./usr/bin/python3.8-config-lib
1215lrwxrwxrwx root root 29 ./usr/bin/python3.8-config -> /usr/bin/python3.8-config-lib
1216lrwxrwxrwx root root 16 ./usr/bin/python3-config -> python3.8-config
1217lrwxrwxrwx root root 9 ./usr/bin/python3 -> python3.8
1218lrwxrwxrwx root root 33 ./usr/bin/ranlib -> /usr/bin/x86_64-poky-linux-ranlib
1219-rwxr-xr-x root root 14296 ./usr/bin/readbootlog
1220lrwxrwxrwx root root 34 ./usr/bin/readelf -> /usr/bin/x86_64-poky-linux-readelf
1221-rwxr-xr-x root root 55464 ./usr/bin/readlink.coreutils
1222lrwxrwxrwx root root 27 ./usr/bin/readlink -> /usr/bin/readlink.coreutils
1223-rwxr-xr-x root root 55496 ./usr/bin/realpath.coreutils
1224lrwxrwxrwx root root 27 ./usr/bin/realpath -> /usr/bin/realpath.coreutils
1225-rwxr-xr-x root root 22560 ./usr/bin/rename
1226lrwxrwxrwx root root 26 ./usr/bin/renice -> /usr/bin/renice.util-linux
1227-rwxr-xr-x root root 14384 ./usr/bin/renice.util-linux
1228lrwxrwxrwx root root 19 ./usr/bin/reset -> /bin/busybox.nosuid
1229lrwxrwxrwx root root 19 ./usr/bin/resize -> /bin/busybox.nosuid
1230lrwxrwxrwx root root 23 ./usr/bin/rev -> /usr/bin/rev.util-linux
1231-rwxr-xr-x root root 14376 ./usr/bin/rev.util-linux
1232-rwxr-xr-x root root 43176 ./usr/bin/runcon.coreutils
1233lrwxrwxrwx root root 25 ./usr/bin/runcon -> /usr/bin/runcon.coreutils
1234-rwxr-xr-x root root 67624 ./usr/bin/script
1235-rwxr-xr-x root root 55336 ./usr/bin/scriptlive
1236-rwxr-xr-x root root 43056 ./usr/bin/scriptreplay
1237-rwxr-xr-x root root 51264 ./usr/bin/sdiff
1238-rwxr-xr-x root root 63656 ./usr/bin/seq.coreutils
1239lrwxrwxrwx root root 22 ./usr/bin/seq -> /usr/bin/seq.coreutils
1240-rwxr-xr-x root root 26936 ./usr/bin/setarch
1241-rwxr-xr-x root root 39568 ./usr/bin/setfacl
1242-rwxr-xr-x root root 18696 ./usr/bin/setfattr.attr
1243lrwxrwxrwx root root 22 ./usr/bin/setfattr -> /usr/bin/setfattr.attr
1244lrwxrwxrwx root root 27 ./usr/bin/setpriv -> /usr/bin/setpriv.util-linux
1245-rwxr-xr-x root root 47160 ./usr/bin/setpriv.util-linux
1246lrwxrwxrwx root root 26 ./usr/bin/setsid -> /usr/bin/setsid.util-linux
1247-rwxr-xr-x root root 14384 ./usr/bin/setsid.util-linux
1248-rwxr-xr-x root root 47144 ./usr/bin/setterm
1249lrwxrwxrwx root root 13 ./usr/bin/sg -> newgrp.shadow
1250-rwxr-xr-x root root 59592 ./usr/bin/sha1sum.coreutils
1251lrwxrwxrwx root root 26 ./usr/bin/sha1sum -> /usr/bin/sha1sum.coreutils
1252-rwxr-xr-x root root 67784 ./usr/bin/sha224sum.coreutils
1253lrwxrwxrwx root root 28 ./usr/bin/sha224sum -> /usr/bin/sha224sum.coreutils
1254-rwxr-xr-x root root 67784 ./usr/bin/sha256sum.coreutils
1255lrwxrwxrwx root root 28 ./usr/bin/sha256sum -> /usr/bin/sha256sum.coreutils
1256-rwxr-xr-x root root 71880 ./usr/bin/sha384sum.coreutils
1257lrwxrwxrwx root root 28 ./usr/bin/sha384sum -> /usr/bin/sha384sum.coreutils
1258-rwxr-xr-x root root 71880 ./usr/bin/sha512sum.coreutils
1259lrwxrwxrwx root root 28 ./usr/bin/sha512sum -> /usr/bin/sha512sum.coreutils
1260-rwxr-xr-x root root 67784 ./usr/bin/shred.coreutils
1261lrwxrwxrwx root root 24 ./usr/bin/shred -> /usr/bin/shred.coreutils
1262-rwxr-xr-x root root 63656 ./usr/bin/shuf.coreutils
1263lrwxrwxrwx root root 23 ./usr/bin/shuf -> /usr/bin/shuf.coreutils
1264lrwxrwxrwx root root 31 ./usr/bin/size -> /usr/bin/x86_64-poky-linux-size
1265-rwxr-xr-x root root 30768 ./usr/bin/skill.procps
1266lrwxrwxrwx root root 21 ./usr/bin/skill -> /usr/bin/skill.procps
1267-rwxr-xr-x root root 22568 ./usr/bin/slabtop
1268-rwxr-xr-x root root 30768 ./usr/bin/snice.procps
1269lrwxrwxrwx root root 21 ./usr/bin/snice -> /usr/bin/snice.procps
1270-rwxr-xr-x root root 380104 ./usr/bin/socat
1271-rwxr-xr-x root root 117200 ./usr/bin/sort.coreutils
1272lrwxrwxrwx root root 23 ./usr/bin/sort -> /usr/bin/sort.coreutils
1273-rwxr-xr-x root root 64128 ./usr/bin/split.coreutils
1274lrwxrwxrwx root root 24 ./usr/bin/split -> /usr/bin/split.coreutils
1275-rwxr-xr-x root root 30896 ./usr/bin/sprof
1276-rwxr-xr-x root root 63648 ./usr/bin/stdbuf
1277lrwxrwxrwx root root 34 ./usr/bin/strings -> /usr/bin/x86_64-poky-linux-strings
1278lrwxrwxrwx root root 32 ./usr/bin/strip -> /usr/bin/x86_64-poky-linux-strip
1279-rwxr-xr-x root root 51376 ./usr/bin/sum.coreutils
1280lrwxrwxrwx root root 22 ./usr/bin/sum -> /usr/bin/sum.coreutils
1281-rwxr-xr-x root root 112808 ./usr/bin/tac.coreutils
1282lrwxrwxrwx root root 22 ./usr/bin/tac -> /usr/bin/tac.coreutils
1283-rwxr-xr-x root root 80104 ./usr/bin/tail.coreutils
1284lrwxrwxrwx root root 23 ./usr/bin/tail -> /usr/bin/tail.coreutils
1285lrwxrwxrwx root root 27 ./usr/bin/taskset -> /usr/bin/taskset.util-linux
1286-rwxr-xr-x root root 34864 ./usr/bin/taskset.util-linux
1287-rwxr-xr-x root root 47304 ./usr/bin/tee.coreutils
1288lrwxrwxrwx root root 22 ./usr/bin/tee -> /usr/bin/tee.coreutils
1289lrwxrwxrwx root root 19 ./usr/bin/telnet -> /bin/busybox.nosuid
1290-rwxr-xr-x root root 59544 ./usr/bin/test.coreutils
1291lrwxrwxrwx root root 23 ./usr/bin/test -> /usr/bin/test.coreutils
1292lrwxrwxrwx root root 19 ./usr/bin/tftp -> /bin/busybox.nosuid
1293lrwxrwxrwx root root 19 ./usr/bin/time -> /bin/busybox.nosuid
1294-rwxr-xr-x root root 51840 ./usr/bin/timeout.coreutils
1295lrwxrwxrwx root root 26 ./usr/bin/timeout -> /usr/bin/timeout.coreutils
1296-rwxr-xr-x root root 22576 ./usr/bin/tload
1297-rwxr-xr-x root root 124784 ./usr/bin/top.procps
1298lrwxrwxrwx root root 19 ./usr/bin/top -> /usr/bin/top.procps
1299-rwxr-xr-x root root 22512 ./usr/bin/tput
1300lrwxrwxrwx root root 17 ./usr/bin/traceroute -> /bin/busybox.suid
1301-rwxr-xr-x root root 55464 ./usr/bin/tr.coreutils
1302-rwxr-xr-x root root 47272 ./usr/bin/truncate.coreutils
1303lrwxrwxrwx root root 27 ./usr/bin/truncate -> /usr/bin/truncate.coreutils
1304lrwxrwxrwx root root 21 ./usr/bin/tr -> /usr/bin/tr.coreutils
1305lrwxrwxrwx root root 19 ./usr/bin/ts -> /bin/busybox.nosuid
1306-rwxr-xr-x root root 30680 ./usr/bin/tset
1307-rwxr-xr-x root root 59560 ./usr/bin/tsort.coreutils
1308lrwxrwxrwx root root 24 ./usr/bin/tsort -> /usr/bin/tsort.coreutils
1309-rwxr-xr-x root root 43176 ./usr/bin/tty.coreutils
1310lrwxrwxrwx root root 22 ./usr/bin/tty -> /usr/bin/tty.coreutils
1311-rwxr-xr-x root root 354584 ./usr/bin/udevadm
1312-rwxr-xr-x root root 22560 ./usr/bin/ul
1313lrwxrwxrwx root root 7 ./usr/bin/uname26 -> setarch
1314-rwxr-xr-x root root 47304 ./usr/bin/unexpand.coreutils
1315lrwxrwxrwx root root 27 ./usr/bin/unexpand -> /usr/bin/unexpand.coreutils
1316-rwxr-xr-x root root 55496 ./usr/bin/uniq.coreutils
1317lrwxrwxrwx root root 23 ./usr/bin/uniq -> /usr/bin/uniq.coreutils
1318-rwxr-xr-x root root 43176 ./usr/bin/unlink.coreutils
1319lrwxrwxrwx root root 25 ./usr/bin/unlink -> /usr/bin/unlink.coreutils
1320lrwxrwxrwx root root 18 ./usr/bin/unlzma -> /usr/bin/unlzma.xz
1321lrwxrwxrwx root root 5 ./usr/bin/unlzma.xz -> xz.xz
1322lrwxrwxrwx root root 27 ./usr/bin/unshare -> /usr/bin/unshare.util-linux
1323-rwxr-xr-x root root 39176 ./usr/bin/unshare.util-linux
1324lrwxrwxrwx root root 16 ./usr/bin/unxz -> /usr/bin/unxz.xz
1325lrwxrwxrwx root root 5 ./usr/bin/unxz.xz -> xz.xz
1326-rwxr-xr-x root root 88152 ./usr/bin/unzipsfx
1327-rwxr-xr-x root root 186472 ./usr/bin/unzip.unzip
1328lrwxrwxrwx root root 20 ./usr/bin/unzip -> /usr/bin/unzip.unzip
1329-rwxr-xr-x root root 4678 ./usr/bin/update-alternatives
1330-rwxr-xr-x root root 9076 ./usr/bin/updatedb
1331-rwxr-xr-x root root 59584 ./usr/bin/update-mime-database
1332-rwxr-xr-x root root 59560 ./usr/bin/uptime.coreutils
1333-rwxr-xr-x root root 14376 ./usr/bin/uptime.procps
1334lrwxrwxrwx root root 22 ./usr/bin/uptime -> /usr/bin/uptime.procps
1335-rwxr-xr-x root root 43176 ./usr/bin/users.coreutils
1336lrwxrwxrwx root root 24 ./usr/bin/users -> /usr/bin/users.coreutils
1337lrwxrwxrwx root root 27 ./usr/bin/[ -> /usr/bin/lbracket.coreutils
1338-rwxr-xr-x root root 18400 ./usr/bin/utmpdump.sysvinit
1339lrwxrwxrwx root root 26 ./usr/bin/utmpdump -> /usr/bin/utmpdump.sysvinit
1340-rwxr-xr-x root root 30768 ./usr/bin/utmpdump.util-linux
1341-rwxr-xr-x root root 14368 ./usr/bin/uuidgen
1342-rwxr-xr-x root root 38952 ./usr/bin/uuidparse
1343-rwxr-xr-x root root 162448 ./usr/bin/vdir.coreutils
1344lrwxrwxrwx root root 23 ./usr/bin/vdir -> /usr/bin/vdir.coreutils
1345lrwxrwxrwx root root 17 ./usr/bin/vlock -> /bin/busybox.suid
1346-rwxr-xr-x root root 38968 ./usr/bin/vmstat
1347-rwxr-xr-x root root 18392 ./usr/bin/wall.sysvinit
1348lrwxrwxrwx root root 22 ./usr/bin/wall -> /usr/bin/wall.sysvinit
1349-rwxr-xr-x root root 34864 ./usr/bin/wall.util-linux
1350-rwxr-xr-x root root 51248 ./usr/bin/wayland-scanner
1351-rwxr-xr-x root root 55472 ./usr/bin/wc.coreutils
1352lrwxrwxrwx root root 21 ./usr/bin/wc -> /usr/bin/wc.coreutils
1353-rwxr-xr-x root root 63552 ./usr/bin/wdctl
1354lrwxrwxrwx root root 19 ./usr/bin/wget -> /bin/busybox.nosuid
1355-rwxr-xr-x root root 31176 ./usr/bin/whereis
1356lrwxrwxrwx root root 20 ./usr/bin/which -> /usr/bin/which.which
1357-rwxr-xr-x root root 31280 ./usr/bin/which.which
1358-rwxr-xr-x root root 43176 ./usr/bin/whoami.coreutils
1359lrwxrwxrwx root root 25 ./usr/bin/whoami -> /usr/bin/whoami.coreutils
1360-rwxr-xr-x root root 63688 ./usr/bin/who.coreutils
1361lrwxrwxrwx root root 22 ./usr/bin/who -> /usr/bin/who.coreutils
1362-rwxr-xr-x root root 22568 ./usr/bin/w.procps
1363-rwxr-xr-x root root 22560 ./usr/bin/write
1364lrwxrwxrwx root root 17 ./usr/bin/w -> /usr/bin/w.procps
1365-rwxr-xr-x root root 31304 ./usr/bin/x86_64-poky-linux-addr2line
1366-rwxr-xr-x root root 63784 ./usr/bin/x86_64-poky-linux-ar
1367-rwxr-xr-x root root 737584 ./usr/bin/x86_64-poky-linux-as
1368-rwxr-xr-x root root 30776 ./usr/bin/x86_64-poky-linux-c++filt
1369-rwxr-xr-x root root 2058648 ./usr/bin/x86_64-poky-linux-dwp
1370-rwxr-xr-x root root 39320 ./usr/bin/x86_64-poky-linux-elfedit
1371-rwxr-xr-x root root 102056 ./usr/bin/x86_64-poky-linux-gprof
1372-rwxr-xr-x root root 1711488 ./usr/bin/x86_64-poky-linux-ld
1373-rwxr-xr-x root root 1711488 ./usr/bin/x86_64-poky-linux-ld.bfd
1374-rwxr-xr-x root root 2316464 ./usr/bin/x86_64-poky-linux-ld.gold
1375-rwxr-xr-x root root 48344 ./usr/bin/x86_64-poky-linux-nm
1376-rwxr-xr-x root root 190736 ./usr/bin/x86_64-poky-linux-objcopy
1377-rwxr-xr-x root root 512664 ./usr/bin/x86_64-poky-linux-objdump
1378-rwxr-xr-x root root 63824 ./usr/bin/x86_64-poky-linux-ranlib
1379-rwxr-xr-x root root 670432 ./usr/bin/x86_64-poky-linux-readelf
1380-rwxr-xr-x root root 35136 ./usr/bin/x86_64-poky-linux-size
1381-rwxr-xr-x root root 31176 ./usr/bin/x86_64-poky-linux-strings
1382-rwxr-xr-x root root 190736 ./usr/bin/x86_64-poky-linux-strip
1383lrwxrwxrwx root root 7 ./usr/bin/x86_64 -> setarch
1384-rwxr-xr-x root root 75976 ./usr/bin/xargs.findutils
1385lrwxrwxrwx root root 24 ./usr/bin/xargs -> /usr/bin/xargs.findutils
1386-rwxr-xr-x root root 16982 ./usr/bin/xkeystone
1387-rwxr-xr-x root root 165 ./usr/bin/xml2-config
1388-rwxr-xr-x root root 63544 ./usr/bin/xrandr
1389lrwxrwxrwx root root 17 ./usr/bin/xzcat -> /usr/bin/xzcat.xz
1390lrwxrwxrwx root root 5 ./usr/bin/xzcat.xz -> xz.xz
1391lrwxrwxrwx root root 6 ./usr/bin/xzcmp -> xzdiff
1392-rwxr-xr-x root root 14376 ./usr/bin/xzdec
1393-rwxr-xr-x root root 6633 ./usr/bin/xzdiff
1394lrwxrwxrwx root root 6 ./usr/bin/xzegrep -> xzgrep
1395lrwxrwxrwx root root 6 ./usr/bin/xzfgrep -> xzgrep
1396-rwxr-xr-x root root 5630 ./usr/bin/xzgrep
1397-rwxr-xr-x root root 1799 ./usr/bin/xzless
1398-rwxr-xr-x root root 2162 ./usr/bin/xzmore
1399lrwxrwxrwx root root 14 ./usr/bin/xz -> /usr/bin/xz.xz
1400-rwxr-xr-x root root 80184 ./usr/bin/xz.xz
1401-rwxr-xr-x root root 4184 ./usr/bin/yacc
1402-rwxr-xr-x root root 43176 ./usr/bin/yes.coreutils
1403lrwxrwxrwx root root 22 ./usr/bin/yes -> /usr/bin/yes.coreutils
1404-rwxr-xr-x root root 212088 ./usr/bin/zip
1405-rwxr-xr-x root root 97872 ./usr/bin/zipcloak
1406-rwxr-xr-x root root 2953 ./usr/bin/zipgrep
1407-rwxr-xr-x root root 186472 ./usr/bin/zipinfo
1408-rwxr-xr-x root root 89448 ./usr/bin/zipnote
1409-rwxr-xr-x root root 89456 ./usr/bin/zipsplit
1410drwxr-xr-x root root 4096 ./usr/games
1411drwxr-xr-x root root 12288 ./usr/include
1412drwxr-xr-x root root 4096 ./usr/include/acl
1413-rw-r--r-- root root 2611 ./usr/include/acl/libacl.h
1414-rw-r--r-- root root 7457 ./usr/include/aio.h
1415-rw-r--r-- root root 2032 ./usr/include/aliases.h
1416-rw-r--r-- root root 1204 ./usr/include/alloca.h
1417-rw-r--r-- root root 14130 ./usr/include/ansidecl.h
1418-rw-r--r-- root root 4351 ./usr/include/a.out.h
1419-rw-r--r-- root root 25473 ./usr/include/argp.h
1420-rw-r--r-- root root 6051 ./usr/include/argz.h
1421-rw-r--r-- root root 1731 ./usr/include/ar.h
1422drwxr-xr-x root root 4096 ./usr/include/arpa
1423-rw-r--r-- root root 3432 ./usr/include/arpa/ftp.h
1424-rw-r--r-- root root 4277 ./usr/include/arpa/inet.h
1425-rw-r--r-- root root 7041 ./usr/include/arpa/nameser_compat.h
1426-rw-r--r-- root root 14195 ./usr/include/arpa/nameser.h
1427-rw-r--r-- root root 10263 ./usr/include/arpa/telnet.h
1428-rw-r--r-- root root 3051 ./usr/include/arpa/tftp.h
1429drwxr-xr-x root root 4096 ./usr/include/asm
1430-rw-r--r-- root root 756 ./usr/include/asm/a.out.h
1431-rw-r--r-- root root 546 ./usr/include/asm/auxvec.h
1432-rw-r--r-- root root 321 ./usr/include/asm/bitsperlong.h
1433-rw-r--r-- root root 323 ./usr/include/asm/boot.h
1434-rw-r--r-- root root 7757 ./usr/include/asm/bootparam.h
1435-rw-r--r-- root root 40 ./usr/include/asm/bpf_perf_event.h
1436-rw-r--r-- root root 200 ./usr/include/asm/byteorder.h
1437-rw-r--r-- root root 3285 ./usr/include/asm/debugreg.h
1438-rw-r--r-- root root 2579 ./usr/include/asm/e820.h
1439-rw-r--r-- root root 31 ./usr/include/asm/errno.h
1440-rw-r--r-- root root 31 ./usr/include/asm/fcntl.h
1441drwxr-xr-x root root 4096 ./usr/include/asm-generic
1442-rw-r--r-- root root 218 ./usr/include/asm-generic/auxvec.h
1443-rw-r--r-- root root 564 ./usr/include/asm-generic/bitsperlong.h
1444-rw-r--r-- root root 238 ./usr/include/asm-generic/bpf_perf_event.h
1445-rw-r--r-- root root 1612 ./usr/include/asm-generic/errno-base.h
1446-rw-r--r-- root root 5648 ./usr/include/asm-generic/errno.h
1447-rw-r--r-- root root 5423 ./usr/include/asm-generic/fcntl.h
1448-rw-r--r-- root root 1740 ./usr/include/asm-generic/hugetlb_encode.h
1449-rw-r--r-- root root 718 ./usr/include/asm-generic/int-l64.h
1450-rw-r--r-- root root 864 ./usr/include/asm-generic/int-ll64.h
1451-rw-r--r-- root root 3478 ./usr/include/asm-generic/ioctl.h
1452-rw-r--r-- root root 3987 ./usr/include/asm-generic/ioctls.h
1453-rw-r--r-- root root 1003 ./usr/include/asm-generic/ipcbuf.h
1454-rw-r--r-- root root 96 ./usr/include/asm-generic/kvm_para.h
1455-rw-r--r-- root root 3417 ./usr/include/asm-generic/mman-common.h
1456-rw-r--r-- root root 740 ./usr/include/asm-generic/mman.h
1457-rw-r--r-- root root 1618 ./usr/include/asm-generic/msgbuf.h
1458-rw-r--r-- root root 353 ./usr/include/asm-generic/param.h
1459-rw-r--r-- root root 878 ./usr/include/asm-generic/poll.h
1460-rw-r--r-- root root 2331 ./usr/include/asm-generic/posix_types.h
1461-rw-r--r-- root root 1872 ./usr/include/asm-generic/resource.h
1462-rw-r--r-- root root 1550 ./usr/include/asm-generic/sembuf.h
1463-rw-r--r-- root root 190 ./usr/include/asm-generic/setup.h
1464-rw-r--r-- root root 1837 ./usr/include/asm-generic/shmbuf.h
1465-rw-r--r-- root root 9969 ./usr/include/asm-generic/siginfo.h
1466-rw-r--r-- root root 800 ./usr/include/asm-generic/signal-defs.h
1467-rw-r--r-- root root 2709 ./usr/include/asm-generic/signal.h
1468-rw-r--r-- root root 3538 ./usr/include/asm-generic/socket.h
1469-rw-r--r-- root root 447 ./usr/include/asm-generic/sockios.h
1470-rw-r--r-- root root 1839 ./usr/include/asm-generic/statfs.h
1471-rw-r--r-- root root 2633 ./usr/include/asm-generic/stat.h
1472-rw-r--r-- root root 502 ./usr/include/asm-generic/swab.h
1473-rw-r--r-- root root 4716 ./usr/include/asm-generic/termbits.h
1474-rw-r--r-- root root 1377 ./usr/include/asm-generic/termios.h
1475-rw-r--r-- root root 233 ./usr/include/asm-generic/types.h
1476-rw-r--r-- root root 357 ./usr/include/asm-generic/ucontext.h
1477-rw-r--r-- root root 30377 ./usr/include/asm-generic/unistd.h
1478-rw-r--r-- root root 69 ./usr/include/asm/hw_breakpoint.h
1479-rw-r--r-- root root 198 ./usr/include/asm/hwcap2.h
1480-rw-r--r-- root root 31 ./usr/include/asm/ioctl.h
1481-rw-r--r-- root root 32 ./usr/include/asm/ioctls.h
1482-rw-r--r-- root root 32 ./usr/include/asm/ipcbuf.h
1483-rw-r--r-- root root 854 ./usr/include/asm/ist.h
1484-rw-r--r-- root root 9244 ./usr/include/asm/kvm.h
1485-rw-r--r-- root root 3341 ./usr/include/asm/kvm_para.h
1486-rw-r--r-- root root 388 ./usr/include/asm/kvm_perf.h
1487-rw-r--r-- root root 1306 ./usr/include/asm/ldt.h
1488-rw-r--r-- root root 1688 ./usr/include/asm/mce.h
1489-rw-r--r-- root root 1002 ./usr/include/asm/mman.h
1490-rw-r--r-- root root 1053 ./usr/include/asm/msgbuf.h
1491-rw-r--r-- root root 346 ./usr/include/asm/msr.h
1492-rw-r--r-- root root 4225 ./usr/include/asm/mtrr.h
1493-rw-r--r-- root root 31 ./usr/include/asm/param.h
1494-rw-r--r-- root root 1403 ./usr/include/asm/perf_regs.h
1495-rw-r--r-- root root 30 ./usr/include/asm/poll.h
1496-rw-r--r-- root root 765 ./usr/include/asm/posix_types_32.h
1497-rw-r--r-- root root 609 ./usr/include/asm/posix_types_64.h
1498-rw-r--r-- root root 224 ./usr/include/asm/posix_types.h
1499-rw-r--r-- root root 581 ./usr/include/asm/posix_types_x32.h
1500-rw-r--r-- root root 418 ./usr/include/asm/prctl.h
1501-rw-r--r-- root root 6623 ./usr/include/asm/processor-flags.h
1502-rw-r--r-- root root 2037 ./usr/include/asm/ptrace-abi.h
1503-rw-r--r-- root root 1495 ./usr/include/asm/ptrace.h
1504-rw-r--r-- root root 34 ./usr/include/asm/resource.h
1505-rw-r--r-- root root 1045 ./usr/include/asm/sembuf.h
1506-rw-r--r-- root root 6 ./usr/include/asm/setup.h
1507-rw-r--r-- root root 1258 ./usr/include/asm/shmbuf.h
1508-rw-r--r-- root root 271 ./usr/include/asm/sigcontext32.h
1509-rw-r--r-- root root 9724 ./usr/include/asm/sigcontext.h
1510-rw-r--r-- root root 422 ./usr/include/asm/siginfo.h
1511-rw-r--r-- root root 2901 ./usr/include/asm/signal.h
1512-rw-r--r-- root root 32 ./usr/include/asm/socket.h
1513-rw-r--r-- root root 33 ./usr/include/asm/sockios.h
1514-rw-r--r-- root root 416 ./usr/include/asm/statfs.h
1515-rw-r--r-- root root 3131 ./usr/include/asm/stat.h
1516-rw-r--r-- root root 7068 ./usr/include/asm/svm.h
1517-rw-r--r-- root root 724 ./usr/include/asm/swab.h
1518-rw-r--r-- root root 34 ./usr/include/asm/termbits.h
1519-rw-r--r-- root root 33 ./usr/include/asm/termios.h
1520-rw-r--r-- root root 31 ./usr/include/asm/types.h
1521-rw-r--r-- root root 2117 ./usr/include/asm/ucontext.h
1522-rw-r--r-- root root 11475 ./usr/include/asm/unistd_32.h
1523-rw-r--r-- root root 9286 ./usr/include/asm/unistd_64.h
1524-rw-r--r-- root root 361 ./usr/include/asm/unistd.h
1525-rw-r--r-- root root 16367 ./usr/include/asm/unistd_x32.h
1526-rw-r--r-- root root 3118 ./usr/include/asm/vm86.h
1527-rw-r--r-- root root 7032 ./usr/include/asm/vmx.h
1528-rw-r--r-- root root 263 ./usr/include/asm/vsyscall.h
1529-rw-r--r-- root root 4562 ./usr/include/assert.h
1530drwxr-xr-x root root 4096 ./usr/include/attr
1531-rw-r--r-- root root 8010 ./usr/include/attr/attributes.h
1532-rw-r--r-- root root 1569 ./usr/include/attr/error_context.h
1533-rw-r--r-- root root 1411 ./usr/include/attr/libattr.h
1534drwxr-xr-x root root 4096 ./usr/include/bash
1535-rw-r--r-- root root 2225 ./usr/include/bash/alias.h
1536-rw-r--r-- root root 3561 ./usr/include/bash/arrayfunc.h
1537-rw-r--r-- root root 4172 ./usr/include/bash/array.h
1538-rw-r--r-- root root 2302 ./usr/include/bash/assoc.h
1539-rw-r--r-- root root 1262 ./usr/include/bash/bashansi.h
1540-rw-r--r-- root root 1462 ./usr/include/bash/bashintl.h
1541-rw-r--r-- root root 1646 ./usr/include/bash/bashjmp.h
1542-rw-r--r-- root root 1086 ./usr/include/bash/bashtypes.h
1543drwxr-xr-x root root 4096 ./usr/include/bash/builtins
1544-rw-r--r-- root root 1263 ./usr/include/bash/builtins/bashgetopt.h
1545-rw-r--r-- root root 6715 ./usr/include/bash/builtins/builtext.h
1546-rw-r--r-- root root 8372 ./usr/include/bash/builtins/common.h
1547-rw-r--r-- root root 2582 ./usr/include/bash/builtins/getopt.h
1548-rw-r--r-- root root 2373 ./usr/include/bash/builtins.h
1549-rw-r--r-- root root 15490 ./usr/include/bash/command.h
1550-rw-r--r-- root root 6514 ./usr/include/bash/config-bot.h
1551-rw-r--r-- root root 32166 ./usr/include/bash/config.h
1552-rw-r--r-- root root 7436 ./usr/include/bash/config-top.h
1553-rw-r--r-- root root 1709 ./usr/include/bash/conftypes.h
1554-rw-r--r-- root root 1397 ./usr/include/bash/dispose_cmd.h
1555-rw-r--r-- root root 3053 ./usr/include/bash/error.h
1556-rw-r--r-- root root 18999 ./usr/include/bash/externs.h
1557-rw-r--r-- root root 11828 ./usr/include/bash/general.h
1558-rw-r--r-- root root 3036 ./usr/include/bash/hashlib.h
1559drwxr-xr-x root root 4096 ./usr/include/bash/include
1560-rw-r--r-- root root 1437 ./usr/include/bash/include/ansi_stdlib.h
1561-rw-r--r-- root root 4125 ./usr/include/bash/include/chartypes.h
1562-rw-r--r-- root root 1581 ./usr/include/bash/include/filecntl.h
1563-rw-r--r-- root root 3014 ./usr/include/bash/include/gettext.h
1564-rw-r--r-- root root 2113 ./usr/include/bash/include/maxpath.h
1565-rw-r--r-- root root 1994 ./usr/include/bash/include/memalloc.h
1566-rw-r--r-- root root 3669 ./usr/include/bash/include/ocache.h
1567-rw-r--r-- root root 2305 ./usr/include/bash/include/posixdir.h
1568-rw-r--r-- root root 1407 ./usr/include/bash/include/posixjmp.h
1569-rw-r--r-- root root 4318 ./usr/include/bash/include/posixstat.h
1570-rw-r--r-- root root 1509 ./usr/include/bash/include/posixtime.h
1571-rw-r--r-- root root 3068 ./usr/include/bash/include/posixwait.h
1572-rw-r--r-- root root 4319 ./usr/include/bash/include/shmbchar.h
1573-rw-r--r-- root root 13847 ./usr/include/bash/include/shmbutil.h
1574-rw-r--r-- root root 3636 ./usr/include/bash/include/shtty.h
1575-rw-r--r-- root root 6088 ./usr/include/bash/include/stat-time.h
1576-rw-r--r-- root root 2652 ./usr/include/bash/include/stdc.h
1577-rw-r--r-- root root 1778 ./usr/include/bash/include/systimes.h
1578-rw-r--r-- root root 2890 ./usr/include/bash/include/typemax.h
1579-rw-r--r-- root root 2973 ./usr/include/bash/include/unionwait.h
1580-rw-r--r-- root root 9640 ./usr/include/bash/jobs.h
1581-rw-r--r-- root root 2960 ./usr/include/bash/make_cmd.h
1582-rw-r--r-- root root 1208 ./usr/include/bash/pathnames.h
1583-rw-r--r-- root root 2541 ./usr/include/bash/quit.h
1584-rw-r--r-- root root 5957 ./usr/include/bash/shell.h
1585-rw-r--r-- root root 4485 ./usr/include/bash/sig.h
1586-rw-r--r-- root root 1544 ./usr/include/bash/siglist.h
1587-rw-r--r-- root root 247 ./usr/include/bash/signames.h
1588-rw-r--r-- root root 15184 ./usr/include/bash/subst.h
1589-rw-r--r-- root root 3544 ./usr/include/bash/syntax.h
1590-rw-r--r-- root root 2003 ./usr/include/bash/unwind_prot.h
1591-rw-r--r-- root root 17643 ./usr/include/bash/variables.h
1592-rw-r--r-- root root 579 ./usr/include/bash/version.h
1593-rw-r--r-- root root 1759 ./usr/include/bash/xmalloc.h
1594-rw-r--r-- root root 255175 ./usr/include/bfd-64.h
1595-rw-r--r-- root root 500 ./usr/include/bfd.h
1596-rw-r--r-- root root 35620 ./usr/include/bfdlink.h
1597-rw-r--r-- root root 848 ./usr/include/bfd_stdint.h
1598drwxr-xr-x root root 4096 ./usr/include/bits
1599-rw-r--r-- root root 268 ./usr/include/bits/a.out.h
1600-rw-r--r-- root root 1010 ./usr/include/bits/argp-ldbl.h
1601-rw-r--r-- root root 2450 ./usr/include/bits/byteswap.h
1602-rw-r--r-- root root 4139 ./usr/include/bits/cmathcalls.h
1603-rw-r--r-- root root 23709 ./usr/include/bits/confname.h
1604-rw-r--r-- root root 4516 ./usr/include/bits/cpu-set.h
1605-rw-r--r-- root root 1275 ./usr/include/bits/dirent_ext.h
1606-rw-r--r-- root root 1771 ./usr/include/bits/dirent.h
1607-rw-r--r-- root root 2521 ./usr/include/bits/dlfcn.h
1608-rw-r--r-- root root 426 ./usr/include/bits/elfclass.h
1609-rw-r--r-- root root 1905 ./usr/include/bits/endian.h
1610-rw-r--r-- root root 273 ./usr/include/bits/endianness-64.h
1611-rw-r--r-- root root 548 ./usr/include/bits/endianness.h
1612-rw-r--r-- root root 3791 ./usr/include/bits/environments.h
1613-rw-r--r-- root root 1071 ./usr/include/bits/epoll.h
1614-rw-r--r-- root root 1148 ./usr/include/bits/err-ldbl.h
1615-rw-r--r-- root root 1426 ./usr/include/bits/errno.h
1616-rw-r--r-- root root 2684 ./usr/include/bits/error.h
1617-rw-r--r-- root root 1012 ./usr/include/bits/error-ldbl.h
1618-rw-r--r-- root root 1129 ./usr/include/bits/eventfd.h
1619-rw-r--r-- root root 5575 ./usr/include/bits/fcntl2.h
1620-rw-r--r-- root root 2246 ./usr/include/bits/fcntl.h
1621-rw-r--r-- root root 13995 ./usr/include/bits/fcntl-linux.h
1622-rw-r--r-- root root 4611 ./usr/include/bits/fenv.h
1623-rw-r--r-- root root 190 ./usr/include/bits/fenvinline.h
1624-rw-r--r-- root root 4373 ./usr/include/bits/floatn-64.h
1625-rw-r--r-- root root 9765 ./usr/include/bits/floatn-common.h
1626-rw-r--r-- root root 532 ./usr/include/bits/floatn.h
1627-rw-r--r-- root root 1215 ./usr/include/bits/flt-eval-method.h
1628-rw-r--r-- root root 1216 ./usr/include/bits/fp-fast.h
1629-rw-r--r-- root root 1012 ./usr/include/bits/fp-logb.h
1630-rw-r--r-- root root 3667 ./usr/include/bits/getopt_core.h
1631-rw-r--r-- root root 3038 ./usr/include/bits/getopt_ext.h
1632-rw-r--r-- root root 1810 ./usr/include/bits/getopt_posix.h
1633-rw-r--r-- root root 972 ./usr/include/bits/hwcap.h
1634-rw-r--r-- root root 1591 ./usr/include/bits/indirect-return.h
1635-rw-r--r-- root root 9534 ./usr/include/bits/in.h
1636-rw-r--r-- root root 25 ./usr/include/bits/initspin.h
1637-rw-r--r-- root root 1080 ./usr/include/bits/inotify.h
1638-rw-r--r-- root root 4478 ./usr/include/bits/ioctls.h
1639-rw-r--r-- root root 2456 ./usr/include/bits/ioctl-types.h
1640-rw-r--r-- root root 1523 ./usr/include/bits/ipc.h
1641-rw-r--r-- root root 1745 ./usr/include/bits/ipc-perm.h
1642-rw-r--r-- root root 1176 ./usr/include/bits/ipctypes.h
1643-rw-r--r-- root root 2479 ./usr/include/bits/iscanonical.h
1644-rw-r--r-- root root 3288 ./usr/include/bits/libc-header-start.h
1645-rw-r--r-- root root 3004 ./usr/include/bits/libm-simd-decl-stubs.h
1646-rw-r--r-- root root 4286 ./usr/include/bits/link.h
1647-rw-r--r-- root root 1368 ./usr/include/bits/locale.h
1648-rw-r--r-- root root 3185 ./usr/include/bits/local_lim.h
1649-rw-r--r-- root root 962 ./usr/include/bits/long-double-64.h
1650-rw-r--r-- root root 552 ./usr/include/bits/long-double.h
1651-rw-r--r-- root root 13210 ./usr/include/bits/mathcalls.h
1652-rw-r--r-- root root 1765 ./usr/include/bits/mathcalls-helper-functions.h
1653-rw-r--r-- root root 1312 ./usr/include/bits/mathcalls-narrow.h
1654-rw-r--r-- root root 891 ./usr/include/bits/mathdef.h
1655-rw-r--r-- root root 337 ./usr/include/bits/mathinline.h
1656-rw-r--r-- root root 2308 ./usr/include/bits/math-vector.h
1657-rw-r--r-- root root 1309 ./usr/include/bits/mman.h
1658-rw-r--r-- root root 4911 ./usr/include/bits/mman-linux.h
1659-rw-r--r-- root root 1997 ./usr/include/bits/mman-map-flags-generic.h
1660-rw-r--r-- root root 2813 ./usr/include/bits/mman-shared.h
1661-rw-r--r-- root root 1047 ./usr/include/bits/monetary-ldbl.h
1662-rw-r--r-- root root 2151 ./usr/include/bits/mqueue2.h
1663-rw-r--r-- root root 1246 ./usr/include/bits/mqueue.h
1664-rw-r--r-- root root 2818 ./usr/include/bits/msq.h
1665-rw-r--r-- root root 1283 ./usr/include/bits/msq-pad.h
1666-rw-r--r-- root root 1264 ./usr/include/bits/netdb.h
1667-rw-r--r-- root root 1433 ./usr/include/bits/param.h
1668-rw-r--r-- root root 2937 ./usr/include/bits/poll2.h
1669-rw-r--r-- root root 2076 ./usr/include/bits/poll.h
1670-rw-r--r-- root root 5189 ./usr/include/bits/posix1_lim.h
1671-rw-r--r-- root root 2867 ./usr/include/bits/posix2_lim.h
1672-rw-r--r-- root root 5913 ./usr/include/bits/posix_opt.h
1673-rw-r--r-- root root 992 ./usr/include/bits/printf-ldbl.h
1674-rw-r--r-- root root 963 ./usr/include/bits/procfs-extra.h
1675-rw-r--r-- root root 2025 ./usr/include/bits/procfs.h
1676-rw-r--r-- root root 1148 ./usr/include/bits/procfs-id.h
1677-rw-r--r-- root root 1050 ./usr/include/bits/procfs-prregset.h
1678-rw-r--r-- root root 1838 ./usr/include/bits/pthreadtypes-arch.h
1679-rw-r--r-- root root 3072 ./usr/include/bits/pthreadtypes.h
1680-rw-r--r-- root root 4091 ./usr/include/bits/ptrace-shared.h
1681-rw-r--r-- root root 6299 ./usr/include/bits/resource.h
1682-rw-r--r-- root root 3947 ./usr/include/bits/sched.h
1683-rw-r--r-- root root 1438 ./usr/include/bits/select2.h
1684-rw-r--r-- root root 2106 ./usr/include/bits/select.h
1685-rw-r--r-- root root 1238 ./usr/include/bits/semaphore.h
1686-rw-r--r-- root root 2905 ./usr/include/bits/sem.h
1687-rw-r--r-- root root 1019 ./usr/include/bits/sem-pad.h
1688-rw-r--r-- root root 1705 ./usr/include/bits/setjmp2.h
1689-rw-r--r-- root root 1287 ./usr/include/bits/setjmp.h
1690-rw-r--r-- root root 3872 ./usr/include/bits/shm.h
1691-rw-r--r-- root root 1106 ./usr/include/bits/shmlba.h
1692-rw-r--r-- root root 1668 ./usr/include/bits/shm-pad.h
1693-rw-r--r-- root root 2935 ./usr/include/bits/sigaction.h
1694-rw-r--r-- root root 4266 ./usr/include/bits/sigcontext.h
1695-rw-r--r-- root root 1471 ./usr/include/bits/sigevent-consts.h
1696-rw-r--r-- root root 729 ./usr/include/bits/siginfo-arch.h
1697-rw-r--r-- root root 204 ./usr/include/bits/siginfo-consts-arch.h
1698-rw-r--r-- root root 6855 ./usr/include/bits/siginfo-consts.h
1699-rw-r--r-- root root 1285 ./usr/include/bits/signal_ext.h
1700-rw-r--r-- root root 1067 ./usr/include/bits/signalfd.h
1701-rw-r--r-- root root 4341 ./usr/include/bits/signum-generic.h
1702-rw-r--r-- root root 1634 ./usr/include/bits/signum.h
1703-rw-r--r-- root root 1168 ./usr/include/bits/sigstack.h
1704-rw-r--r-- root root 1692 ./usr/include/bits/sigthread.h
1705-rw-r--r-- root root 1514 ./usr/include/bits/sockaddr.h
1706-rw-r--r-- root root 3026 ./usr/include/bits/socket2.h
1707-rw-r--r-- root root 1318 ./usr/include/bits/socket-constants.h
1708-rw-r--r-- root root 12261 ./usr/include/bits/socket.h
1709-rw-r--r-- root root 2216 ./usr/include/bits/socket_type.h
1710-rw-r--r-- root root 1188 ./usr/include/bits/ss_flags.h
1711-rw-r--r-- root root 9040 ./usr/include/bits/stab.def
1712-rw-r--r-- root root 1917 ./usr/include/bits/statfs.h
1713-rw-r--r-- root root 7620 ./usr/include/bits/stat.h
1714-rw-r--r-- root root 3423 ./usr/include/bits/statvfs.h
1715-rw-r--r-- root root 2050 ./usr/include/bits/statx-generic.h
1716-rw-r--r-- root root 1400 ./usr/include/bits/statx.h
1717-rw-r--r-- root root 1037 ./usr/include/bits/stdint-intn.h
1718-rw-r--r-- root root 1049 ./usr/include/bits/stdint-uintn.h
1719-rw-r--r-- root root 12679 ./usr/include/bits/stdio2.h
1720-rw-r--r-- root root 5584 ./usr/include/bits/stdio.h
1721-rw-r--r-- root root 2843 ./usr/include/bits/stdio-ldbl.h
1722-rw-r--r-- root root 1213 ./usr/include/bits/stdio_lim.h
1723-rw-r--r-- root root 1378 ./usr/include/bits/stdlib-bsearch.h
1724-rw-r--r-- root root 1115 ./usr/include/bits/stdlib-float.h
1725-rw-r--r-- root root 5659 ./usr/include/bits/stdlib.h
1726-rw-r--r-- root root 1377 ./usr/include/bits/stdlib-ldbl.h
1727-rw-r--r-- root root 4314 ./usr/include/bits/string_fortified.h
1728-rw-r--r-- root root 1209 ./usr/include/bits/strings_fortified.h
1729-rw-r--r-- root root 1810 ./usr/include/bits/struct_mutex.h
1730-rw-r--r-- root root 2027 ./usr/include/bits/struct_rwlock-64.h
1731-rw-r--r-- root root 560 ./usr/include/bits/struct_rwlock.h
1732-rw-r--r-- root root 44103 ./usr/include/bits/syscall-64.h
1733-rw-r--r-- root root 536 ./usr/include/bits/syscall.h
1734-rw-r--r-- root root 899 ./usr/include/bits/sysctl.h
1735-rw-r--r-- root root 1216 ./usr/include/bits/sys_errlist.h
1736-rw-r--r-- root root 1685 ./usr/include/bits/syslog.h
1737-rw-r--r-- root root 1206 ./usr/include/bits/syslog-ldbl.h
1738-rw-r--r-- root root 1061 ./usr/include/bits/syslog-path.h
1739-rw-r--r-- root root 2953 ./usr/include/bits/sysmacros.h
1740-rw-r--r-- root root 1824 ./usr/include/bits/termios-baud.h
1741-rw-r--r-- root root 1279 ./usr/include/bits/termios-c_cc.h
1742-rw-r--r-- root root 1230 ./usr/include/bits/termios-c_cflag.h
1743-rw-r--r-- root root 1936 ./usr/include/bits/termios-c_iflag.h
1744-rw-r--r-- root root 2594 ./usr/include/bits/termios-c_lflag.h
1745-rw-r--r-- root root 2822 ./usr/include/bits/termios-c_oflag.h
1746-rw-r--r-- root root 2168 ./usr/include/bits/termios.h
1747-rw-r--r-- root root 969 ./usr/include/bits/termios-misc.h
1748-rw-r--r-- root root 1433 ./usr/include/bits/termios-struct.h
1749-rw-r--r-- root root 1062 ./usr/include/bits/termios-tcflow.h
1750-rw-r--r-- root root 3982 ./usr/include/bits/thread-shared-types.h
1751-rw-r--r-- root root 1340 ./usr/include/bits/time64.h
1752-rw-r--r-- root root 2999 ./usr/include/bits/time.h
1753-rw-r--r-- root root 1103 ./usr/include/bits/timerfd.h
1754-rw-r--r-- root root 1081 ./usr/include/bits/timesize.h
1755-rw-r--r-- root root 4596 ./usr/include/bits/timex.h
1756drwxr-xr-x root root 4096 ./usr/include/bits/types
1757-rw-r--r-- root root 174 ./usr/include/bits/types/clockid_t.h
1758-rw-r--r-- root root 143 ./usr/include/bits/types/clock_t.h
1759-rw-r--r-- root root 2725 ./usr/include/bits/types/cookie_io_functions_t.h
1760-rw-r--r-- root root 894 ./usr/include/bits/types/error_t.h
1761-rw-r--r-- root root 110 ./usr/include/bits/types/__FILE.h
1762-rw-r--r-- root root 180 ./usr/include/bits/types/FILE.h
1763-rw-r--r-- root root 410 ./usr/include/bits/types/__fpos64_t.h
1764-rw-r--r-- root root 381 ./usr/include/bits/types/__fpos_t.h
1765-rw-r--r-- root root 8757 ./usr/include/bits/types.h
1766-rw-r--r-- root root 3546 ./usr/include/bits/typesizes.h
1767-rw-r--r-- root root 1722 ./usr/include/bits/types/__locale_t.h
1768-rw-r--r-- root root 983 ./usr/include/bits/types/locale_t.h
1769-rw-r--r-- root root 564 ./usr/include/bits/types/__mbstate_t.h
1770-rw-r--r-- root root 135 ./usr/include/bits/types/mbstate_t.h
1771-rw-r--r-- root root 2009 ./usr/include/bits/types/res_state.h
1772-rw-r--r-- root root 272 ./usr/include/bits/types/sig_atomic_t.h
1773-rw-r--r-- root root 1204 ./usr/include/bits/types/sigevent_t.h
1774-rw-r--r-- root root 3892 ./usr/include/bits/types/siginfo_t.h
1775-rw-r--r-- root root 206 ./usr/include/bits/types/__sigset_t.h
1776-rw-r--r-- root root 195 ./usr/include/bits/types/sigset_t.h
1777-rw-r--r-- root root 1148 ./usr/include/bits/types/__sigval_t.h
1778-rw-r--r-- root root 599 ./usr/include/bits/types/sigval_t.h
1779-rw-r--r-- root root 1062 ./usr/include/bits/types/stack_t.h
1780-rw-r--r-- root root 4104 ./usr/include/bits/types/struct_FILE.h
1781-rw-r--r-- root root 1066 ./usr/include/bits/types/struct_iovec.h
1782-rw-r--r-- root root 288 ./usr/include/bits/types/struct_itimerspec.h
1783-rw-r--r-- root root 274 ./usr/include/bits/types/struct_osockaddr.h
1784-rw-r--r-- root root 4121 ./usr/include/bits/types/struct_rusage.h
1785-rw-r--r-- root root 1073 ./usr/include/bits/types/struct_sched_param.h
1786-rw-r--r-- root root 1073 ./usr/include/bits/types/struct_sigstack.h
1787-rw-r--r-- root root 1897 ./usr/include/bits/types/struct_statx.h
1788-rw-r--r-- root root 1202 ./usr/include/bits/types/struct_statx_timestamp.h
1789-rw-r--r-- root root 728 ./usr/include/bits/types/struct_timespec.h
1790-rw-r--r-- root root 287 ./usr/include/bits/types/struct_timeval.h
1791-rw-r--r-- root root 760 ./usr/include/bits/types/struct_tm.h
1792-rw-r--r-- root root 159 ./usr/include/bits/types/timer_t.h
1793-rw-r--r-- root root 138 ./usr/include/bits/types/time_t.h
1794-rw-r--r-- root root 796 ./usr/include/bits/types/wint_t.h
1795-rw-r--r-- root root 1542 ./usr/include/bits/uintn-identity.h
1796-rw-r--r-- root root 1923 ./usr/include/bits/uio-ext.h
1797-rw-r--r-- root root 1385 ./usr/include/bits/uio_lim.h
1798-rw-r--r-- root root 1613 ./usr/include/bits/unistd_ext.h
1799-rw-r--r-- root root 13316 ./usr/include/bits/unistd.h
1800-rw-r--r-- root root 4067 ./usr/include/bits/utmp.h
1801-rw-r--r-- root root 3578 ./usr/include/bits/utmpx.h
1802-rw-r--r-- root root 1213 ./usr/include/bits/utsname.h
1803-rw-r--r-- root root 1697 ./usr/include/bits/waitflags.h
1804-rw-r--r-- root root 2287 ./usr/include/bits/waitstatus.h
1805-rw-r--r-- root root 20506 ./usr/include/bits/wchar2.h
1806-rw-r--r-- root root 1906 ./usr/include/bits/wchar.h
1807-rw-r--r-- root root 2251 ./usr/include/bits/wchar-ldbl.h
1808-rw-r--r-- root root 6307 ./usr/include/bits/wctype-wchar.h
1809-rw-r--r-- root root 442 ./usr/include/bits/wordsize.h
1810-rw-r--r-- root root 3858 ./usr/include/bits/xopen_lim.h
1811drwxr-xr-x root root 4096 ./usr/include/blkid
1812-rw-r--r-- root root 15478 ./usr/include/blkid/blkid.h
1813drwxr-xr-x root root 4096 ./usr/include/btrfs
1814-rw-r--r-- root root 5045 ./usr/include/btrfs/btrfsck.h
1815-rw-r--r-- root root 4670 ./usr/include/btrfs/btrfs-list.h
1816-rw-r--r-- root root 1095 ./usr/include/btrfs/crc32c.h
1817-rw-r--r-- root root 93730 ./usr/include/btrfs/ctree.h
1818-rw-r--r-- root root 3524 ./usr/include/btrfs/extent-cache.h
1819-rw-r--r-- root root 6507 ./usr/include/btrfs/extent_io.h
1820-rw-r--r-- root root 29359 ./usr/include/btrfs/ioctl.h
1821-rw-r--r-- root root 10965 ./usr/include/btrfs/kerncompat.h
1822-rw-r--r-- root root 14636 ./usr/include/btrfs/list.h
1823-rw-r--r-- root root 3343 ./usr/include/btrfs/radix-tree.h
1824-rw-r--r-- root root 2024 ./usr/include/btrfs/raid56.h
1825-rw-r--r-- root root 3902 ./usr/include/btrfs/rbtree.h
1826-rw-r--r-- root root 3090 ./usr/include/btrfs/send.h
1827-rw-r--r-- root root 2803 ./usr/include/btrfs/send-stream.h
1828-rw-r--r-- root root 3388 ./usr/include/btrfs/send-utils.h
1829-rw-r--r-- root root 1223 ./usr/include/btrfs/sizes.h
1830-rw-r--r-- root root 22942 ./usr/include/btrfsutil.h
1831-rw-r--r-- root root 363 ./usr/include/btrfs/version.h
1832-rw-r--r-- root root 1405 ./usr/include/byteswap.h
1833-rw-r--r-- root root 6240 ./usr/include/bzlib.h
1834drwxr-xr-x root root 4096 ./usr/include/c++
1835drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0
1836-rw-r--r-- root root 3045 ./usr/include/c++/10.1.0/algorithm
1837-rw-r--r-- root root 18236 ./usr/include/c++/10.1.0/any
1838-rw-r--r-- root root 13700 ./usr/include/c++/10.1.0/array
1839-rw-r--r-- root root 45341 ./usr/include/c++/10.1.0/atomic
1840drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/backward
1841-rw-r--r-- root root 10804 ./usr/include/c++/10.1.0/backward/auto_ptr.h
1842-rw-r--r-- root root 2491 ./usr/include/c++/10.1.0/backward/backward_warning.h
1843-rw-r--r-- root root 7167 ./usr/include/c++/10.1.0/backward/binders.h
1844-rw-r--r-- root root 4248 ./usr/include/c++/10.1.0/backward/hash_fun.h
1845-rw-r--r-- root root 17822 ./usr/include/c++/10.1.0/backward/hash_map
1846-rw-r--r-- root root 17323 ./usr/include/c++/10.1.0/backward/hash_set
1847-rw-r--r-- root root 33883 ./usr/include/c++/10.1.0/backward/hashtable.h
1848-rw-r--r-- root root 7454 ./usr/include/c++/10.1.0/backward/strstream
1849-rw-r--r-- root root 11044 ./usr/include/c++/10.1.0/bit
1850drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/bits
1851-rw-r--r-- root root 24547 ./usr/include/c++/10.1.0/bits/algorithmfwd.h
1852-rw-r--r-- root root 3293 ./usr/include/c++/10.1.0/bits/allocated_ptr.h
1853-rw-r--r-- root root 8984 ./usr/include/c++/10.1.0/bits/allocator.h
1854-rw-r--r-- root root 24105 ./usr/include/c++/10.1.0/bits/alloc_traits.h
1855-rw-r--r-- root root 51344 ./usr/include/c++/10.1.0/bits/atomic_base.h
1856-rw-r--r-- root root 9499 ./usr/include/c++/10.1.0/bits/atomic_futex.h
1857-rw-r--r-- root root 2352 ./usr/include/c++/10.1.0/bits/atomic_lockfree_defines.h
1858-rw-r--r-- root root 16074 ./usr/include/c++/10.1.0/bits/basic_ios.h
1859-rw-r--r-- root root 6083 ./usr/include/c++/10.1.0/bits/basic_ios.tcc
1860-rw-r--r-- root root 249154 ./usr/include/c++/10.1.0/bits/basic_string.h
1861-rw-r--r-- root root 54513 ./usr/include/c++/10.1.0/bits/basic_string.tcc
1862-rw-r--r-- root root 27182 ./usr/include/c++/10.1.0/bits/boost_concept_check.h
1863-rw-r--r-- root root 1474 ./usr/include/c++/10.1.0/bits/c++0x_warning.h
1864-rw-r--r-- root root 3435 ./usr/include/c++/10.1.0/bits/charconv.h
1865-rw-r--r-- root root 28509 ./usr/include/c++/10.1.0/bits/char_traits.h
1866-rw-r--r-- root root 25429 ./usr/include/c++/10.1.0/bits/codecvt.h
1867-rw-r--r-- root root 3423 ./usr/include/c++/10.1.0/bits/concept_check.h
1868-rw-r--r-- root root 12011 ./usr/include/c++/10.1.0/bits/cpp_type_traits.h
1869-rw-r--r-- root root 1811 ./usr/include/c++/10.1.0/bits/cxxabi_forced.h
1870-rw-r--r-- root root 2220 ./usr/include/c++/10.1.0/bits/cxxabi_init_exception.h
1871-rw-r--r-- root root 37325 ./usr/include/c++/10.1.0/bits/deque.tcc
1872-rw-r--r-- root root 12387 ./usr/include/c++/10.1.0/bits/enable_special_members.h
1873-rw-r--r-- root root 2037 ./usr/include/c++/10.1.0/bits/erase_if.h
1874-rw-r--r-- root root 45979 ./usr/include/c++/10.1.0/bitset
1875-rw-r--r-- root root 1645 ./usr/include/c++/10.1.0/bits/exception_defines.h
1876-rw-r--r-- root root 2483 ./usr/include/c++/10.1.0/bits/exception.h
1877-rw-r--r-- root root 6072 ./usr/include/c++/10.1.0/bits/exception_ptr.h
1878-rw-r--r-- root root 50386 ./usr/include/c++/10.1.0/bits/forward_list.h
1879-rw-r--r-- root root 13871 ./usr/include/c++/10.1.0/bits/forward_list.tcc
1880-rw-r--r-- root root 16405 ./usr/include/c++/10.1.0/bits/fs_dir.h
1881-rw-r--r-- root root 10267 ./usr/include/c++/10.1.0/bits/fs_fwd.h
1882-rw-r--r-- root root 9729 ./usr/include/c++/10.1.0/bits/fs_ops.h
1883-rw-r--r-- root root 38775 ./usr/include/c++/10.1.0/bits/fs_path.h
1884-rw-r--r-- root root 33663 ./usr/include/c++/10.1.0/bits/fstream.tcc
1885-rw-r--r-- root root 3433 ./usr/include/c++/10.1.0/bits/functexcept.h
1886-rw-r--r-- root root 8567 ./usr/include/c++/10.1.0/bits/functional_hash.h
1887-rw-r--r-- root root 7851 ./usr/include/c++/10.1.0/bits/gslice_array.h
1888-rw-r--r-- root root 5518 ./usr/include/c++/10.1.0/bits/gslice.h
1889-rw-r--r-- root root 2146 ./usr/include/c++/10.1.0/bits/hash_bytes.h
1890-rw-r--r-- root root 74752 ./usr/include/c++/10.1.0/bits/hashtable.h
1891-rw-r--r-- root root 67673 ./usr/include/c++/10.1.0/bits/hashtable_policy.h
1892-rw-r--r-- root root 7861 ./usr/include/c++/10.1.0/bits/indirect_array.h
1893-rw-r--r-- root root 2877 ./usr/include/c++/10.1.0/bits/int_limits.h
1894-rw-r--r-- root root 6025 ./usr/include/c++/10.1.0/bits/invoke.h
1895-rw-r--r-- root root 31179 ./usr/include/c++/10.1.0/bits/ios_base.h
1896-rw-r--r-- root root 31093 ./usr/include/c++/10.1.0/bits/istream.tcc
1897-rw-r--r-- root root 30948 ./usr/include/c++/10.1.0/bits/iterator_concepts.h
1898-rw-r--r-- root root 16968 ./usr/include/c++/10.1.0/bits/list.tcc
1899-rw-r--r-- root root 24950 ./usr/include/c++/10.1.0/bits/locale_classes.h
1900-rw-r--r-- root root 8375 ./usr/include/c++/10.1.0/bits/locale_classes.tcc
1901-rw-r--r-- root root 18801 ./usr/include/c++/10.1.0/bits/locale_conv.h
1902-rw-r--r-- root root 92321 ./usr/include/c++/10.1.0/bits/locale_facets.h
1903-rw-r--r-- root root 68980 ./usr/include/c++/10.1.0/bits/locale_facets_nonio.h
1904-rw-r--r-- root root 45280 ./usr/include/c++/10.1.0/bits/locale_facets_nonio.tcc
1905-rw-r--r-- root root 39548 ./usr/include/c++/10.1.0/bits/locale_facets.tcc
1906-rw-r--r-- root root 5941 ./usr/include/c++/10.1.0/bits/localefwd.h
1907-rw-r--r-- root root 7675 ./usr/include/c++/10.1.0/bits/mask_array.h
1908-rw-r--r-- root root 2487 ./usr/include/c++/10.1.0/bits/memoryfwd.h
1909-rw-r--r-- root root 6613 ./usr/include/c++/10.1.0/bits/move.h
1910-rw-r--r-- root root 4886 ./usr/include/c++/10.1.0/bits/nested_exception.h
1911-rw-r--r-- root root 8216 ./usr/include/c++/10.1.0/bits/node_handle.h
1912-rw-r--r-- root root 4002 ./usr/include/c++/10.1.0/bits/ostream_insert.h
1913-rw-r--r-- root root 12315 ./usr/include/c++/10.1.0/bits/ostream.tcc
1914-rw-r--r-- root root 7943 ./usr/include/c++/10.1.0/bits/parse_numbers.h
1915-rw-r--r-- root root 8465 ./usr/include/c++/10.1.0/bits/postypes.h
1916-rw-r--r-- root root 10153 ./usr/include/c++/10.1.0/bits/predefined_ops.h
1917-rw-r--r-- root root 6728 ./usr/include/c++/10.1.0/bits/ptr_traits.h
1918-rw-r--r-- root root 5053 ./usr/include/c++/10.1.0/bits/quoted_string.h
1919-rw-r--r-- root root 178118 ./usr/include/c++/10.1.0/bits/random.h
1920-rw-r--r-- root root 103405 ./usr/include/c++/10.1.0/bits/random.tcc
1921-rw-r--r-- root root 32001 ./usr/include/c++/10.1.0/bits/range_access.h
1922-rw-r--r-- root root 6516 ./usr/include/c++/10.1.0/bits/range_cmp.h
1923-rw-r--r-- root root 18319 ./usr/include/c++/10.1.0/bits/ranges_algobase.h
1924-rw-r--r-- root root 121079 ./usr/include/c++/10.1.0/bits/ranges_algo.h
1925-rw-r--r-- root root 18023 ./usr/include/c++/10.1.0/bits/ranges_uninitialized.h
1926-rw-r--r-- root root 13207 ./usr/include/c++/10.1.0/bits/refwrap.h
1927-rw-r--r-- root root 10738 ./usr/include/c++/10.1.0/bits/regex_automaton.h
1928-rw-r--r-- root root 7722 ./usr/include/c++/10.1.0/bits/regex_automaton.tcc
1929-rw-r--r-- root root 16481 ./usr/include/c++/10.1.0/bits/regex_compiler.h
1930-rw-r--r-- root root 18929 ./usr/include/c++/10.1.0/bits/regex_compiler.tcc
1931-rw-r--r-- root root 14729 ./usr/include/c++/10.1.0/bits/regex_constants.h
1932-rw-r--r-- root root 4904 ./usr/include/c++/10.1.0/bits/regex_error.h
1933-rw-r--r-- root root 7488 ./usr/include/c++/10.1.0/bits/regex_executor.h
1934-rw-r--r-- root root 18841 ./usr/include/c++/10.1.0/bits/regex_executor.tcc
1935-rw-r--r-- root root 102775 ./usr/include/c++/10.1.0/bits/regex.h
1936-rw-r--r-- root root 7088 ./usr/include/c++/10.1.0/bits/regex_scanner.h
1937-rw-r--r-- root root 15009 ./usr/include/c++/10.1.0/bits/regex_scanner.tcc
1938-rw-r--r-- root root 16524 ./usr/include/c++/10.1.0/bits/regex.tcc
1939-rw-r--r-- root root 9867 ./usr/include/c++/10.1.0/bits/shared_ptr_atomic.h
1940-rw-r--r-- root root 55312 ./usr/include/c++/10.1.0/bits/shared_ptr_base.h
1941-rw-r--r-- root root 30837 ./usr/include/c++/10.1.0/bits/shared_ptr.h
1942-rw-r--r-- root root 9578 ./usr/include/c++/10.1.0/bits/slice_array.h
1943-rw-r--r-- root root 47238 ./usr/include/c++/10.1.0/bits/specfun.h
1944-rw-r--r-- root root 10142 ./usr/include/c++/10.1.0/bits/sstream.tcc
1945-rw-r--r-- root root 3360 ./usr/include/c++/10.1.0/bits/std_abs.h
1946-rw-r--r-- root root 21612 ./usr/include/c++/10.1.0/bits/std_function.h
1947-rw-r--r-- root root 4767 ./usr/include/c++/10.1.0/bits/std_mutex.h
1948-rw-r--r-- root root 71744 ./usr/include/c++/10.1.0/bits/stl_algobase.h
1949-rw-r--r-- root root 214835 ./usr/include/c++/10.1.0/bits/stl_algo.h
1950-rw-r--r-- root root 34767 ./usr/include/c++/10.1.0/bits/stl_bvector.h
1951-rw-r--r-- root root 8521 ./usr/include/c++/10.1.0/bits/stl_construct.h
1952-rw-r--r-- root root 76807 ./usr/include/c++/10.1.0/bits/stl_deque.h
1953-rw-r--r-- root root 42293 ./usr/include/c++/10.1.0/bits/stl_function.h
1954-rw-r--r-- root root 20756 ./usr/include/c++/10.1.0/bits/stl_heap.h
1955-rw-r--r-- root root 8178 ./usr/include/c++/10.1.0/bits/stl_iterator_base_funcs.h
1956-rw-r--r-- root root 9660 ./usr/include/c++/10.1.0/bits/stl_iterator_base_types.h
1957-rw-r--r-- root root 69682 ./usr/include/c++/10.1.0/bits/stl_iterator.h
1958-rw-r--r-- root root 68748 ./usr/include/c++/10.1.0/bits/stl_list.h
1959-rw-r--r-- root root 54669 ./usr/include/c++/10.1.0/bits/stl_map.h
1960-rw-r--r-- root root 43510 ./usr/include/c++/10.1.0/bits/stl_multimap.h
1961-rw-r--r-- root root 37662 ./usr/include/c++/10.1.0/bits/stl_multiset.h
1962-rw-r--r-- root root 14600 ./usr/include/c++/10.1.0/bits/stl_numeric.h
1963-rw-r--r-- root root 20163 ./usr/include/c++/10.1.0/bits/stl_pair.h
1964-rw-r--r-- root root 25036 ./usr/include/c++/10.1.0/bits/stl_queue.h
1965-rw-r--r-- root root 3830 ./usr/include/c++/10.1.0/bits/stl_raw_storage_iter.h
1966-rw-r--r-- root root 4594 ./usr/include/c++/10.1.0/bits/stl_relops.h
1967-rw-r--r-- root root 37922 ./usr/include/c++/10.1.0/bits/stl_set.h
1968-rw-r--r-- root root 12684 ./usr/include/c++/10.1.0/bits/stl_stack.h
1969-rw-r--r-- root root 8623 ./usr/include/c++/10.1.0/bits/stl_tempbuf.h
1970-rw-r--r-- root root 74660 ./usr/include/c++/10.1.0/bits/stl_tree.h
1971-rw-r--r-- root root 33161 ./usr/include/c++/10.1.0/bits/stl_uninitialized.h
1972-rw-r--r-- root root 65919 ./usr/include/c++/10.1.0/bits/stl_vector.h
1973-rw-r--r-- root root 15462 ./usr/include/c++/10.1.0/bits/streambuf_iterator.h
1974-rw-r--r-- root root 4929 ./usr/include/c++/10.1.0/bits/streambuf.tcc
1975-rw-r--r-- root root 7694 ./usr/include/c++/10.1.0/bits/stream_iterator.h
1976-rw-r--r-- root root 2690 ./usr/include/c++/10.1.0/bits/stringfwd.h
1977-rw-r--r-- root root 6698 ./usr/include/c++/10.1.0/bits/string_view.tcc
1978-rw-r--r-- root root 10730 ./usr/include/c++/10.1.0/bits/uniform_int_dist.h
1979-rw-r--r-- root root 6090 ./usr/include/c++/10.1.0/bits/unique_lock.h
1980-rw-r--r-- root root 31291 ./usr/include/c++/10.1.0/bits/unique_ptr.h
1981-rw-r--r-- root root 76744 ./usr/include/c++/10.1.0/bits/unordered_map.h
1982-rw-r--r-- root root 60612 ./usr/include/c++/10.1.0/bits/unordered_set.h
1983-rw-r--r-- root root 6870 ./usr/include/c++/10.1.0/bits/uses_allocator.h
1984-rw-r--r-- root root 22839 ./usr/include/c++/10.1.0/bits/valarray_after.h
1985-rw-r--r-- root root 21295 ./usr/include/c++/10.1.0/bits/valarray_array.h
1986-rw-r--r-- root root 7254 ./usr/include/c++/10.1.0/bits/valarray_array.tcc
1987-rw-r--r-- root root 19142 ./usr/include/c++/10.1.0/bits/valarray_before.h
1988-rw-r--r-- root root 30870 ./usr/include/c++/10.1.0/bits/vector.tcc
1989-rw-r--r-- root root 1648 ./usr/include/c++/10.1.0/cassert
1990-rw-r--r-- root root 1335 ./usr/include/c++/10.1.0/ccomplex
1991-rw-r--r-- root root 2409 ./usr/include/c++/10.1.0/cctype
1992-rw-r--r-- root root 1770 ./usr/include/c++/10.1.0/cerrno
1993-rw-r--r-- root root 2051 ./usr/include/c++/10.1.0/cfenv
1994-rw-r--r-- root root 1889 ./usr/include/c++/10.1.0/cfloat
1995-rw-r--r-- root root 17991 ./usr/include/c++/10.1.0/charconv
1996-rw-r--r-- root root 38834 ./usr/include/c++/10.1.0/chrono
1997-rw-r--r-- root root 2157 ./usr/include/c++/10.1.0/cinttypes
1998-rw-r--r-- root root 1464 ./usr/include/c++/10.1.0/ciso646
1999-rw-r--r-- root root 1913 ./usr/include/c++/10.1.0/climits
2000-rw-r--r-- root root 1905 ./usr/include/c++/10.1.0/clocale
2001-rw-r--r-- root root 49130 ./usr/include/c++/10.1.0/cmath
2002-rw-r--r-- root root 5275 ./usr/include/c++/10.1.0/codecvt
2003-rw-r--r-- root root 27896 ./usr/include/c++/10.1.0/compare
2004-rw-r--r-- root root 56646 ./usr/include/c++/10.1.0/complex
2005-rw-r--r-- root root 1596 ./usr/include/c++/10.1.0/complex.h
2006-rw-r--r-- root root 12267 ./usr/include/c++/10.1.0/concepts
2007-rw-r--r-- root root 12993 ./usr/include/c++/10.1.0/condition_variable
2008-rw-r--r-- root root 7898 ./usr/include/c++/10.1.0/coroutine
2009-rw-r--r-- root root 1949 ./usr/include/c++/10.1.0/csetjmp
2010-rw-r--r-- root root 1855 ./usr/include/c++/10.1.0/csignal
2011-rw-r--r-- root root 1407 ./usr/include/c++/10.1.0/cstdalign
2012-rw-r--r-- root root 1868 ./usr/include/c++/10.1.0/cstdarg
2013-rw-r--r-- root root 1401 ./usr/include/c++/10.1.0/cstdbool
2014-rw-r--r-- root root 6274 ./usr/include/c++/10.1.0/cstddef
2015-rw-r--r-- root root 2335 ./usr/include/c++/10.1.0/cstdint
2016-rw-r--r-- root root 4439 ./usr/include/c++/10.1.0/cstdio
2017-rw-r--r-- root root 6325 ./usr/include/c++/10.1.0/cstdlib
2018-rw-r--r-- root root 3156 ./usr/include/c++/10.1.0/cstring
2019-rw-r--r-- root root 1360 ./usr/include/c++/10.1.0/ctgmath
2020-rw-r--r-- root root 2298 ./usr/include/c++/10.1.0/ctime
2021-rw-r--r-- root root 2210 ./usr/include/c++/10.1.0/cuchar
2022-rw-r--r-- root root 6542 ./usr/include/c++/10.1.0/cwchar
2023-rw-r--r-- root root 2793 ./usr/include/c++/10.1.0/cwctype
2024-rw-r--r-- root root 22011 ./usr/include/c++/10.1.0/cxxabi.h
2025drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/debug
2026-rw-r--r-- root root 12476 ./usr/include/c++/10.1.0/debug/array
2027-rw-r--r-- root root 2411 ./usr/include/c++/10.1.0/debug/assertions.h
2028-rw-r--r-- root root 11903 ./usr/include/c++/10.1.0/debug/bitset
2029-rw-r--r-- root root 5881 ./usr/include/c++/10.1.0/debug/debug.h
2030-rw-r--r-- root root 17979 ./usr/include/c++/10.1.0/debug/deque
2031-rw-r--r-- root root 16991 ./usr/include/c++/10.1.0/debug/formatter.h
2032-rw-r--r-- root root 27420 ./usr/include/c++/10.1.0/debug/forward_list
2033-rw-r--r-- root root 15612 ./usr/include/c++/10.1.0/debug/functions.h
2034-rw-r--r-- root root 9985 ./usr/include/c++/10.1.0/debug/helper_functions.h
2035-rw-r--r-- root root 25327 ./usr/include/c++/10.1.0/debug/list
2036-rw-r--r-- root root 20915 ./usr/include/c++/10.1.0/debug/macros.h
2037-rw-r--r-- root root 1656 ./usr/include/c++/10.1.0/debug/map
2038-rw-r--r-- root root 23035 ./usr/include/c++/10.1.0/debug/map.h
2039-rw-r--r-- root root 20301 ./usr/include/c++/10.1.0/debug/multimap.h
2040-rw-r--r-- root root 19200 ./usr/include/c++/10.1.0/debug/multiset.h
2041-rw-r--r-- root root 9279 ./usr/include/c++/10.1.0/debug/safe_base.h
2042-rw-r--r-- root root 3413 ./usr/include/c++/10.1.0/debug/safe_container.h
2043-rw-r--r-- root root 30112 ./usr/include/c++/10.1.0/debug/safe_iterator.h
2044-rw-r--r-- root root 16171 ./usr/include/c++/10.1.0/debug/safe_iterator.tcc
2045-rw-r--r-- root root 13739 ./usr/include/c++/10.1.0/debug/safe_local_iterator.h
2046-rw-r--r-- root root 2905 ./usr/include/c++/10.1.0/debug/safe_local_iterator.tcc
2047-rw-r--r-- root root 5096 ./usr/include/c++/10.1.0/debug/safe_sequence.h
2048-rw-r--r-- root root 5040 ./usr/include/c++/10.1.0/debug/safe_sequence.tcc
2049-rw-r--r-- root root 6895 ./usr/include/c++/10.1.0/debug/safe_unordered_base.h
2050-rw-r--r-- root root 3866 ./usr/include/c++/10.1.0/debug/safe_unordered_container.h
2051-rw-r--r-- root root 3263 ./usr/include/c++/10.1.0/debug/safe_unordered_container.tcc
2052-rw-r--r-- root root 1620 ./usr/include/c++/10.1.0/debug/set
2053-rw-r--r-- root root 19199 ./usr/include/c++/10.1.0/debug/set.h
2054-rw-r--r-- root root 4542 ./usr/include/c++/10.1.0/debug/stl_iterator.h
2055-rw-r--r-- root root 36471 ./usr/include/c++/10.1.0/debug/string
2056-rw-r--r-- root root 41394 ./usr/include/c++/10.1.0/debug/unordered_map
2057-rw-r--r-- root root 35429 ./usr/include/c++/10.1.0/debug/unordered_set
2058-rw-r--r-- root root 23523 ./usr/include/c++/10.1.0/debug/vector
2059drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/decimal
2060-rw-r--r-- root root 17636 ./usr/include/c++/10.1.0/decimal/decimal
2061-rw-r--r-- root root 16999 ./usr/include/c++/10.1.0/decimal/decimal.h
2062-rw-r--r-- root root 3973 ./usr/include/c++/10.1.0/deque
2063-rw-r--r-- root root 4848 ./usr/include/c++/10.1.0/exception
2064-rw-r--r-- root root 1803 ./usr/include/c++/10.1.0/execution
2065drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/experimental
2066-rw-r--r-- root root 3688 ./usr/include/c++/10.1.0/experimental/algorithm
2067-rw-r--r-- root root 16010 ./usr/include/c++/10.1.0/experimental/any
2068-rw-r--r-- root root 3371 ./usr/include/c++/10.1.0/experimental/array
2069drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/experimental/bits
2070-rw-r--r-- root root 10799 ./usr/include/c++/10.1.0/experimental/bits/fs_dir.h
2071-rw-r--r-- root root 8524 ./usr/include/c++/10.1.0/experimental/bits/fs_fwd.h
2072-rw-r--r-- root root 9340 ./usr/include/c++/10.1.0/experimental/bits/fs_ops.h
2073-rw-r--r-- root root 36768 ./usr/include/c++/10.1.0/experimental/bits/fs_path.h
2074-rw-r--r-- root root 2227 ./usr/include/c++/10.1.0/experimental/bits/lfts_config.h
2075-rw-r--r-- root root 4814 ./usr/include/c++/10.1.0/experimental/bits/net.h
2076-rw-r--r-- root root 20205 ./usr/include/c++/10.1.0/experimental/bits/shared_ptr.h
2077-rw-r--r-- root root 6816 ./usr/include/c++/10.1.0/experimental/bits/string_view.tcc
2078-rw-r--r-- root root 28719 ./usr/include/c++/10.1.0/experimental/buffer
2079-rw-r--r-- root root 1960 ./usr/include/c++/10.1.0/experimental/chrono
2080-rw-r--r-- root root 2296 ./usr/include/c++/10.1.0/experimental/deque
2081-rw-r--r-- root root 55081 ./usr/include/c++/10.1.0/experimental/executor
2082-rw-r--r-- root root 1589 ./usr/include/c++/10.1.0/experimental/filesystem
2083-rw-r--r-- root root 2367 ./usr/include/c++/10.1.0/experimental/forward_list
2084-rw-r--r-- root root 12311 ./usr/include/c++/10.1.0/experimental/functional
2085-rw-r--r-- root root 65288 ./usr/include/c++/10.1.0/experimental/internet
2086-rw-r--r-- root root 21331 ./usr/include/c++/10.1.0/experimental/io_context
2087-rw-r--r-- root root 3534 ./usr/include/c++/10.1.0/experimental/iterator
2088-rw-r--r-- root root 2265 ./usr/include/c++/10.1.0/experimental/list
2089-rw-r--r-- root root 2594 ./usr/include/c++/10.1.0/experimental/map
2090-rw-r--r-- root root 6056 ./usr/include/c++/10.1.0/experimental/memory
2091-rw-r--r-- root root 17388 ./usr/include/c++/10.1.0/experimental/memory_resource
2092-rw-r--r-- root root 1542 ./usr/include/c++/10.1.0/experimental/net
2093-rw-r--r-- root root 3744 ./usr/include/c++/10.1.0/experimental/netfwd
2094-rw-r--r-- root root 2858 ./usr/include/c++/10.1.0/experimental/numeric
2095-rw-r--r-- root root 26832 ./usr/include/c++/10.1.0/experimental/optional
2096-rw-r--r-- root root 15335 ./usr/include/c++/10.1.0/experimental/propagate_const
2097-rw-r--r-- root root 2499 ./usr/include/c++/10.1.0/experimental/random
2098-rw-r--r-- root root 2438 ./usr/include/c++/10.1.0/experimental/ratio
2099-rw-r--r-- root root 2121 ./usr/include/c++/10.1.0/experimental/regex
2100-rw-r--r-- root root 2471 ./usr/include/c++/10.1.0/experimental/set
2101-rw-r--r-- root root 76228 ./usr/include/c++/10.1.0/experimental/socket
2102-rw-r--r-- root root 2699 ./usr/include/c++/10.1.0/experimental/source_location
2103-rw-r--r-- root root 2920 ./usr/include/c++/10.1.0/experimental/string
2104-rw-r--r-- root root 22662 ./usr/include/c++/10.1.0/experimental/string_view
2105-rw-r--r-- root root 2045 ./usr/include/c++/10.1.0/experimental/system_error
2106-rw-r--r-- root root 5794 ./usr/include/c++/10.1.0/experimental/timer
2107-rw-r--r-- root root 2472 ./usr/include/c++/10.1.0/experimental/tuple
2108-rw-r--r-- root root 11221 ./usr/include/c++/10.1.0/experimental/type_traits
2109-rw-r--r-- root root 2845 ./usr/include/c++/10.1.0/experimental/unordered_map
2110-rw-r--r-- root root 2728 ./usr/include/c++/10.1.0/experimental/unordered_set
2111-rw-r--r-- root root 1657 ./usr/include/c++/10.1.0/experimental/utility
2112-rw-r--r-- root root 2355 ./usr/include/c++/10.1.0/experimental/vector
2113drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext
2114-rw-r--r-- root root 19255 ./usr/include/c++/10.1.0/ext/algorithm
2115-rw-r--r-- root root 3972 ./usr/include/c++/10.1.0/ext/aligned_buffer.h
2116-rw-r--r-- root root 6139 ./usr/include/c++/10.1.0/ext/alloc_traits.h
2117-rw-r--r-- root root 3477 ./usr/include/c++/10.1.0/ext/atomicity.h
2118-rw-r--r-- root root 32193 ./usr/include/c++/10.1.0/ext/bitmap_allocator.h
2119-rw-r--r-- root root 4447 ./usr/include/c++/10.1.0/ext/cast.h
2120-rw-r--r-- root root 6570 ./usr/include/c++/10.1.0/ext/cmath
2121-rw-r--r-- root root 16353 ./usr/include/c++/10.1.0/ext/codecvt_specializations.h
2122-rw-r--r-- root root 7542 ./usr/include/c++/10.1.0/ext/concurrence.h
2123-rw-r--r-- root root 5881 ./usr/include/c++/10.1.0/ext/debug_allocator.h
2124-rw-r--r-- root root 2247 ./usr/include/c++/10.1.0/ext/enc_filebuf.h
2125-rw-r--r-- root root 6277 ./usr/include/c++/10.1.0/ext/extptr_allocator.h
2126-rw-r--r-- root root 14172 ./usr/include/c++/10.1.0/ext/functional
2127-rw-r--r-- root root 17822 ./usr/include/c++/10.1.0/ext/hash_map
2128-rw-r--r-- root root 17323 ./usr/include/c++/10.1.0/ext/hash_set
2129-rw-r--r-- root root 4031 ./usr/include/c++/10.1.0/ext/iterator
2130-rw-r--r-- root root 5696 ./usr/include/c++/10.1.0/ext/malloc_allocator.h
2131-rw-r--r-- root root 7173 ./usr/include/c++/10.1.0/ext/memory
2132-rw-r--r-- root root 23628 ./usr/include/c++/10.1.0/ext/mt_allocator.h
2133-rw-r--r-- root root 5587 ./usr/include/c++/10.1.0/ext/new_allocator.h
2134-rw-r--r-- root root 4739 ./usr/include/c++/10.1.0/ext/numeric
2135-rw-r--r-- root root 4570 ./usr/include/c++/10.1.0/ext/numeric_traits.h
2136drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds
2137-rw-r--r-- root root 30110 ./usr/include/c++/10.1.0/ext/pb_ds/assoc_container.hpp
2138drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail
2139drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_
2140-rw-r--r-- root root 9027 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
2141-rw-r--r-- root root 4338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
2142-rw-r--r-- root root 4222 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
2143-rw-r--r-- root root 2574 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
2144-rw-r--r-- root root 2802 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
2145-rw-r--r-- root root 2767 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
2146-rw-r--r-- root root 5537 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
2147-rw-r--r-- root root 2630 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
2148-rw-r--r-- root root 2114 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
2149-rw-r--r-- root root 5011 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
2150-rw-r--r-- root root 2303 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
2151-rw-r--r-- root root 4363 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
2152-rw-r--r-- root root 1935 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
2153-rw-r--r-- root root 6133 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
2154-rw-r--r-- root root 4956 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
2155-rw-r--r-- root root 2480 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
2156drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_
2157drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_
2158-rw-r--r-- root root 6185 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
2159-rw-r--r-- root root 2721 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
2160-rw-r--r-- root root 3501 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
2161-rw-r--r-- root root 4515 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
2162-rw-r--r-- root root 2378 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
2163-rw-r--r-- root root 5304 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
2164-rw-r--r-- root root 5398 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
2165-rw-r--r-- root root 3922 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
2166-rw-r--r-- root root 2184 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
2167-rw-r--r-- root root 1930 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
2168drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_
2169-rw-r--r-- root root 12468 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
2170-rw-r--r-- root root 5539 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
2171-rw-r--r-- root root 8104 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
2172-rw-r--r-- root root 2952 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
2173-rw-r--r-- root root 4712 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
2174-rw-r--r-- root root 2132 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
2175-rw-r--r-- root root 5514 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
2176-rw-r--r-- root root 3548 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
2177-rw-r--r-- root root 5921 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
2178-rw-r--r-- root root 8961 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
2179-rw-r--r-- root root 1938 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
2180-rw-r--r-- root root 2942 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
2181-rw-r--r-- root root 4223 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
2182-rw-r--r-- root root 4040 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
2183-rw-r--r-- root root 6374 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp
2184drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy
2185-rw-r--r-- root root 4020 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp
2186-rw-r--r-- root root 2379 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
2187-rw-r--r-- root root 3254 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/traits.hpp
2188drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_
2189-rw-r--r-- root root 20071 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
2190-rw-r--r-- root root 2798 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
2191-rw-r--r-- root root 2874 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
2192-rw-r--r-- root root 5824 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
2193-rw-r--r-- root root 2259 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
2194-rw-r--r-- root root 2339 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
2195-rw-r--r-- root root 2726 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
2196-rw-r--r-- root root 2033 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
2197-rw-r--r-- root root 2181 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
2198-rw-r--r-- root root 2987 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
2199-rw-r--r-- root root 3278 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
2200-rw-r--r-- root root 3297 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
2201-rw-r--r-- root root 3258 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
2202-rw-r--r-- root root 2518 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
2203-rw-r--r-- root root 1779 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
2204-rw-r--r-- root root 3163 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
2205-rw-r--r-- root root 1896 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
2206-rw-r--r-- root root 2651 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
2207-rw-r--r-- root root 2707 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
2208-rw-r--r-- root root 2697 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
2209-rw-r--r-- root root 2514 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
2210-rw-r--r-- root root 4095 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
2211-rw-r--r-- root root 2275 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
2212-rw-r--r-- root root 2307 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
2213-rw-r--r-- root root 2161 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
2214-rw-r--r-- root root 2396 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
2215-rw-r--r-- root root 2772 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cond_dealtor.hpp
2216-rw-r--r-- root root 13120 ./usr/include/c++/10.1.0/ext/pb_ds/detail/container_base_dispatch.hpp
2217-rw-r--r-- root root 8697 ./usr/include/c++/10.1.0/ext/pb_ds/detail/debug_map_base.hpp
2218drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn
2219-rw-r--r-- root root 2330 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
2220-rw-r--r-- root root 3739 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
2221drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_
2222-rw-r--r-- root root 6639 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
2223-rw-r--r-- root root 2235 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
2224-rw-r--r-- root root 2302 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
2225-rw-r--r-- root root 2207 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
2226-rw-r--r-- root root 2538 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
2227-rw-r--r-- root root 2678 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
2228-rw-r--r-- root root 3237 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
2229-rw-r--r-- root root 2918 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
2230-rw-r--r-- root root 2952 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
2231-rw-r--r-- root root 2511 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
2232-rw-r--r-- root root 1950 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
2233-rw-r--r-- root root 1780 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
2234-rw-r--r-- root root 20441 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
2235-rw-r--r-- root root 2160 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
2236-rw-r--r-- root root 1896 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
2237-rw-r--r-- root root 3810 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
2238-rw-r--r-- root root 4118 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
2239-rw-r--r-- root root 2652 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
2240-rw-r--r-- root root 2693 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
2241-rw-r--r-- root root 4190 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
2242-rw-r--r-- root root 2651 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
2243-rw-r--r-- root root 2684 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
2244-rw-r--r-- root root 2457 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
2245drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn
2246-rw-r--r-- root root 2137 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
2247-rw-r--r-- root root 2127 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
2248-rw-r--r-- root root 1946 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
2249-rw-r--r-- root root 3290 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
2250-rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
2251-rw-r--r-- root root 2009 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
2252-rw-r--r-- root root 1953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
2253-rw-r--r-- root root 10543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
2254-rw-r--r-- root root 10256 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
2255-rw-r--r-- root root 2291 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
2256-rw-r--r-- root root 2469 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
2257-rw-r--r-- root root 2598 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
2258-rw-r--r-- root root 2487 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
2259drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_
2260-rw-r--r-- root root 4924 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
2261-rw-r--r-- root root 4088 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
2262-rw-r--r-- root root 4108 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
2263-rw-r--r-- root root 3992 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
2264-rw-r--r-- root root 2158 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
2265-rw-r--r-- root root 5234 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
2266-rw-r--r-- root root 2588 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
2267-rw-r--r-- root root 8182 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
2268-rw-r--r-- root root 3240 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
2269-rw-r--r-- root root 4397 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
2270-rw-r--r-- root root 1960 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
2271-rw-r--r-- root root 2848 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
2272drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_
2273-rw-r--r-- root root 3617 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
2274-rw-r--r-- root root 2128 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
2275-rw-r--r-- root root 2117 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
2276-rw-r--r-- root root 3515 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
2277-rw-r--r-- root root 2894 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
2278-rw-r--r-- root root 2126 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
2279-rw-r--r-- root root 3543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
2280-rw-r--r-- root root 2547 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
2281-rw-r--r-- root root 10551 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
2282-rw-r--r-- root root 2061 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
2283drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy
2284-rw-r--r-- root root 2850 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
2285-rw-r--r-- root root 2672 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
2286drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_
2287-rw-r--r-- root root 6916 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
2288-rw-r--r-- root root 2851 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
2289-rw-r--r-- root root 5014 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
2290-rw-r--r-- root root 2136 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
2291-rw-r--r-- root root 2306 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
2292-rw-r--r-- root root 3394 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
2293-rw-r--r-- root root 8638 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
2294-rw-r--r-- root root 15509 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
2295-rw-r--r-- root root 1920 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
2296-rw-r--r-- root root 3807 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
2297-rw-r--r-- root root 4562 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp
2298drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_
2299-rw-r--r-- root root 2539 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
2300-rw-r--r-- root root 2029 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
2301-rw-r--r-- root root 7224 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
2302-rw-r--r-- root root 1970 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
2303-rw-r--r-- root root 2980 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
2304-rw-r--r-- root root 5500 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
2305-rw-r--r-- root root 3739 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
2306drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_
2307-rw-r--r-- root root 5745 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
2308-rw-r--r-- root root 3824 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
2309-rw-r--r-- root root 7978 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
2310-rw-r--r-- root root 7908 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
2311-rw-r--r-- root root 2108 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
2312-rw-r--r-- root root 14508 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
2313-rw-r--r-- root root 3513 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
2314-rw-r--r-- root root 36857 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
2315-rw-r--r-- root root 16777 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
2316-rw-r--r-- root root 2248 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
2317-rw-r--r-- root root 2953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
2318-rw-r--r-- root root 4363 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
2319-rw-r--r-- root root 7758 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
2320-rw-r--r-- root root 6718 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
2321-rw-r--r-- root root 3434 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
2322-rw-r--r-- root root 6305 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/traits.hpp
2323-rw-r--r-- root root 2075 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
2324-rw-r--r-- root root 4140 ./usr/include/c++/10.1.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
2325drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_
2326-rw-r--r-- root root 2816 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
2327-rw-r--r-- root root 2794 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
2328-rw-r--r-- root root 7084 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
2329-rw-r--r-- root root 1703 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
2330-rw-r--r-- root root 1874 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
2331-rw-r--r-- root root 3900 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
2332-rw-r--r-- root root 3671 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/node.hpp
2333-rw-r--r-- root root 7962 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
2334-rw-r--r-- root root 7894 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
2335-rw-r--r-- root root 3283 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp
2336drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_
2337-rw-r--r-- root root 2500 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
2338-rw-r--r-- root root 3571 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
2339-rw-r--r-- root root 2922 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
2340-rw-r--r-- root root 4270 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
2341-rw-r--r-- root root 5303 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
2342-rw-r--r-- root root 6199 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
2343-rw-r--r-- root root 2451 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
2344-rw-r--r-- root root 1937 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
2345drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy
2346-rw-r--r-- root root 4932 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
2347-rw-r--r-- root root 2805 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
2348-rw-r--r-- root root 7785 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
2349-rw-r--r-- root root 2970 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
2350-rw-r--r-- root root 6172 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
2351-rw-r--r-- root root 6316 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
2352-rw-r--r-- root root 3578 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
2353-rw-r--r-- root root 3914 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
2354-rw-r--r-- root root 2427 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
2355drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_
2356-rw-r--r-- root root 2880 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
2357-rw-r--r-- root root 2496 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
2358-rw-r--r-- root root 4302 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
2359-rw-r--r-- root root 3352 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
2360-rw-r--r-- root root 1689 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
2361-rw-r--r-- root root 3386 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
2362-rw-r--r-- root root 3587 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/node.hpp
2363-rw-r--r-- root root 8082 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
2364-rw-r--r-- root root 9307 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
2365-rw-r--r-- root root 3667 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
2366-rw-r--r-- root root 3351 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/traits.hpp
2367-rw-r--r-- root root 5031 ./usr/include/c++/10.1.0/ext/pb_ds/detail/standard_policies.hpp
2368drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_
2369-rw-r--r-- root root 2979 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
2370-rw-r--r-- root root 3899 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
2371-rw-r--r-- root root 6088 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
2372-rw-r--r-- root root 1985 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
2373-rw-r--r-- root root 7516 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
2374-rw-r--r-- root root 3188 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
2375-rw-r--r-- root root 8389 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
2376-rw-r--r-- root root 1995 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
2377drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy
2378-rw-r--r-- root root 3338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
2379-rw-r--r-- root root 3756 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
2380-rw-r--r-- root root 2346 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
2381-rw-r--r-- root root 5153 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_trace_base.hpp
2382drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy
2383-rw-r--r-- root root 3338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
2384-rw-r--r-- root root 4734 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
2385-rw-r--r-- root root 4544 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
2386-rw-r--r-- root root 2666 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
2387-rw-r--r-- root root 2348 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
2388-rw-r--r-- root root 5847 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
2389-rw-r--r-- root root 3084 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
2390-rw-r--r-- root root 6450 ./usr/include/c++/10.1.0/ext/pb_ds/detail/types_traits.hpp
2391-rw-r--r-- root root 4318 ./usr/include/c++/10.1.0/ext/pb_ds/detail/type_utils.hpp
2392drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator
2393-rw-r--r-- root root 3517 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
2394-rw-r--r-- root root 3966 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp
2395-rw-r--r-- root root 3975 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
2396-rw-r--r-- root root 3742 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
2397-rw-r--r-- root root 2988 ./usr/include/c++/10.1.0/ext/pb_ds/exception.hpp
2398-rw-r--r-- root root 16815 ./usr/include/c++/10.1.0/ext/pb_ds/hash_policy.hpp
2399-rw-r--r-- root root 4318 ./usr/include/c++/10.1.0/ext/pb_ds/list_update_policy.hpp
2400-rw-r--r-- root root 5444 ./usr/include/c++/10.1.0/ext/pb_ds/priority_queue.hpp
2401-rw-r--r-- root root 12268 ./usr/include/c++/10.1.0/ext/pb_ds/tag_and_trait.hpp
2402-rw-r--r-- root root 5569 ./usr/include/c++/10.1.0/ext/pb_ds/tree_policy.hpp
2403-rw-r--r-- root root 12201 ./usr/include/c++/10.1.0/ext/pb_ds/trie_policy.hpp
2404-rw-r--r-- root root 5556 ./usr/include/c++/10.1.0/ext/pod_char_traits.h
2405-rw-r--r-- root root 20480 ./usr/include/c++/10.1.0/ext/pointer.h
2406-rw-r--r-- root root 8965 ./usr/include/c++/10.1.0/ext/pool_allocator.h
2407-rw-r--r-- root root 113176 ./usr/include/c++/10.1.0/ext/random
2408-rw-r--r-- root root 60330 ./usr/include/c++/10.1.0/ext/random.tcc
2409-rw-r--r-- root root 3278 ./usr/include/c++/10.1.0/ext/rb_tree
2410-rw-r--r-- root root 23794 ./usr/include/c++/10.1.0/ext/rc_string_base.h
2411-rw-r--r-- root root 88598 ./usr/include/c++/10.1.0/ext/rope
2412-rw-r--r-- root root 48860 ./usr/include/c++/10.1.0/ext/ropeimpl.h
2413-rw-r--r-- root root 29900 ./usr/include/c++/10.1.0/ext/slist
2414-rw-r--r-- root root 16393 ./usr/include/c++/10.1.0/ext/sso_string_base.h
2415-rw-r--r-- root root 5670 ./usr/include/c++/10.1.0/ext/stdio_filebuf.h
2416-rw-r--r-- root root 8782 ./usr/include/c++/10.1.0/ext/stdio_sync_filebuf.h
2417-rw-r--r-- root root 3597 ./usr/include/c++/10.1.0/ext/string_conversions.h
2418-rw-r--r-- root root 25222 ./usr/include/c++/10.1.0/ext/throw_allocator.h
2419-rw-r--r-- root root 16480 ./usr/include/c++/10.1.0/ext/typelist.h
2420-rw-r--r-- root root 5914 ./usr/include/c++/10.1.0/ext/type_traits.h
2421-rw-r--r-- root root 3178 ./usr/include/c++/10.1.0/ext/vstring_fwd.h
2422-rw-r--r-- root root 110624 ./usr/include/c++/10.1.0/ext/vstring.h
2423-rw-r--r-- root root 23614 ./usr/include/c++/10.1.0/ext/vstring.tcc
2424-rw-r--r-- root root 5885 ./usr/include/c++/10.1.0/ext/vstring_util.h
2425-rw-r--r-- root root 2020 ./usr/include/c++/10.1.0/fenv.h
2426-rw-r--r-- root root 1645 ./usr/include/c++/10.1.0/filesystem
2427-rw-r--r-- root root 2690 ./usr/include/c++/10.1.0/forward_list
2428-rw-r--r-- root root 40559 ./usr/include/c++/10.1.0/fstream
2429-rw-r--r-- root root 40189 ./usr/include/c++/10.1.0/functional
2430-rw-r--r-- root root 50826 ./usr/include/c++/10.1.0/future
2431-rw-r--r-- root root 3038 ./usr/include/c++/10.1.0/initializer_list
2432-rw-r--r-- root root 16547 ./usr/include/c++/10.1.0/iomanip
2433-rw-r--r-- root root 1601 ./usr/include/c++/10.1.0/ios
2434-rw-r--r-- root root 6918 ./usr/include/c++/10.1.0/iosfwd
2435-rw-r--r-- root root 2695 ./usr/include/c++/10.1.0/iostream
2436-rw-r--r-- root root 32843 ./usr/include/c++/10.1.0/istream
2437-rw-r--r-- root root 2751 ./usr/include/c++/10.1.0/iterator
2438-rw-r--r-- root root 71808 ./usr/include/c++/10.1.0/limits
2439-rw-r--r-- root root 3657 ./usr/include/c++/10.1.0/list
2440-rw-r--r-- root root 1488 ./usr/include/c++/10.1.0/locale
2441-rw-r--r-- root root 3929 ./usr/include/c++/10.1.0/map
2442-rw-r--r-- root root 4573 ./usr/include/c++/10.1.0/math.h
2443-rw-r--r-- root root 13663 ./usr/include/c++/10.1.0/memory
2444-rw-r--r-- root root 20624 ./usr/include/c++/10.1.0/memory_resource
2445-rw-r--r-- root root 19755 ./usr/include/c++/10.1.0/mutex
2446-rw-r--r-- root root 8199 ./usr/include/c++/10.1.0/new
2447-rw-r--r-- root root 6220 ./usr/include/c++/10.1.0/numbers
2448-rw-r--r-- root root 25090 ./usr/include/c++/10.1.0/numeric
2449-rw-r--r-- root root 38703 ./usr/include/c++/10.1.0/optional
2450-rw-r--r-- root root 24826 ./usr/include/c++/10.1.0/ostream
2451drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/parallel
2452-rw-r--r-- root root 18259 ./usr/include/c++/10.1.0/parallel/algobase.h
2453-rw-r--r-- root root 80136 ./usr/include/c++/10.1.0/parallel/algo.h
2454-rw-r--r-- root root 1381 ./usr/include/c++/10.1.0/parallel/algorithm
2455-rw-r--r-- root root 32306 ./usr/include/c++/10.1.0/parallel/algorithmfwd.h
2456-rw-r--r-- root root 16952 ./usr/include/c++/10.1.0/parallel/balanced_quicksort.h
2457-rw-r--r-- root root 12373 ./usr/include/c++/10.1.0/parallel/base.h
2458-rw-r--r-- root root 1586 ./usr/include/c++/10.1.0/parallel/basic_iterator.h
2459-rw-r--r-- root root 2235 ./usr/include/c++/10.1.0/parallel/checkers.h
2460-rw-r--r-- root root 3790 ./usr/include/c++/10.1.0/parallel/compatibility.h
2461-rw-r--r-- root root 2871 ./usr/include/c++/10.1.0/parallel/compiletime_settings.h
2462-rw-r--r-- root root 3356 ./usr/include/c++/10.1.0/parallel/equally_split.h
2463-rw-r--r-- root root 3543 ./usr/include/c++/10.1.0/parallel/features.h
2464-rw-r--r-- root root 13591 ./usr/include/c++/10.1.0/parallel/find.h
2465-rw-r--r-- root root 6992 ./usr/include/c++/10.1.0/parallel/find_selectors.h
2466-rw-r--r-- root root 3947 ./usr/include/c++/10.1.0/parallel/for_each.h
2467-rw-r--r-- root root 10565 ./usr/include/c++/10.1.0/parallel/for_each_selectors.h
2468-rw-r--r-- root root 5678 ./usr/include/c++/10.1.0/parallel/iterator.h
2469-rw-r--r-- root root 6542 ./usr/include/c++/10.1.0/parallel/list_partition.h
2470-rw-r--r-- root root 28592 ./usr/include/c++/10.1.0/parallel/losertree.h
2471-rw-r--r-- root root 9578 ./usr/include/c++/10.1.0/parallel/merge.h
2472-rw-r--r-- root root 22073 ./usr/include/c++/10.1.0/parallel/multiseq_selection.h
2473-rw-r--r-- root root 70545 ./usr/include/c++/10.1.0/parallel/multiway_merge.h
2474-rw-r--r-- root root 15281 ./usr/include/c++/10.1.0/parallel/multiway_mergesort.h
2475-rw-r--r-- root root 20717 ./usr/include/c++/10.1.0/parallel/numeric
2476-rw-r--r-- root root 7506 ./usr/include/c++/10.1.0/parallel/numericfwd.h
2477-rw-r--r-- root root 4031 ./usr/include/c++/10.1.0/parallel/omp_loop.h
2478-rw-r--r-- root root 4104 ./usr/include/c++/10.1.0/parallel/omp_loop_static.h
2479-rw-r--r-- root root 1576 ./usr/include/c++/10.1.0/parallel/parallel.h
2480-rw-r--r-- root root 4552 ./usr/include/c++/10.1.0/parallel/par_loop.h
2481-rw-r--r-- root root 7474 ./usr/include/c++/10.1.0/parallel/partial_sum.h
2482-rw-r--r-- root root 14961 ./usr/include/c++/10.1.0/parallel/partition.h
2483-rw-r--r-- root root 5542 ./usr/include/c++/10.1.0/parallel/queue.h
2484-rw-r--r-- root root 6126 ./usr/include/c++/10.1.0/parallel/quicksort.h
2485-rw-r--r-- root root 4227 ./usr/include/c++/10.1.0/parallel/random_number.h
2486-rw-r--r-- root root 18675 ./usr/include/c++/10.1.0/parallel/random_shuffle.h
2487-rw-r--r-- root root 5391 ./usr/include/c++/10.1.0/parallel/search.h
2488-rw-r--r-- root root 14590 ./usr/include/c++/10.1.0/parallel/set_operations.h
2489-rw-r--r-- root root 12462 ./usr/include/c++/10.1.0/parallel/settings.h
2490-rw-r--r-- root root 7709 ./usr/include/c++/10.1.0/parallel/sort.h
2491-rw-r--r-- root root 5982 ./usr/include/c++/10.1.0/parallel/tags.h
2492-rw-r--r-- root root 3716 ./usr/include/c++/10.1.0/parallel/types.h
2493-rw-r--r-- root root 6165 ./usr/include/c++/10.1.0/parallel/unique_copy.h
2494-rw-r--r-- root root 9610 ./usr/include/c++/10.1.0/parallel/workstealing.h
2495drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/pstl
2496-rw-r--r-- root root 68340 ./usr/include/c++/10.1.0/pstl/algorithm_fwd.h
2497-rw-r--r-- root root 172216 ./usr/include/c++/10.1.0/pstl/algorithm_impl.h
2498-rw-r--r-- root root 3694 ./usr/include/c++/10.1.0/pstl/execution_defs.h
2499-rw-r--r-- root root 4834 ./usr/include/c++/10.1.0/pstl/execution_impl.h
2500-rw-r--r-- root root 32278 ./usr/include/c++/10.1.0/pstl/glue_algorithm_defs.h
2501-rw-r--r-- root root 64874 ./usr/include/c++/10.1.0/pstl/glue_algorithm_impl.h
2502-rw-r--r-- root root 1549 ./usr/include/c++/10.1.0/pstl/glue_execution_defs.h
2503-rw-r--r-- root root 3865 ./usr/include/c++/10.1.0/pstl/glue_memory_defs.h
2504-rw-r--r-- root root 19574 ./usr/include/c++/10.1.0/pstl/glue_memory_impl.h
2505-rw-r--r-- root root 6620 ./usr/include/c++/10.1.0/pstl/glue_numeric_defs.h
2506-rw-r--r-- root root 11628 ./usr/include/c++/10.1.0/pstl/glue_numeric_impl.h
2507-rw-r--r-- root root 1997 ./usr/include/c++/10.1.0/pstl/memory_impl.h
2508-rw-r--r-- root root 7929 ./usr/include/c++/10.1.0/pstl/numeric_fwd.h
2509-rw-r--r-- root root 18748 ./usr/include/c++/10.1.0/pstl/numeric_impl.h
2510-rw-r--r-- root root 718 ./usr/include/c++/10.1.0/pstl/parallel_backend.h
2511-rw-r--r-- root root 4084 ./usr/include/c++/10.1.0/pstl/parallel_backend_serial.h
2512-rw-r--r-- root root 26379 ./usr/include/c++/10.1.0/pstl/parallel_backend_tbb.h
2513-rw-r--r-- root root 5602 ./usr/include/c++/10.1.0/pstl/parallel_backend_utils.h
2514-rw-r--r-- root root 4110 ./usr/include/c++/10.1.0/pstl/parallel_impl.h
2515-rw-r--r-- root root 6990 ./usr/include/c++/10.1.0/pstl/pstl_config.h
2516-rw-r--r-- root root 29256 ./usr/include/c++/10.1.0/pstl/unseq_backend_simd.h
2517-rw-r--r-- root root 4606 ./usr/include/c++/10.1.0/pstl/utils.h
2518-rw-r--r-- root root 2467 ./usr/include/c++/10.1.0/queue
2519-rw-r--r-- root root 1692 ./usr/include/c++/10.1.0/random
2520-rw-r--r-- root root 97030 ./usr/include/c++/10.1.0/ranges
2521-rw-r--r-- root root 20107 ./usr/include/c++/10.1.0/ratio
2522-rw-r--r-- root root 2648 ./usr/include/c++/10.1.0/regex
2523-rw-r--r-- root root 17459 ./usr/include/c++/10.1.0/scoped_allocator
2524-rw-r--r-- root root 3799 ./usr/include/c++/10.1.0/set
2525-rw-r--r-- root root 24417 ./usr/include/c++/10.1.0/shared_mutex
2526-rw-r--r-- root root 13251 ./usr/include/c++/10.1.0/span
2527-rw-r--r-- root root 28524 ./usr/include/c++/10.1.0/sstream
2528-rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/stack
2529-rw-r--r-- root root 9877 ./usr/include/c++/10.1.0/stdexcept
2530-rw-r--r-- root root 2248 ./usr/include/c++/10.1.0/stdlib.h
2531-rw-r--r-- root root 16254 ./usr/include/c++/10.1.0/stop_token
2532-rw-r--r-- root root 30017 ./usr/include/c++/10.1.0/streambuf
2533-rw-r--r-- root root 4645 ./usr/include/c++/10.1.0/string
2534-rw-r--r-- root root 24878 ./usr/include/c++/10.1.0/string_view
2535-rw-r--r-- root root 14871 ./usr/include/c++/10.1.0/system_error
2536-rw-r--r-- root root 1360 ./usr/include/c++/10.1.0/tgmath.h
2537-rw-r--r-- root root 13968 ./usr/include/c++/10.1.0/thread
2538drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/tr1
2539-rw-r--r-- root root 6983 ./usr/include/c++/10.1.0/tr1/array
2540-rw-r--r-- root root 22937 ./usr/include/c++/10.1.0/tr1/bessel_function.tcc
2541-rw-r--r-- root root 5995 ./usr/include/c++/10.1.0/tr1/beta_function.tcc
2542-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/ccomplex
2543-rw-r--r-- root root 1478 ./usr/include/c++/10.1.0/tr1/cctype
2544-rw-r--r-- root root 2070 ./usr/include/c++/10.1.0/tr1/cfenv
2545-rw-r--r-- root root 1380 ./usr/include/c++/10.1.0/tr1/cfloat
2546-rw-r--r-- root root 2322 ./usr/include/c++/10.1.0/tr1/cinttypes
2547-rw-r--r-- root root 1454 ./usr/include/c++/10.1.0/tr1/climits
2548-rw-r--r-- root root 43874 ./usr/include/c++/10.1.0/tr1/cmath
2549-rw-r--r-- root root 12384 ./usr/include/c++/10.1.0/tr1/complex
2550-rw-r--r-- root root 1261 ./usr/include/c++/10.1.0/tr1/complex.h
2551-rw-r--r-- root root 1246 ./usr/include/c++/10.1.0/tr1/cstdarg
2552-rw-r--r-- root root 1344 ./usr/include/c++/10.1.0/tr1/cstdbool
2553-rw-r--r-- root root 2687 ./usr/include/c++/10.1.0/tr1/cstdint
2554-rw-r--r-- root root 1548 ./usr/include/c++/10.1.0/tr1/cstdio
2555-rw-r--r-- root root 1862 ./usr/include/c++/10.1.0/tr1/cstdlib
2556-rw-r--r-- root root 1248 ./usr/include/c++/10.1.0/tr1/ctgmath
2557-rw-r--r-- root root 1234 ./usr/include/c++/10.1.0/tr1/ctime
2558-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/ctype.h
2559-rw-r--r-- root root 1784 ./usr/include/c++/10.1.0/tr1/cwchar
2560-rw-r--r-- root root 1525 ./usr/include/c++/10.1.0/tr1/cwctype
2561-rw-r--r-- root root 27644 ./usr/include/c++/10.1.0/tr1/ell_integral.tcc
2562-rw-r--r-- root root 16013 ./usr/include/c++/10.1.0/tr1/exp_integral.tcc
2563-rw-r--r-- root root 1204 ./usr/include/c++/10.1.0/tr1/fenv.h
2564-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/float.h
2565-rw-r--r-- root root 70545 ./usr/include/c++/10.1.0/tr1/functional
2566-rw-r--r-- root root 6043 ./usr/include/c++/10.1.0/tr1/functional_hash.h
2567-rw-r--r-- root root 14682 ./usr/include/c++/10.1.0/tr1/gamma.tcc
2568-rw-r--r-- root root 41995 ./usr/include/c++/10.1.0/tr1/hashtable.h
2569-rw-r--r-- root root 25086 ./usr/include/c++/10.1.0/tr1/hashtable_policy.h
2570-rw-r--r-- root root 28066 ./usr/include/c++/10.1.0/tr1/hypergeometric.tcc
2571-rw-r--r-- root root 1267 ./usr/include/c++/10.1.0/tr1/inttypes.h
2572-rw-r--r-- root root 10652 ./usr/include/c++/10.1.0/tr1/legendre_function.tcc
2573-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/limits.h
2574-rw-r--r-- root root 4553 ./usr/include/c++/10.1.0/tr1/math.h
2575-rw-r--r-- root root 1791 ./usr/include/c++/10.1.0/tr1/memory
2576-rw-r--r-- root root 16324 ./usr/include/c++/10.1.0/tr1/modified_bessel_func.tcc
2577-rw-r--r-- root root 3925 ./usr/include/c++/10.1.0/tr1/poly_hermite.tcc
2578-rw-r--r-- root root 11676 ./usr/include/c++/10.1.0/tr1/poly_laguerre.tcc
2579-rw-r--r-- root root 1589 ./usr/include/c++/10.1.0/tr1/random
2580-rw-r--r-- root root 73123 ./usr/include/c++/10.1.0/tr1/random.h
2581-rw-r--r-- root root 53927 ./usr/include/c++/10.1.0/tr1/random.tcc
2582-rw-r--r-- root root 92899 ./usr/include/c++/10.1.0/tr1/regex
2583-rw-r--r-- root root 14067 ./usr/include/c++/10.1.0/tr1/riemann_zeta.tcc
2584-rw-r--r-- root root 32608 ./usr/include/c++/10.1.0/tr1/shared_ptr.h
2585-rw-r--r-- root root 5055 ./usr/include/c++/10.1.0/tr1/special_function_util.h
2586-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/stdarg.h
2587-rw-r--r-- root root 1219 ./usr/include/c++/10.1.0/tr1/stdbool.h
2588-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/stdint.h
2589-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/stdio.h
2590-rw-r--r-- root root 1487 ./usr/include/c++/10.1.0/tr1/stdlib.h
2591-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/tgmath.h
2592-rw-r--r-- root root 12119 ./usr/include/c++/10.1.0/tr1/tuple
2593-rw-r--r-- root root 19019 ./usr/include/c++/10.1.0/tr1/type_traits
2594-rw-r--r-- root root 1574 ./usr/include/c++/10.1.0/tr1/unordered_map
2595-rw-r--r-- root root 10216 ./usr/include/c++/10.1.0/tr1/unordered_map.h
2596-rw-r--r-- root root 1574 ./usr/include/c++/10.1.0/tr1/unordered_set
2597-rw-r--r-- root root 9540 ./usr/include/c++/10.1.0/tr1/unordered_set.h
2598-rw-r--r-- root root 3225 ./usr/include/c++/10.1.0/tr1/utility
2599-rw-r--r-- root root 1249 ./usr/include/c++/10.1.0/tr1/wchar.h
2600-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/wctype.h
2601drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/tr2
2602-rw-r--r-- root root 7370 ./usr/include/c++/10.1.0/tr2/bool_set
2603-rw-r--r-- root root 8319 ./usr/include/c++/10.1.0/tr2/bool_set.tcc
2604-rw-r--r-- root root 34336 ./usr/include/c++/10.1.0/tr2/dynamic_bitset
2605-rw-r--r-- root root 8925 ./usr/include/c++/10.1.0/tr2/dynamic_bitset.tcc
2606-rw-r--r-- root root 2130 ./usr/include/c++/10.1.0/tr2/ratio
2607-rw-r--r-- root root 2699 ./usr/include/c++/10.1.0/tr2/type_traits
2608-rw-r--r-- root root 60078 ./usr/include/c++/10.1.0/tuple
2609-rw-r--r-- root root 3512 ./usr/include/c++/10.1.0/typeindex
2610-rw-r--r-- root root 7746 ./usr/include/c++/10.1.0/typeinfo
2611-rw-r--r-- root root 103356 ./usr/include/c++/10.1.0/type_traits
2612-rw-r--r-- root root 3467 ./usr/include/c++/10.1.0/unordered_map
2613-rw-r--r-- root root 3340 ./usr/include/c++/10.1.0/unordered_set
2614-rw-r--r-- root root 14820 ./usr/include/c++/10.1.0/utility
2615-rw-r--r-- root root 40362 ./usr/include/c++/10.1.0/valarray
2616-rw-r--r-- root root 60701 ./usr/include/c++/10.1.0/variant
2617-rw-r--r-- root root 4275 ./usr/include/c++/10.1.0/vector
2618-rw-r--r-- root root 7706 ./usr/include/c++/10.1.0/version
2619drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux
2620drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits
2621-rw-r--r-- root root 1518 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/atomic_word.h
2622-rw-r--r-- root root 3575 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/basic_file.h
2623-rw-r--r-- root root 1979 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++allocator.h
2624-rw-r--r-- root root 61947 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++config.h
2625-rw-r--r-- root root 1608 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++io.h
2626-rw-r--r-- root root 3307 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++locale.h
2627-rw-r--r-- root root 1333 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/cpu_defines.h
2628-rw-r--r-- root root 2316 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/ctype_base.h
2629-rw-r--r-- root root 2284 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/ctype_inline.h
2630-rw-r--r-- root root 2096 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/cxxabi_tweaks.h
2631-rw-r--r-- root root 5175 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/error_constants.h
2632-rw-r--r-- root root 2628 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/extc++.h
2633-rw-r--r-- root root 24260 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-default.h
2634-rw-r--r-- root root 5608 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr.h
2635-rw-r--r-- root root 24260 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-posix.h
2636-rw-r--r-- root root 6808 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-single.h
2637-rw-r--r-- root root 4516 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/messages_members.h
2638-rw-r--r-- root root 6194 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/opt_random.h
2639-rw-r--r-- root root 2007 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/os_defines.h
2640-rw-r--r-- root root 3286 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/stdc++.h
2641-rw-r--r-- root root 1741 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/stdtr1c++.h
2642-rw-r--r-- root root 2924 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/time_members.h
2643drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux/ext
2644-rw-r--r-- root root 4756 ./usr/include/c++/10.1.0/x86_64-poky-linux/ext/opt_random.h
2645drwxr-xr-x root root 4096 ./usr/include/cairo
2646-rw-r--r-- root root 8698 ./usr/include/cairo/cairo-deprecated.h
2647-rw-r--r-- root root 1460 ./usr/include/cairo/cairo-features.h
2648-rw-r--r-- root root 3721 ./usr/include/cairo/cairo-ft.h
2649-rw-r--r-- root root 5117 ./usr/include/cairo/cairo-gl.h
2650-rw-r--r-- root root 6452 ./usr/include/cairo/cairo-gobject.h
2651-rw-r--r-- root root 110955 ./usr/include/cairo/cairo.h
2652-rw-r--r-- root root 5617 ./usr/include/cairo/cairo-pdf.h
2653-rw-r--r-- root root 3632 ./usr/include/cairo/cairo-ps.h
2654-rw-r--r-- root root 3072 ./usr/include/cairo/cairo-script.h
2655-rw-r--r-- root root 4059 ./usr/include/cairo/cairo-script-interpreter.h
2656-rw-r--r-- root root 4504 ./usr/include/cairo/cairo-svg.h
2657-rw-r--r-- root root 2173 ./usr/include/cairo/cairo-tee.h
2658-rw-r--r-- root root 148 ./usr/include/cairo/cairo-version.h
2659-rw-r--r-- root root 3775 ./usr/include/cairo/cairo-xcb.h
2660-rw-r--r-- root root 3577 ./usr/include/cairo/cairo-xlib.h
2661-rw-r--r-- root root 2436 ./usr/include/cairo/cairo-xlib-xrender.h
2662-rw-r--r-- root root 3198 ./usr/include/cap-ng.h
2663-rw-r--r-- root root 2118 ./usr/include/com_err.h
2664-rw-r--r-- root root 7164 ./usr/include/complex.h
2665-rw-r--r-- root root 2268 ./usr/include/cpio.h
2666-rw-r--r-- root root 11160 ./usr/include/crypt.h
2667-rw-r--r-- root root 19025 ./usr/include/ctf-api.h
2668-rw-r--r-- root root 25153 ./usr/include/ctf.h
2669-rw-r--r-- root root 10969 ./usr/include/ctype.h
2670-rw-r--r-- root root 100249 ./usr/include/curses-64.h
2671-rw-r--r-- root root 6878 ./usr/include/cursesapp.h
2672-rw-r--r-- root root 28021 ./usr/include/cursesf.h
2673-rw-r--r-- root root 512 ./usr/include/curses.h
2674-rw-r--r-- root root 19874 ./usr/include/cursesm.h
2675-rw-r--r-- root root 8722 ./usr/include/cursesp.h
2676-rw-r--r-- root root 49871 ./usr/include/cursesw.h
2677-rw-r--r-- root root 7407 ./usr/include/cursslk.h
2678drwxr-xr-x root root 4096 ./usr/include/db51
2679-rw-r--r-- root root 49057 ./usr/include/db51/db_cxx.h
2680-rw-r--r-- root root 123105 ./usr/include/db51/db.h
2681lrwxrwxrwx root root 13 ./usr/include/db_cxx.h -> db51/db_cxx.h
2682lrwxrwxrwx root root 9 ./usr/include/db.h -> db51/db.h
2683-rw-r--r-- root root 1414 ./usr/include/dbm.h
2684drwxr-xr-x root root 4096 ./usr/include/dbus-1.0
2685drwxr-xr-x root root 4096 ./usr/include/dbus-1.0/dbus
2686-rw-r--r-- root root 2812 ./usr/include/dbus-1.0/dbus/dbus-address.h
2687-rw-r--r-- root root 3472 ./usr/include/dbus-1.0/dbus/dbus-bus.h
2688-rw-r--r-- root root 27020 ./usr/include/dbus-1.0/dbus/dbus-connection.h
2689-rw-r--r-- root root 2911 ./usr/include/dbus-1.0/dbus/dbus-errors.h
2690-rw-r--r-- root root 3963 ./usr/include/dbus-1.0/dbus/dbus.h
2691-rw-r--r-- root root 6757 ./usr/include/dbus-1.0/dbus/dbus-macros.h
2692-rw-r--r-- root root 1963 ./usr/include/dbus-1.0/dbus/dbus-memory.h
2693-rw-r--r-- root root 15005 ./usr/include/dbus-1.0/dbus/dbus-message.h
2694-rw-r--r-- root root 1813 ./usr/include/dbus-1.0/dbus/dbus-misc.h
2695-rw-r--r-- root root 3811 ./usr/include/dbus-1.0/dbus/dbus-pending-call.h
2696-rw-r--r-- root root 23642 ./usr/include/dbus-1.0/dbus/dbus-protocol.h
2697-rw-r--r-- root root 4045 ./usr/include/dbus-1.0/dbus/dbus-python.h
2698-rw-r--r-- root root 5414 ./usr/include/dbus-1.0/dbus/dbus-server.h
2699-rw-r--r-- root root 5394 ./usr/include/dbus-1.0/dbus/dbus-shared.h
2700-rw-r--r-- root root 3049 ./usr/include/dbus-1.0/dbus/dbus-signature.h
2701-rw-r--r-- root root 2359 ./usr/include/dbus-1.0/dbus/dbus-syntax.h
2702-rw-r--r-- root root 8507 ./usr/include/dbus-1.0/dbus/dbus-threads.h
2703-rw-r--r-- root root 4145 ./usr/include/dbus-1.0/dbus/dbus-types.h
2704-rw-r--r-- root root 3332 ./usr/include/diagnostics.h
2705-rw-r--r-- root root 12515 ./usr/include/dirent.h
2706-rw-r--r-- root root 16687 ./usr/include/dis-asm.h
2707-rw-r--r-- root root 7479 ./usr/include/dlfcn.h
2708drwxr-xr-x root root 4096 ./usr/include/drm
2709-rw-r--r-- root root 31894 ./usr/include/drm/amdgpu_drm.h
2710-rw-r--r-- root root 1212 ./usr/include/drm/armada_drm.h
2711-rw-r--r-- root root 32817 ./usr/include/drm/drm_fourcc.h
2712-rw-r--r-- root root 32129 ./usr/include/drm/drm.h
2713-rw-r--r-- root root 28604 ./usr/include/drm/drm_mode.h
2714-rw-r--r-- root root 2782 ./usr/include/drm/drm_sarea.h
2715-rw-r--r-- root root 11822 ./usr/include/drm/etnaviv_drm.h
2716-rw-r--r-- root root 11132 ./usr/include/drm/exynos_drm.h
2717-rw-r--r-- root root 10061 ./usr/include/drm/i810_drm.h
2718-rw-r--r-- root root 70507 ./usr/include/drm/i915_drm.h
2719-rw-r--r-- root root 4817 ./usr/include/drm/lima_drm.h
2720-rw-r--r-- root root 13010 ./usr/include/drm/mga_drm.h
2721-rw-r--r-- root root 13230 ./usr/include/drm/msm_drm.h
2722-rw-r--r-- root root 6560 ./usr/include/drm/nouveau_drm.h
2723-rw-r--r-- root root 4141 ./usr/include/drm/omap_drm.h
2724-rw-r--r-- root root 7346 ./usr/include/drm/panfrost_drm.h
2725-rw-r--r-- root root 4131 ./usr/include/drm/qxl_drm.h
2726-rw-r--r-- root root 10000 ./usr/include/drm/r128_drm.h
2727-rw-r--r-- root root 38236 ./usr/include/drm/radeon_drm.h
2728-rw-r--r-- root root 7170 ./usr/include/drm/savage_drm.h
2729-rw-r--r-- root root 2637 ./usr/include/drm/sis_drm.h
2730-rw-r--r-- root root 14877 ./usr/include/drm/tegra_drm.h
2731-rw-r--r-- root root 8671 ./usr/include/drm/v3d_drm.h
2732-rw-r--r-- root root 14457 ./usr/include/drm/vc4_drm.h
2733-rw-r--r-- root root 1971 ./usr/include/drm/vgem_drm.h
2734-rw-r--r-- root root 8345 ./usr/include/drm/via_drm.h
2735-rw-r--r-- root root 5010 ./usr/include/drm/virtgpu_drm.h
2736-rw-r--r-- root root 35392 ./usr/include/drm/vmwgfx_drm.h
2737-rw-r--r-- root root 31014 ./usr/include/dwarf.h
2738drwxr-xr-x root root 4096 ./usr/include/e2p
2739-rw-r--r-- root root 3252 ./usr/include/e2p/e2p.h
2740-rw-r--r-- root root 180099 ./usr/include/elf.h
2741drwxr-xr-x root root 4096 ./usr/include/elfutils
2742-rw-r--r-- root root 3947 ./usr/include/elfutils/elf-knowledge.h
2743-rw-r--r-- root root 41860 ./usr/include/elfutils/known-dwarf.h
2744-rw-r--r-- root root 7098 ./usr/include/elfutils/libasm.h
2745-rw-r--r-- root root 6452 ./usr/include/elfutils/libdwelf.h
2746-rw-r--r-- root root 37558 ./usr/include/elfutils/libdwfl.h
2747-rw-r--r-- root root 44920 ./usr/include/elfutils/libdw.h
2748-rw-r--r-- root root 1274 ./usr/include/elfutils/version.h
2749-rw-r--r-- root root 2299 ./usr/include/endian.h
2750-rw-r--r-- root root 2867 ./usr/include/envz.h
2751-rw-r--r-- root root 2267 ./usr/include/err.h
2752-rw-r--r-- root root 1679 ./usr/include/errno.h
2753-rw-r--r-- root root 2282 ./usr/include/error.h
2754drwxr-xr-x root root 4096 ./usr/include/et
2755-rw-r--r-- root root 2118 ./usr/include/et/com_err.h
2756-rw-r--r-- root root 2969 ./usr/include/eti.h
2757-rw-r--r-- root root 9775 ./usr/include/etip.h
2758-rw-r--r-- root root 1523 ./usr/include/execinfo.h
2759-rw-r--r-- root root 3830 ./usr/include/expat_config.h
2760-rw-r--r-- root root 5528 ./usr/include/expat_external.h
2761-rw-r--r-- root root 41473 ./usr/include/expat.h
2762drwxr-xr-x root root 4096 ./usr/include/ext2fs
2763-rw-r--r-- root root 22148 ./usr/include/ext2fs/bitops.h
2764-rw-r--r-- root root 11847 ./usr/include/ext2fs/ext2_err.h
2765-rw-r--r-- root root 2644 ./usr/include/ext2fs/ext2_ext_attr.h
2766-rw-r--r-- root root 42075 ./usr/include/ext2fs/ext2_fs.h
2767-rw-r--r-- root root 72208 ./usr/include/ext2fs/ext2fs.h
2768-rw-r--r-- root root 5391 ./usr/include/ext2fs/ext2_io.h
2769-rw-r--r-- root root 4212 ./usr/include/ext2fs/ext2_types-64.h
2770-rw-r--r-- root root 556 ./usr/include/ext2fs/ext2_types.h
2771-rw-r--r-- root root 4558 ./usr/include/ext2fs/ext3_extents.h
2772-rw-r--r-- root root 1179 ./usr/include/ext2fs/hashmap.h
2773-rw-r--r-- root root 2588 ./usr/include/ext2fs/qcow2.h
2774-rw-r--r-- root root 8871 ./usr/include/ext2fs/tdb.h
2775-rw-r--r-- root root 11026 ./usr/include/fcntl.h
2776-rw-r--r-- root root 17235 ./usr/include/features.h
2777-rw-r--r-- root root 5874 ./usr/include/fenv.h
2778-rw-r--r-- root root 13934 ./usr/include/ffi-64.h
2779-rw-r--r-- root root 500 ./usr/include/ffi.h
2780-rw-r--r-- root root 4343 ./usr/include/ffitarget.h
2781drwxr-xr-x root root 4096 ./usr/include/finclude
2782-rw-r--r-- root root 2384 ./usr/include/finclude/math-vector-fortran.h
2783-rw-r--r-- root root 6893 ./usr/include/FlexLexer.h
2784-rw-r--r-- root root 3240 ./usr/include/fmtmsg.h
2785-rw-r--r-- root root 2296 ./usr/include/fnmatch.h
2786drwxr-xr-x root root 4096 ./usr/include/fontconfig
2787-rw-r--r-- root root 1958 ./usr/include/fontconfig/fcfreetype.h
2788-rw-r--r-- root root 4489 ./usr/include/fontconfig/fcprivate.h
2789-rw-r--r-- root root 28461 ./usr/include/fontconfig/fontconfig.h
2790-rw-r--r-- root root 18811 ./usr/include/form.h
2791-rw-r--r-- root root 3584 ./usr/include/fpu_control.h
2792drwxr-xr-x root root 4096 ./usr/include/freedreno
2793-rw-r--r-- root root 4992 ./usr/include/freedreno/freedreno_drmif.h
2794-rw-r--r-- root root 4963 ./usr/include/freedreno/freedreno_ringbuffer.h
2795drwxr-xr-x root root 4096 ./usr/include/freetype2
2796drwxr-xr-x root root 4096 ./usr/include/freetype2/freetype
2797drwxr-xr-x root root 4096 ./usr/include/freetype2/freetype/config
2798-rw-r--r-- root root 19859 ./usr/include/freetype2/freetype/config/ftconfig-64.h
2799-rw-r--r-- root root 624 ./usr/include/freetype2/freetype/config/ftconfig.h
2800-rw-r--r-- root root 23228 ./usr/include/freetype2/freetype/config/ftheader.h
2801-rw-r--r-- root root 1056 ./usr/include/freetype2/freetype/config/ftmodule.h
2802-rw-r--r-- root root 39330 ./usr/include/freetype2/freetype/config/ftoption.h
2803-rw-r--r-- root root 4307 ./usr/include/freetype2/freetype/config/ftstdlib.h
2804-rw-r--r-- root root 165664 ./usr/include/freetype2/freetype/freetype.h
2805-rw-r--r-- root root 5479 ./usr/include/freetype2/freetype/ftadvanc.h
2806-rw-r--r-- root root 2652 ./usr/include/freetype2/freetype/ftbbox.h
2807-rw-r--r-- root root 5336 ./usr/include/freetype2/freetype/ftbdf.h
2808-rw-r--r-- root root 9055 ./usr/include/freetype2/freetype/ftbitmap.h
2809-rw-r--r-- root root 2745 ./usr/include/freetype2/freetype/ftbzip2.h
2810-rw-r--r-- root root 33870 ./usr/include/freetype2/freetype/ftcache.h
2811-rw-r--r-- root root 2510 ./usr/include/freetype2/freetype/ftchapters.h
2812-rw-r--r-- root root 4036 ./usr/include/freetype2/freetype/ftcid.h
2813-rw-r--r-- root root 8927 ./usr/include/freetype2/freetype/ftcolor.h
2814-rw-r--r-- root root 47451 ./usr/include/freetype2/freetype/ftdriver.h
2815-rw-r--r-- root root 12336 ./usr/include/freetype2/freetype/fterrdef.h
2816-rw-r--r-- root root 8904 ./usr/include/freetype2/freetype/fterrors.h
2817-rw-r--r-- root root 2227 ./usr/include/freetype2/freetype/ftfntfmt.h
2818-rw-r--r-- root root 4152 ./usr/include/freetype2/freetype/ftgasp.h
2819-rw-r--r-- root root 18505 ./usr/include/freetype2/freetype/ftglyph.h
2820-rw-r--r-- root root 10639 ./usr/include/freetype2/freetype/ftgxval.h
2821-rw-r--r-- root root 4170 ./usr/include/freetype2/freetype/ftgzip.h
2822-rw-r--r-- root root 39169 ./usr/include/freetype2/freetype/ftimage.h
2823-rw-r--r-- root root 10322 ./usr/include/freetype2/freetype/ftincrem.h
2824-rw-r--r-- root root 11969 ./usr/include/freetype2/freetype/ftlcdfil.h
2825-rw-r--r-- root root 7114 ./usr/include/freetype2/freetype/ftlist.h
2826-rw-r--r-- root root 2726 ./usr/include/freetype2/freetype/ftlzw.h
2827-rw-r--r-- root root 7793 ./usr/include/freetype2/freetype/ftmac.h
2828-rw-r--r-- root root 21811 ./usr/include/freetype2/freetype/ftmm.h
2829-rw-r--r-- root root 21820 ./usr/include/freetype2/freetype/ftmodapi.h
2830-rw-r--r-- root root 6598 ./usr/include/freetype2/freetype/ftmoderr.h
2831-rw-r--r-- root root 5360 ./usr/include/freetype2/freetype/ftotval.h
2832-rw-r--r-- root root 17476 ./usr/include/freetype2/freetype/ftoutln.h
2833-rw-r--r-- root root 5606 ./usr/include/freetype2/freetype/ftparams.h
2834-rw-r--r-- root root 4924 ./usr/include/freetype2/freetype/ftpfr.h
2835-rw-r--r-- root root 6627 ./usr/include/freetype2/freetype/ftrender.h
2836-rw-r--r-- root root 4302 ./usr/include/freetype2/freetype/ftsizes.h
2837-rw-r--r-- root root 7742 ./usr/include/freetype2/freetype/ftsnames.h
2838-rw-r--r-- root root 21778 ./usr/include/freetype2/freetype/ftstroke.h
2839-rw-r--r-- root root 3376 ./usr/include/freetype2/freetype/ftsynth.h
2840-rw-r--r-- root root 8540 ./usr/include/freetype2/freetype/ftsystem.h
2841-rw-r--r-- root root 7403 ./usr/include/freetype2/freetype/fttrigon.h
2842-rw-r--r-- root root 14467 ./usr/include/freetype2/freetype/fttypes.h
2843-rw-r--r-- root root 7980 ./usr/include/freetype2/freetype/ftwinfnt.h
2844-rw-r--r-- root root 22843 ./usr/include/freetype2/freetype/t1tables.h
2845-rw-r--r-- root root 58791 ./usr/include/freetype2/freetype/ttnameid.h
2846-rw-r--r-- root root 25245 ./usr/include/freetype2/freetype/tttables.h
2847-rw-r--r-- root root 5106 ./usr/include/freetype2/freetype/tttags.h
2848-rw-r--r-- root root 1111 ./usr/include/freetype2/ft2build.h
2849-rw-r--r-- root root 3111 ./usr/include/fstab.h
2850-rw-r--r-- root root 8373 ./usr/include/fts.h
2851-rw-r--r-- root root 5252 ./usr/include/ftw.h
2852-rw-r--r-- root root 40486 ./usr/include/gawkapi.h
2853-rw-r--r-- root root 4211 ./usr/include/gconv.h
2854drwxr-xr-x root root 4096 ./usr/include/gdbm
2855lrwxrwxrwx root root 9 ./usr/include/gdbm/gdbm.h -> ../gdbm.h
2856-rw-r--r-- root root 10345 ./usr/include/gdbm.h
2857lrwxrwxrwx root root 9 ./usr/include/gdbm/ndbm.h -> ../ndbm.h
2858-rw-r--r-- root root 11312 ./usr/include/gelf.h
2859-rw-r--r-- root root 1469 ./usr/include/getopt.h
2860drwxr-xr-x root root 4096 ./usr/include/gio-unix-2.0
2861drwxr-xr-x root root 4096 ./usr/include/gio-unix-2.0/gio
2862-rw-r--r-- root root 8679 ./usr/include/gio-unix-2.0/gio/gdesktopappinfo.h
2863-rw-r--r-- root root 2218 ./usr/include/gio-unix-2.0/gio/gfiledescriptorbased.h
2864-rw-r--r-- root root 5761 ./usr/include/gio-unix-2.0/gio/gunixconnection.h
2865-rw-r--r-- root root 3197 ./usr/include/gio-unix-2.0/gio/gunixcredentialsmessage.h
2866-rw-r--r-- root root 4245 ./usr/include/gio-unix-2.0/gio/gunixfdlist.h
2867-rw-r--r-- root root 3767 ./usr/include/gio-unix-2.0/gio/gunixfdmessage.h
2868-rw-r--r-- root root 3018 ./usr/include/gio-unix-2.0/gio/gunixinputstream.h
2869-rw-r--r-- root root 7349 ./usr/include/gio-unix-2.0/gio/gunixmounts.h
2870-rw-r--r-- root root 3050 ./usr/include/gio-unix-2.0/gio/gunixoutputstream.h
2871-rw-r--r-- root root 3424 ./usr/include/gio-unix-2.0/gio/gunixsocketaddress.h
2872drwxr-xr-x root root 4096 ./usr/include/GL
2873-rw-r--r-- root root 421419 ./usr/include/GL/glcorearb.h
2874-rw-r--r-- root root 848217 ./usr/include/GL/glext.h
2875-rw-r--r-- root root 80393 ./usr/include/GL/gl.h
2876-rw-r--r-- root root 48752 ./usr/include/GL/glxext.h
2877-rw-r--r-- root root 14578 ./usr/include/GL/glx.h
2878-rw-r--r-- root root 4695 ./usr/include/GL/glxint.h
2879-rw-r--r-- root root 2085 ./usr/include/GL/glxmd.h
2880-rw-r--r-- root root 78531 ./usr/include/GL/glxproto.h
2881-rw-r--r-- root root 11429 ./usr/include/GL/glxtokens.h
2882drwxr-xr-x root root 4096 ./usr/include/glib-2.0
2883drwxr-xr-x root root 4096 ./usr/include/glib-2.0/gio
2884-rw-r--r-- root root 1768 ./usr/include/glib-2.0/gio/gactiongroupexporter.h
2885-rw-r--r-- root root 9167 ./usr/include/glib-2.0/gio/gactiongroup.h
2886-rw-r--r-- root root 4610 ./usr/include/glib-2.0/gio/gaction.h
2887-rw-r--r-- root root 3996 ./usr/include/glib-2.0/gio/gactionmap.h
2888-rw-r--r-- root root 19095 ./usr/include/glib-2.0/gio/gappinfo.h
2889-rw-r--r-- root root 6168 ./usr/include/glib-2.0/gio/gapplicationcommandline.h
2890-rw-r--r-- root root 14551 ./usr/include/glib-2.0/gio/gapplication.h
2891-rw-r--r-- root root 4423 ./usr/include/glib-2.0/gio/gasyncinitable.h
2892-rw-r--r-- root root 2818 ./usr/include/glib-2.0/gio/gasyncresult.h
2893-rw-r--r-- root root 5229 ./usr/include/glib-2.0/gio/gbufferedinputstream.h
2894-rw-r--r-- root root 3334 ./usr/include/glib-2.0/gio/gbufferedoutputstream.h
2895-rw-r--r-- root root 1652 ./usr/include/glib-2.0/gio/gbytesicon.h
2896-rw-r--r-- root root 4058 ./usr/include/glib-2.0/gio/gcancellable.h
2897-rw-r--r-- root root 2518 ./usr/include/glib-2.0/gio/gcharsetconverter.h
2898-rw-r--r-- root root 2971 ./usr/include/glib-2.0/gio/gcontenttype.h
2899-rw-r--r-- root root 2885 ./usr/include/glib-2.0/gio/gconverter.h
2900-rw-r--r-- root root 3015 ./usr/include/glib-2.0/gio/gconverterinputstream.h
2901-rw-r--r-- root root 3054 ./usr/include/glib-2.0/gio/gconverteroutputstream.h
2902-rw-r--r-- root root 3408 ./usr/include/glib-2.0/gio/gcredentials.h
2903-rw-r--r-- root root 6661 ./usr/include/glib-2.0/gio/gdatagrambased.h
2904-rw-r--r-- root root 11140 ./usr/include/glib-2.0/gio/gdatainputstream.h
2905-rw-r--r-- root root 4923 ./usr/include/glib-2.0/gio/gdataoutputstream.h
2906-rw-r--r-- root root 2739 ./usr/include/glib-2.0/gio/gdbusactiongroup.h
2907-rw-r--r-- root root 2670 ./usr/include/glib-2.0/gio/gdbusaddress.h
2908-rw-r--r-- root root 2130 ./usr/include/glib-2.0/gio/gdbusauthobserver.h
2909-rw-r--r-- root root 38873 ./usr/include/glib-2.0/gio/gdbusconnection.h
2910-rw-r--r-- root root 4306 ./usr/include/glib-2.0/gio/gdbuserror.h
2911-rw-r--r-- root root 3069 ./usr/include/glib-2.0/gio/gdbusinterface.h
2912-rw-r--r-- root root 6055 ./usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h
2913-rw-r--r-- root root 12393 ./usr/include/glib-2.0/gio/gdbusintrospection.h
2914-rw-r--r-- root root 1730 ./usr/include/glib-2.0/gio/gdbusmenumodel.h
2915-rw-r--r-- root root 11383 ./usr/include/glib-2.0/gio/gdbusmessage.h
2916-rw-r--r-- root root 5801 ./usr/include/glib-2.0/gio/gdbusmethodinvocation.h
2917-rw-r--r-- root root 4877 ./usr/include/glib-2.0/gio/gdbusnameowning.h
2918-rw-r--r-- root root 4521 ./usr/include/glib-2.0/gio/gdbusnamewatching.h
2919-rw-r--r-- root root 2941 ./usr/include/glib-2.0/gio/gdbusobject.h
2920-rw-r--r-- root root 9800 ./usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h
2921-rw-r--r-- root root 4474 ./usr/include/glib-2.0/gio/gdbusobjectmanager.h
2922-rw-r--r-- root root 4120 ./usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h
2923-rw-r--r-- root root 2635 ./usr/include/glib-2.0/gio/gdbusobjectproxy.h
2924-rw-r--r-- root root 3957 ./usr/include/glib-2.0/gio/gdbusobjectskeleton.h
2925-rw-r--r-- root root 12082 ./usr/include/glib-2.0/gio/gdbusproxy.h
2926-rw-r--r-- root root 2534 ./usr/include/glib-2.0/gio/gdbusserver.h
2927-rw-r--r-- root root 1779 ./usr/include/glib-2.0/gio/gdbusutils.h
2928-rw-r--r-- root root 14503 ./usr/include/glib-2.0/gio/gdrive.h
2929-rw-r--r-- root root 3197 ./usr/include/glib-2.0/gio/gdtlsclientconnection.h
2930-rw-r--r-- root root 11430 ./usr/include/glib-2.0/gio/gdtlsconnection.h
2931-rw-r--r-- root root 2446 ./usr/include/glib-2.0/gio/gdtlsserverconnection.h
2932-rw-r--r-- root root 2788 ./usr/include/glib-2.0/gio/gemblemedicon.h
2933-rw-r--r-- root root 2155 ./usr/include/glib-2.0/gio/gemblem.h
2934-rw-r--r-- root root 2801 ./usr/include/glib-2.0/gio/gfileattribute.h
2935-rw-r--r-- root root 6393 ./usr/include/glib-2.0/gio/gfileenumerator.h
2936-rw-r--r-- root root 79870 ./usr/include/glib-2.0/gio/gfile.h
2937-rw-r--r-- root root 1959 ./usr/include/glib-2.0/gio/gfileicon.h
2938-rw-r--r-- root root 44335 ./usr/include/glib-2.0/gio/gfileinfo.h
2939-rw-r--r-- root root 4656 ./usr/include/glib-2.0/gio/gfileinputstream.h
2940-rw-r--r-- root root 5041 ./usr/include/glib-2.0/gio/gfileiostream.h
2941-rw-r--r-- root root 3280 ./usr/include/glib-2.0/gio/gfilemonitor.h
2942-rw-r--r-- root root 3090 ./usr/include/glib-2.0/gio/gfilenamecompleter.h
2943-rw-r--r-- root root 5338 ./usr/include/glib-2.0/gio/gfileoutputstream.h
2944-rw-r--r-- root root 2832 ./usr/include/glib-2.0/gio/gfilterinputstream.h
2945-rw-r--r-- root root 2875 ./usr/include/glib-2.0/gio/gfilteroutputstream.h
2946-rw-r--r-- root root 3435 ./usr/include/glib-2.0/gio/gicon.h
2947-rw-r--r-- root root 4529 ./usr/include/glib-2.0/gio/ginetaddress.h
2948-rw-r--r-- root root 3119 ./usr/include/glib-2.0/gio/ginetaddressmask.h
2949-rw-r--r-- root root 3111 ./usr/include/glib-2.0/gio/ginetsocketaddress.h
2950-rw-r--r-- root root 2976 ./usr/include/glib-2.0/gio/ginitable.h
2951-rw-r--r-- root root 9188 ./usr/include/glib-2.0/gio/ginputstream.h
2952-rw-r--r-- root root 9066 ./usr/include/glib-2.0/gio/gio-autocleanups.h
2953-rw-r--r-- root root 76503 ./usr/include/glib-2.0/gio/gioenums.h
2954-rw-r--r-- root root 12517 ./usr/include/glib-2.0/gio/gioenumtypes.h
2955-rw-r--r-- root root 1558 ./usr/include/glib-2.0/gio/gioerror.h
2956-rw-r--r-- root root 5646 ./usr/include/glib-2.0/gio/gio.h
2957-rw-r--r-- root root 8064 ./usr/include/glib-2.0/gio/giomodule.h
2958-rw-r--r-- root root 1999 ./usr/include/glib-2.0/gio/gioscheduler.h
2959-rw-r--r-- root root 4862 ./usr/include/glib-2.0/gio/giostream.h
2960-rw-r--r-- root root 24681 ./usr/include/glib-2.0/gio/giotypes.h
2961-rw-r--r-- root root 2576 ./usr/include/glib-2.0/gio/glistmodel.h
2962-rw-r--r-- root root 4178 ./usr/include/glib-2.0/gio/gliststore.h
2963-rw-r--r-- root root 3671 ./usr/include/glib-2.0/gio/gloadableicon.h
2964-rw-r--r-- root root 3434 ./usr/include/glib-2.0/gio/gmemoryinputstream.h
2965-rw-r--r-- root root 2140 ./usr/include/glib-2.0/gio/gmemorymonitor.h
2966-rw-r--r-- root root 3933 ./usr/include/glib-2.0/gio/gmemoryoutputstream.h
2967-rw-r--r-- root root 1611 ./usr/include/glib-2.0/gio/gmenuexporter.h
2968-rw-r--r-- root root 8940 ./usr/include/glib-2.0/gio/gmenu.h
2969-rw-r--r-- root root 14334 ./usr/include/glib-2.0/gio/gmenumodel.h
2970-rw-r--r-- root root 15791 ./usr/include/glib-2.0/gio/gmount.h
2971-rw-r--r-- root root 6765 ./usr/include/glib-2.0/gio/gmountoperation.h
2972-rw-r--r-- root root 2536 ./usr/include/glib-2.0/gio/gnativesocketaddress.h
2973-rw-r--r-- root root 2270 ./usr/include/glib-2.0/gio/gnativevolumemonitor.h
2974-rw-r--r-- root root 2956 ./usr/include/glib-2.0/gio/gnetworkaddress.h
2975-rw-r--r-- root root 1994 ./usr/include/glib-2.0/gio/gnetworking.h
2976-rw-r--r-- root root 4239 ./usr/include/glib-2.0/gio/gnetworkmonitor.h
2977-rw-r--r-- root root 2756 ./usr/include/glib-2.0/gio/gnetworkservice.h
2978-rw-r--r-- root root 4898 ./usr/include/glib-2.0/gio/gnotification.h
2979-rw-r--r-- root root 15760 ./usr/include/glib-2.0/gio/goutputstream.h
2980-rw-r--r-- root root 5862 ./usr/include/glib-2.0/gio/gpermission.h
2981-rw-r--r-- root root 3829 ./usr/include/glib-2.0/gio/gpollableinputstream.h
2982-rw-r--r-- root root 4919 ./usr/include/glib-2.0/gio/gpollableoutputstream.h
2983-rw-r--r-- root root 2134 ./usr/include/glib-2.0/gio/gpollableutils.h
2984-rw-r--r-- root root 1994 ./usr/include/glib-2.0/gio/gpropertyaction.h
2985-rw-r--r-- root root 2939 ./usr/include/glib-2.0/gio/gproxyaddressenumerator.h
2986-rw-r--r-- root root 3166 ./usr/include/glib-2.0/gio/gproxyaddress.h
2987-rw-r--r-- root root 4067 ./usr/include/glib-2.0/gio/gproxy.h
2988-rw-r--r-- root root 3393 ./usr/include/glib-2.0/gio/gproxyresolver.h
2989-rw-r--r-- root root 3635 ./usr/include/glib-2.0/gio/gremoteactiongroup.h
2990-rw-r--r-- root root 16852 ./usr/include/glib-2.0/gio/gresolver.h
2991-rw-r--r-- root root 4651 ./usr/include/glib-2.0/gio/gresource.h
2992-rw-r--r-- root root 3280 ./usr/include/glib-2.0/gio/gseekable.h
2993-rw-r--r-- root root 8508 ./usr/include/glib-2.0/gio/gsettingsbackend.h
2994-rw-r--r-- root root 21148 ./usr/include/glib-2.0/gio/gsettings.h
2995-rw-r--r-- root root 5933 ./usr/include/glib-2.0/gio/gsettingsschema.h
2996-rw-r--r-- root root 4355 ./usr/include/glib-2.0/gio/gsimpleactiongroup.h
2997-rw-r--r-- root root 2915 ./usr/include/glib-2.0/gio/gsimpleaction.h
2998-rw-r--r-- root root 7809 ./usr/include/glib-2.0/gio/gsimpleasyncresult.h
2999-rw-r--r-- root root 1722 ./usr/include/glib-2.0/gio/gsimpleiostream.h
3000-rw-r--r-- root root 1686 ./usr/include/glib-2.0/gio/gsimplepermission.h
3001-rw-r--r-- root root 3531 ./usr/include/glib-2.0/gio/gsimpleproxyresolver.h
3002-rw-r--r-- root root 3897 ./usr/include/glib-2.0/gio/gsocketaddressenumerator.h
3003-rw-r--r-- root root 3086 ./usr/include/glib-2.0/gio/gsocketaddress.h
3004-rw-r--r-- root root 11211 ./usr/include/glib-2.0/gio/gsocketclient.h
3005-rw-r--r-- root root 2886 ./usr/include/glib-2.0/gio/gsocketconnectable.h
3006-rw-r--r-- root root 5056 ./usr/include/glib-2.0/gio/gsocketconnection.h
3007-rw-r--r-- root root 4886 ./usr/include/glib-2.0/gio/gsocketcontrolmessage.h
3008-rw-r--r-- root root 16181 ./usr/include/glib-2.0/gio/gsocket.h
3009-rw-r--r-- root root 7680 ./usr/include/glib-2.0/gio/gsocketlistener.h
3010-rw-r--r-- root root 3620 ./usr/include/glib-2.0/gio/gsocketservice.h
3011-rw-r--r-- root root 1936 ./usr/include/glib-2.0/gio/gsrvtarget.h
3012-rw-r--r-- root root 8606 ./usr/include/glib-2.0/gio/gsubprocess.h
3013-rw-r--r-- root root 6399 ./usr/include/glib-2.0/gio/gsubprocesslauncher.h
3014-rw-r--r-- root root 8278 ./usr/include/glib-2.0/gio/gtask.h
3015-rw-r--r-- root root 2957 ./usr/include/glib-2.0/gio/gtcpconnection.h
3016-rw-r--r-- root root 2973 ./usr/include/glib-2.0/gio/gtcpwrapperconnection.h
3017-rw-r--r-- root root 2303 ./usr/include/glib-2.0/gio/gtestdbus.h
3018-rw-r--r-- root root 2643 ./usr/include/glib-2.0/gio/gthemedicon.h
3019-rw-r--r-- root root 3665 ./usr/include/glib-2.0/gio/gthreadedsocketservice.h
3020-rw-r--r-- root root 4587 ./usr/include/glib-2.0/gio/gtlsbackend.h
3021-rw-r--r-- root root 3505 ./usr/include/glib-2.0/gio/gtlscertificate.h
3022-rw-r--r-- root root 3683 ./usr/include/glib-2.0/gio/gtlsclientconnection.h
3023-rw-r--r-- root root 6575 ./usr/include/glib-2.0/gio/gtlsconnection.h
3024-rw-r--r-- root root 17271 ./usr/include/glib-2.0/gio/gtlsdatabase.h
3025-rw-r--r-- root root 1909 ./usr/include/glib-2.0/gio/gtlsfiledatabase.h
3026-rw-r--r-- root root 8333 ./usr/include/glib-2.0/gio/gtlsinteraction.h
3027-rw-r--r-- root root 4818 ./usr/include/glib-2.0/gio/gtlspassword.h
3028-rw-r--r-- root root 2348 ./usr/include/glib-2.0/gio/gtlsserverconnection.h
3029-rw-r--r-- root root 6616 ./usr/include/glib-2.0/gio/gvfs.h
3030-rw-r--r-- root root 11736 ./usr/include/glib-2.0/gio/gvolume.h
3031-rw-r--r-- root root 5998 ./usr/include/glib-2.0/gio/gvolumemonitor.h
3032-rw-r--r-- root root 2350 ./usr/include/glib-2.0/gio/gzlibcompressor.h
3033-rw-r--r-- root root 2212 ./usr/include/glib-2.0/gio/gzlibdecompressor.h
3034drwxr-xr-x root root 4096 ./usr/include/glib-2.0/glib
3035drwxr-xr-x root root 4096 ./usr/include/glib-2.0/glib/deprecated
3036-rw-r--r-- root root 3256 ./usr/include/glib-2.0/glib/deprecated/gallocator.h
3037-rw-r--r-- root root 2987 ./usr/include/glib-2.0/glib/deprecated/gcache.h
3038-rw-r--r-- root root 2922 ./usr/include/glib-2.0/glib/deprecated/gcompletion.h
3039-rw-r--r-- root root 4392 ./usr/include/glib-2.0/glib/deprecated/gmain.h
3040-rw-r--r-- root root 3682 ./usr/include/glib-2.0/glib/deprecated/grel.h
3041-rw-r--r-- root root 10938 ./usr/include/glib-2.0/glib/deprecated/gthread.h
3042-rw-r--r-- root root 3912 ./usr/include/glib-2.0/glib/galloca.h
3043-rw-r--r-- root root 11385 ./usr/include/glib-2.0/glib/garray.h
3044-rw-r--r-- root root 5726 ./usr/include/glib-2.0/glib/gasyncqueue.h
3045-rw-r--r-- root root 23740 ./usr/include/glib-2.0/glib/gatomic.h
3046-rw-r--r-- root root 2727 ./usr/include/glib-2.0/glib/gbacktrace.h
3047-rw-r--r-- root root 2323 ./usr/include/glib-2.0/glib/gbase64.h
3048-rw-r--r-- root root 2902 ./usr/include/glib-2.0/glib/gbitlock.h
3049-rw-r--r-- root root 9596 ./usr/include/glib-2.0/glib/gbookmarkfile.h
3050-rw-r--r-- root root 3334 ./usr/include/glib-2.0/glib/gbytes.h
3051-rw-r--r-- root root 1578 ./usr/include/glib-2.0/glib/gcharset.h
3052-rw-r--r-- root root 3864 ./usr/include/glib-2.0/glib/gchecksum.h
3053-rw-r--r-- root root 5923 ./usr/include/glib-2.0/glib/gconvert.h
3054-rw-r--r-- root root 6245 ./usr/include/glib-2.0/glib/gdataset.h
3055-rw-r--r-- root root 12420 ./usr/include/glib-2.0/glib/gdate.h
3056-rw-r--r-- root root 12738 ./usr/include/glib-2.0/glib/gdatetime.h
3057-rw-r--r-- root root 1641 ./usr/include/glib-2.0/glib/gdir.h
3058-rw-r--r-- root root 2364 ./usr/include/glib-2.0/glib/genviron.h
3059-rw-r--r-- root root 3943 ./usr/include/glib-2.0/glib/gerror.h
3060-rw-r--r-- root root 5813 ./usr/include/glib-2.0/glib/gfileutils.h
3061-rw-r--r-- root root 2424 ./usr/include/glib-2.0/glib/ggettext.h
3062-rw-r--r-- root root 7886 ./usr/include/glib-2.0/glib/ghash.h
3063-rw-r--r-- root root 3469 ./usr/include/glib-2.0/glib/ghmac.h
3064-rw-r--r-- root root 6358 ./usr/include/glib-2.0/glib/ghook.h
3065-rw-r--r-- root root 1456 ./usr/include/glib-2.0/glib/ghostutils.h
3066-rw-r--r-- root root 1167 ./usr/include/glib-2.0/glib/gi18n.h
3067-rw-r--r-- root root 1370 ./usr/include/glib-2.0/glib/gi18n-lib.h
3068-rw-r--r-- root root 13954 ./usr/include/glib-2.0/glib/giochannel.h
3069-rw-r--r-- root root 14913 ./usr/include/glib-2.0/glib/gkeyfile.h
3070-rw-r--r-- root root 4789 ./usr/include/glib-2.0/glib/glib-autocleanups.h
3071-rw-r--r-- root root 6930 ./usr/include/glib-2.0/glib/glist.h
3072-rw-r--r-- root root 42372 ./usr/include/glib-2.0/glib/gmacros.h
3073-rw-r--r-- root root 28138 ./usr/include/glib-2.0/glib/gmain.h
3074-rw-r--r-- root root 1986 ./usr/include/glib-2.0/glib/gmappedfile.h
3075-rw-r--r-- root root 10876 ./usr/include/glib-2.0/glib/gmarkup.h
3076-rw-r--r-- root root 14684 ./usr/include/glib-2.0/glib/gmem.h
3077-rw-r--r-- root root 26913 ./usr/include/glib-2.0/glib/gmessages.h
3078-rw-r--r-- root root 8700 ./usr/include/glib-2.0/glib/gnode.h
3079-rw-r--r-- root root 16099 ./usr/include/glib-2.0/glib/goption.h
3080-rw-r--r-- root root 1782 ./usr/include/glib-2.0/glib/gpattern.h
3081-rw-r--r-- root root 4125 ./usr/include/glib-2.0/glib/gpoll.h
3082-rw-r--r-- root root 1694 ./usr/include/glib-2.0/glib/gprimes.h
3083-rw-r--r-- root root 1984 ./usr/include/glib-2.0/glib/gprintf.h
3084-rw-r--r-- root root 1499 ./usr/include/glib-2.0/glib/gqsort.h
3085-rw-r--r-- root root 2688 ./usr/include/glib-2.0/glib/gquark.h
3086-rw-r--r-- root root 7750 ./usr/include/glib-2.0/glib/gqueue.h
3087-rw-r--r-- root root 3182 ./usr/include/glib-2.0/glib/grand.h
3088-rw-r--r-- root root 3764 ./usr/include/glib-2.0/glib/grcbox.h
3089-rw-r--r-- root root 3988 ./usr/include/glib-2.0/glib/grefcount.h
3090-rw-r--r-- root root 1868 ./usr/include/glib-2.0/glib/grefstring.h
3091-rw-r--r-- root root 28095 ./usr/include/glib-2.0/glib/gregex.h
3092-rw-r--r-- root root 8861 ./usr/include/glib-2.0/glib/gscanner.h
3093-rw-r--r-- root root 8811 ./usr/include/glib-2.0/glib/gsequence.h
3094-rw-r--r-- root root 1752 ./usr/include/glib-2.0/glib/gshell.h
3095-rw-r--r-- root root 3892 ./usr/include/glib-2.0/glib/gslice.h
3096-rw-r--r-- root root 6551 ./usr/include/glib-2.0/glib/gslist.h
3097-rw-r--r-- root root 11874 ./usr/include/glib-2.0/glib/gspawn.h
3098-rw-r--r-- root root 5109 ./usr/include/glib-2.0/glib/gstdio.h
3099-rw-r--r-- root root 13232 ./usr/include/glib-2.0/glib/gstrfuncs.h
3100-rw-r--r-- root root 2130 ./usr/include/glib-2.0/glib/gstringchunk.h
3101-rw-r--r-- root root 8045 ./usr/include/glib-2.0/glib/gstring.h
3102-rw-r--r-- root root 31435 ./usr/include/glib-2.0/glib/gtestutils.h
3103-rw-r--r-- root root 17496 ./usr/include/glib-2.0/glib/gthread.h
3104-rw-r--r-- root root 3824 ./usr/include/glib-2.0/glib/gthreadpool.h
3105-rw-r--r-- root root 2576 ./usr/include/glib-2.0/glib/gtimer.h
3106-rw-r--r-- root root 3723 ./usr/include/glib-2.0/glib/gtimezone.h
3107-rw-r--r-- root root 1906 ./usr/include/glib-2.0/glib/gtrashstack.h
3108-rw-r--r-- root root 4194 ./usr/include/glib-2.0/glib/gtree.h
3109-rw-r--r-- root root 20493 ./usr/include/glib-2.0/glib/gtypes.h
3110-rw-r--r-- root root 40690 ./usr/include/glib-2.0/glib/gunicode.h
3111-rw-r--r-- root root 2716 ./usr/include/glib-2.0/glib/gurifuncs.h
3112-rw-r--r-- root root 14564 ./usr/include/glib-2.0/glib/gutils.h
3113-rw-r--r-- root root 1291 ./usr/include/glib-2.0/glib/guuid.h
3114-rw-r--r-- root root 29560 ./usr/include/glib-2.0/glib/gvariant.h
3115-rw-r--r-- root root 13244 ./usr/include/glib-2.0/glib/gvarianttype.h
3116-rw-r--r-- root root 1981 ./usr/include/glib-2.0/glib/gversion.h
3117-rw-r--r-- root root 40799 ./usr/include/glib-2.0/glib/gversionmacros.h
3118-rw-r--r-- root root 4667 ./usr/include/glib-2.0/glib/gwin32.h
3119-rw-r--r-- root root 3381 ./usr/include/glib-2.0/glib.h
3120-rw-r--r-- root root 1462 ./usr/include/glib-2.0/glib-object.h
3121-rw-r--r-- root root 4461 ./usr/include/glib-2.0/glib-unix.h
3122-rw-r--r-- root root 4318 ./usr/include/glib-2.0/gmodule.h
3123drwxr-xr-x root root 4096 ./usr/include/glib-2.0/gobject
3124-rw-r--r-- root root 6342 ./usr/include/glib-2.0/gobject/gbinding.h
3125-rw-r--r-- root root 3965 ./usr/include/glib-2.0/gobject/gboxed.h
3126-rw-r--r-- root root 11053 ./usr/include/glib-2.0/gobject/gclosure.h
3127-rw-r--r-- root root 8041 ./usr/include/glib-2.0/gobject/genums.h
3128-rw-r--r-- root root 1026 ./usr/include/glib-2.0/gobject/glib-enumtypes.h
3129-rw-r--r-- root root 8656 ./usr/include/glib-2.0/gobject/glib-types.h
3130-rw-r--r-- root root 21841 ./usr/include/glib-2.0/gobject/gmarshal.h
3131-rw-r--r-- root root 1382 ./usr/include/glib-2.0/gobject/gobject-autocleanups.h
3132-rw-r--r-- root root 34088 ./usr/include/glib-2.0/gobject/gobject.h
3133-rw-r--r-- root root 5516 ./usr/include/glib-2.0/gobject/gobjectnotifyqueue.c
3134-rw-r--r-- root root 16431 ./usr/include/glib-2.0/gobject/gparam.h
3135-rw-r--r-- root root 34850 ./usr/include/glib-2.0/gobject/gparamspecs.h
3136-rw-r--r-- root root 24872 ./usr/include/glib-2.0/gobject/gsignal.h
3137-rw-r--r-- root root 1275 ./usr/include/glib-2.0/gobject/gsourceclosure.h
3138-rw-r--r-- root root 92450 ./usr/include/glib-2.0/gobject/gtype.h
3139-rw-r--r-- root root 10837 ./usr/include/glib-2.0/gobject/gtypemodule.h
3140-rw-r--r-- root root 4965 ./usr/include/glib-2.0/gobject/gtypeplugin.h
3141-rw-r--r-- root root 3218 ./usr/include/glib-2.0/gobject/gvaluearray.h
3142-rw-r--r-- root root 9817 ./usr/include/glib-2.0/gobject/gvaluecollector.h
3143-rw-r--r-- root root 5656 ./usr/include/glib-2.0/gobject/gvalue.h
3144-rw-r--r-- root root 9653 ./usr/include/glib-2.0/gobject/gvaluetypes.h
3145drwxr-xr-x root root 4096 ./usr/include/GL/internal
3146-rw-r--r-- root root 78637 ./usr/include/GL/internal/dri_interface.h
3147-rw-r--r-- root root 6315 ./usr/include/GL/internal/glcore.h
3148-rw-r--r-- root root 6617 ./usr/include/glob.h
3149-rw-r--r-- root root 84177 ./usr/include/gmp-64.h
3150-rw-r--r-- root root 500 ./usr/include/gmp.h
3151-rw-r--r-- root root 129113 ./usr/include/gmpxx.h
3152drwxr-xr-x root root 4096 ./usr/include/gnu
3153-rw-r--r-- root root 1264 ./usr/include/gnu/libc-version.h
3154-rw-r--r-- root root 1665 ./usr/include/gnu/lib-names-64.h
3155-rw-r--r-- root root 467 ./usr/include/gnu/lib-names.h
3156-rw-r--r-- root root 2912 ./usr/include/gnumake.h
3157-rw-r--r-- root root 523 ./usr/include/gnu/stubs-64.h
3158-rw-r--r-- root root 384 ./usr/include/gnu/stubs.h
3159-rw-r--r-- root root 2343 ./usr/include/gnu-versions.h
3160drwxr-xr-x root root 4096 ./usr/include/gobject-introspection-1.0
3161-rw-r--r-- root root 2622 ./usr/include/gobject-introspection-1.0/giarginfo.h
3162-rw-r--r-- root root 3275 ./usr/include/gobject-introspection-1.0/gibaseinfo.h
3163-rw-r--r-- root root 4523 ./usr/include/gobject-introspection-1.0/gicallableinfo.h
3164-rw-r--r-- root root 1769 ./usr/include/gobject-introspection-1.0/giconstantinfo.h
3165-rw-r--r-- root root 2348 ./usr/include/gobject-introspection-1.0/gienuminfo.h
3166-rw-r--r-- root root 2129 ./usr/include/gobject-introspection-1.0/gifieldinfo.h
3167-rw-r--r-- root root 2877 ./usr/include/gobject-introspection-1.0/gifunctioninfo.h
3168-rw-r--r-- root root 3418 ./usr/include/gobject-introspection-1.0/giinterfaceinfo.h
3169-rw-r--r-- root root 6060 ./usr/include/gobject-introspection-1.0/giobjectinfo.h
3170-rw-r--r-- root root 1685 ./usr/include/gobject-introspection-1.0/gipropertyinfo.h
3171-rw-r--r-- root root 2363 ./usr/include/gobject-introspection-1.0/giregisteredtypeinfo.h
3172-rw-r--r-- root root 8052 ./usr/include/gobject-introspection-1.0/girepository.h
3173-rw-r--r-- root root 3468 ./usr/include/gobject-introspection-1.0/girffi.h
3174-rw-r--r-- root root 1696 ./usr/include/gobject-introspection-1.0/gisignalinfo.h
3175-rw-r--r-- root root 2403 ./usr/include/gobject-introspection-1.0/gistructinfo.h
3176-rw-r--r-- root root 2556 ./usr/include/gobject-introspection-1.0/gitypeinfo.h
3177-rw-r--r-- root root 2327 ./usr/include/gobject-introspection-1.0/gitypelib.h
3178-rw-r--r-- root root 14019 ./usr/include/gobject-introspection-1.0/gitypes.h
3179-rw-r--r-- root root 2558 ./usr/include/gobject-introspection-1.0/giunioninfo.h
3180-rw-r--r-- root root 1578 ./usr/include/gobject-introspection-1.0/giversion.h
3181-rw-r--r-- root root 5730 ./usr/include/gobject-introspection-1.0/giversionmacros.h
3182-rw-r--r-- root root 2572 ./usr/include/gobject-introspection-1.0/givfuncinfo.h
3183-rw-r--r-- root root 6687 ./usr/include/grp.h
3184-rw-r--r-- root root 4529 ./usr/include/gshadow.h
3185-rw-r--r-- root root 1858 ./usr/include/iconv.h
3186-rw-r--r-- root root 4916 ./usr/include/ieee754.h
3187-rw-r--r-- root root 2841 ./usr/include/ifaddrs.h
3188-rw-r--r-- root root 2446 ./usr/include/initreq.h
3189-rw-r--r-- root root 11893 ./usr/include/inttypes.h
3190drwxr-xr-x root root 4096 ./usr/include/iproute2
3191-rw-r--r-- root root 1271 ./usr/include/iproute2/bpf_elf.h
3192-rw-r--r-- root root 17849 ./usr/include/langinfo.h
3193-rw-r--r-- root root 126 ./usr/include/lastlog.h
3194drwxr-xr-x root root 4096 ./usr/include/libdrm
3195-rw-r--r-- root root 31894 ./usr/include/libdrm/amdgpu_drm.h
3196-rw-r--r-- root root 55079 ./usr/include/libdrm/amdgpu.h
3197-rw-r--r-- root root 32818 ./usr/include/libdrm/drm_fourcc.h
3198-rw-r--r-- root root 32306 ./usr/include/libdrm/drm.h
3199-rw-r--r-- root root 24920 ./usr/include/libdrm/drm_mode.h
3200-rw-r--r-- root root 2782 ./usr/include/libdrm/drm_sarea.h
3201-rw-r--r-- root root 6977 ./usr/include/libdrm/etnaviv_drmif.h
3202-rw-r--r-- root root 62951 ./usr/include/libdrm/i915_drm.h
3203-rw-r--r-- root root 5933 ./usr/include/libdrm/intel_aub.h
3204-rw-r--r-- root root 12892 ./usr/include/libdrm/intel_bufmgr.h
3205-rw-r--r-- root root 1585 ./usr/include/libdrm/intel_debug.h
3206-rw-r--r-- root root 7895 ./usr/include/libdrm/mach64_drm.h
3207-rw-r--r-- root root 13010 ./usr/include/libdrm/mga_drm.h
3208-rw-r--r-- root root 12105 ./usr/include/libdrm/msm_drm.h
3209drwxr-xr-x root root 4096 ./usr/include/libdrm/nouveau
3210-rw-r--r-- root root 5699 ./usr/include/libdrm/nouveau_drm.h
3211-rw-r--r-- root root 7766 ./usr/include/libdrm/nouveau/nouveau.h
3212drwxr-xr-x root root 4096 ./usr/include/libdrm/nouveau/nvif
3213-rw-r--r-- root root 1785 ./usr/include/libdrm/nouveau/nvif/cl0080.h
3214-rw-r--r-- root root 2062 ./usr/include/libdrm/nouveau/nvif/cl9097.h
3215-rw-r--r-- root root 8789 ./usr/include/libdrm/nouveau/nvif/class.h
3216-rw-r--r-- root root 769 ./usr/include/libdrm/nouveau/nvif/if0002.h
3217-rw-r--r-- root root 645 ./usr/include/libdrm/nouveau/nvif/if0003.h
3218-rw-r--r-- root root 3174 ./usr/include/libdrm/nouveau/nvif/ioctl.h
3219-rw-r--r-- root root 1551 ./usr/include/libdrm/nouveau/nvif/unpack.h
3220-rw-r--r-- root root 2555 ./usr/include/libdrm/omap_drmif.h
3221-rw-r--r-- root root 4131 ./usr/include/libdrm/qxl_drm.h
3222-rw-r--r-- root root 10000 ./usr/include/libdrm/r128_drm.h
3223-rw-r--r-- root root 16388 ./usr/include/libdrm/r600_pci_ids.h
3224-rw-r--r-- root root 1991 ./usr/include/libdrm/radeon_bo_gem.h
3225-rw-r--r-- root root 2839 ./usr/include/libdrm/radeon_bo.h
3226-rw-r--r-- root root 1678 ./usr/include/libdrm/radeon_bo_int.h
3227-rw-r--r-- root root 1601 ./usr/include/libdrm/radeon_cs_gem.h
3228-rw-r--r-- root root 5121 ./usr/include/libdrm/radeon_cs.h
3229-rw-r--r-- root root 2179 ./usr/include/libdrm/radeon_cs_int.h
3230-rw-r--r-- root root 38317 ./usr/include/libdrm/radeon_drm.h
3231-rw-r--r-- root root 5968 ./usr/include/libdrm/radeon_surface.h
3232-rw-r--r-- root root 7170 ./usr/include/libdrm/savage_drm.h
3233-rw-r--r-- root root 2633 ./usr/include/libdrm/sis_drm.h
3234-rw-r--r-- root root 14877 ./usr/include/libdrm/tegra_drm.h
3235-rw-r--r-- root root 14457 ./usr/include/libdrm/vc4_drm.h
3236-rw-r--r-- root root 16906 ./usr/include/libdrm/vc4_packet.h
3237-rw-r--r-- root root 8244 ./usr/include/libdrm/vc4_qpu_defines.h
3238-rw-r--r-- root root 8372 ./usr/include/libdrm/via_drm.h
3239-rw-r--r-- root root 5010 ./usr/include/libdrm/virtgpu_drm.h
3240-rw-r--r-- root root 32085 ./usr/include/libdrm/vmwgfx_drm.h
3241-rw-r--r-- root root 19573 ./usr/include/libelf.h
3242drwxr-xr-x root root 4096 ./usr/include/libfdisk
3243-rw-r--r-- root root 29857 ./usr/include/libfdisk/libfdisk.h
3244-rw-r--r-- root root 1386 ./usr/include/libgen.h
3245drwxr-xr-x root root 4096 ./usr/include/libiberty
3246-rw-r--r-- root root 14130 ./usr/include/libiberty/ansidecl.h
3247-rw-r--r-- root root 27301 ./usr/include/libiberty/demangle.h
3248-rw-r--r-- root root 2706 ./usr/include/libiberty/dyn-string.h
3249-rw-r--r-- root root 2937 ./usr/include/libiberty/fibheap.h
3250-rw-r--r-- root root 5890 ./usr/include/libiberty/floatformat.h
3251-rw-r--r-- root root 27820 ./usr/include/libiberty.h
3252-rw-r--r-- root root 7270 ./usr/include/libiberty/hashtab.h
3253-rw-r--r-- root root 27820 ./usr/include/libiberty/libiberty.h
3254-rw-r--r-- root root 3976 ./usr/include/libiberty/objalloc.h
3255-rw-r--r-- root root 2824 ./usr/include/libiberty/partition.h
3256-rw-r--r-- root root 5642 ./usr/include/libiberty/safe-ctype.h
3257-rw-r--r-- root root 1209 ./usr/include/libiberty/sort.h
3258-rw-r--r-- root root 6238 ./usr/include/libiberty/splay-tree.h
3259-rw-r--r-- root root 1296 ./usr/include/libiberty/timeval-utils.h
3260-rw-r--r-- root root 4580 ./usr/include/libintl.h
3261drwxr-xr-x root root 4096 ./usr/include/libiptc
3262-rw-r--r-- root root 360 ./usr/include/libiptc/ipt_kernel_headers.h
3263-rw-r--r-- root root 5375 ./usr/include/libiptc/libip6tc.h
3264-rw-r--r-- root root 5447 ./usr/include/libiptc/libiptc.h
3265-rw-r--r-- root root 724 ./usr/include/libiptc/libxtc.h
3266-rw-r--r-- root root 867 ./usr/include/libiptc/xtcshared.h
3267-rw-r--r-- root root 9433 ./usr/include/libkmod.h
3268drwxr-xr-x root root 4096 ./usr/include/libkms
3269-rw-r--r-- root root 2571 ./usr/include/libkms/libkms.h
3270drwxr-xr-x root root 4096 ./usr/include/libmnl
3271-rw-r--r-- root root 8002 ./usr/include/libmnl/libmnl.h
3272drwxr-xr-x root root 4096 ./usr/include/libmount
3273-rw-r--r-- root root 36308 ./usr/include/libmount/libmount.h
3274drwxr-xr-x root root 4096 ./usr/include/libpng16
3275-rw-r--r-- root root 22846 ./usr/include/libpng16/pngconf.h
3276-rw-r--r-- root root 142860 ./usr/include/libpng16/png.h
3277-rw-r--r-- root root 7629 ./usr/include/libpng16/pnglibconf.h
3278drwxr-xr-x root root 4096 ./usr/include/libsmartcols
3279-rw-r--r-- root root 15473 ./usr/include/libsmartcols/libsmartcols.h
3280-rw-r--r-- root root 3466 ./usr/include/libsync.h
3281-rw-r--r-- root root 10327 ./usr/include/libudev.h
3282drwxr-xr-x root root 4096 ./usr/include/libxml2
3283drwxr-xr-x root root 4096 ./usr/include/libxml2/libxml
3284-rw-r--r-- root root 3115 ./usr/include/libxml2/libxml/c14n.h
3285-rw-r--r-- root root 4906 ./usr/include/libxml2/libxml/catalog.h
3286-rw-r--r-- root root 5159 ./usr/include/libxml2/libxml/chvalid.h
3287-rw-r--r-- root root 5152 ./usr/include/libxml2/libxml/debugXML.h
3288-rw-r--r-- root root 1814 ./usr/include/libxml2/libxml/dict.h
3289-rw-r--r-- root root 3157 ./usr/include/libxml2/libxml/DOCBparser.h
3290-rw-r--r-- root root 8507 ./usr/include/libxml2/libxml/encoding.h
3291-rw-r--r-- root root 4712 ./usr/include/libxml2/libxml/entities.h
3292-rw-r--r-- root root 14670 ./usr/include/libxml2/libxml/globals.h
3293-rw-r--r-- root root 6601 ./usr/include/libxml2/libxml/hash.h
3294-rw-r--r-- root root 9410 ./usr/include/libxml2/libxml/HTMLparser.h
3295-rw-r--r-- root root 3646 ./usr/include/libxml2/libxml/HTMLtree.h
3296-rw-r--r-- root root 3348 ./usr/include/libxml2/libxml/list.h
3297-rw-r--r-- root root 3758 ./usr/include/libxml2/libxml/nanoftp.h
3298-rw-r--r-- root root 2005 ./usr/include/libxml2/libxml/nanohttp.h
3299-rw-r--r-- root root 39718 ./usr/include/libxml2/libxml/parser.h
3300-rw-r--r-- root root 17419 ./usr/include/libxml2/libxml/parserInternals.h
3301-rw-r--r-- root root 2586 ./usr/include/libxml2/libxml/pattern.h
3302-rw-r--r-- root root 5996 ./usr/include/libxml2/libxml/relaxng.h
3303-rw-r--r-- root root 4949 ./usr/include/libxml2/libxml/SAX2.h
3304-rw-r--r-- root root 4341 ./usr/include/libxml2/libxml/SAX.h
3305-rw-r--r-- root root 26224 ./usr/include/libxml2/libxml/schemasInternals.h
3306-rw-r--r-- root root 4371 ./usr/include/libxml2/libxml/schematron.h
3307-rw-r--r-- root root 1958 ./usr/include/libxml2/libxml/threads.h
3308-rw-r--r-- root root 38108 ./usr/include/libxml2/libxml/tree.h
3309-rw-r--r-- root root 2664 ./usr/include/libxml2/libxml/uri.h
3310-rw-r--r-- root root 13622 ./usr/include/libxml2/libxml/valid.h
3311-rw-r--r-- root root 2967 ./usr/include/libxml2/libxml/xinclude.h
3312-rw-r--r-- root root 5042 ./usr/include/libxml2/libxml/xlink.h
3313-rw-r--r-- root root 3956 ./usr/include/libxml2/libxml/xmlautomata.h
3314-rw-r--r-- root root 36809 ./usr/include/libxml2/libxml/xmlerror.h
3315-rw-r--r-- root root 3759 ./usr/include/libxml2/libxml/xmlexports.h
3316-rw-r--r-- root root 10605 ./usr/include/libxml2/libxml/xmlIO.h
3317-rw-r--r-- root root 5945 ./usr/include/libxml2/libxml/xmlmemory.h
3318-rw-r--r-- root root 1170 ./usr/include/libxml2/libxml/xmlmodule.h
3319-rw-r--r-- root root 12607 ./usr/include/libxml2/libxml/xmlreader.h
3320-rw-r--r-- root root 5458 ./usr/include/libxml2/libxml/xmlregexp.h
3321-rw-r--r-- root root 2337 ./usr/include/libxml2/libxml/xmlsave.h
3322-rw-r--r-- root root 7069 ./usr/include/libxml2/libxml/xmlschemas.h
3323-rw-r--r-- root root 4841 ./usr/include/libxml2/libxml/xmlschemastypes.h
3324-rw-r--r-- root root 5511 ./usr/include/libxml2/libxml/xmlstring.h
3325-rw-r--r-- root root 9993 ./usr/include/libxml2/libxml/xmlunicode.h
3326-rw-r--r-- root root 8035 ./usr/include/libxml2/libxml/xmlversion.h
3327-rw-r--r-- root root 21265 ./usr/include/libxml2/libxml/xmlwriter.h
3328-rw-r--r-- root root 16602 ./usr/include/libxml2/libxml/xpath.h
3329-rw-r--r-- root root 19353 ./usr/include/libxml2/libxml/xpathInternals.h
3330-rw-r--r-- root root 3359 ./usr/include/libxml2/libxml/xpointer.h
3331-rw-r--r-- root root 5417 ./usr/include/limits.h
3332-rw-r--r-- root root 7207 ./usr/include/link.h
3333drwxr-xr-x root root 20480 ./usr/include/linux
3334-rw-r--r-- root root 3733 ./usr/include/linux/acct.h
3335-rw-r--r-- root root 1140 ./usr/include/linux/adb.h
3336-rw-r--r-- root root 993 ./usr/include/linux/adfs_fs.h
3337-rw-r--r-- root root 1544 ./usr/include/linux/affs_hardblocks.h
3338-rw-r--r-- root root 3940 ./usr/include/linux/agpgart.h
3339-rw-r--r-- root root 3398 ./usr/include/linux/aio_abi.h
3340-rw-r--r-- root root 3681 ./usr/include/linux/am437x-vpfe.h
3341drwxr-xr-x root root 4096 ./usr/include/linux/android
3342-rw-r--r-- root root 789 ./usr/include/linux/android/binderfs.h
3343-rw-r--r-- root root 14535 ./usr/include/linux/android/binder.h
3344-rw-r--r-- root root 6892 ./usr/include/linux/a.out.h
3345-rw-r--r-- root root 3683 ./usr/include/linux/apm_bios.h
3346-rw-r--r-- root root 213 ./usr/include/linux/arcfb.h
3347-rw-r--r-- root root 2751 ./usr/include/linux/arm_sdei.h
3348-rw-r--r-- root root 1780 ./usr/include/linux/aspeed-lpc-ctrl.h
3349-rw-r--r-- root root 1906 ./usr/include/linux/aspeed-p2a-ctrl.h
3350-rw-r--r-- root root 1023 ./usr/include/linux/atalk.h
3351-rw-r--r-- root root 952 ./usr/include/linux/atmapi.h
3352-rw-r--r-- root root 1296 ./usr/include/linux/atmarp.h
3353-rw-r--r-- root root 3271 ./usr/include/linux/atmbr2684.h
3354-rw-r--r-- root root 576 ./usr/include/linux/atmclip.h
3355-rw-r--r-- root root 7677 ./usr/include/linux/atmdev.h
3356-rw-r--r-- root root 648 ./usr/include/linux/atm_eni.h
3357-rw-r--r-- root root 7888 ./usr/include/linux/atm.h
3358-rw-r--r-- root root 406 ./usr/include/linux/atm_he.h
3359-rw-r--r-- root root 955 ./usr/include/linux/atm_idt77105.h
3360-rw-r--r-- root root 1646 ./usr/include/linux/atmioc.h
3361-rw-r--r-- root root 2381 ./usr/include/linux/atmlec.h
3362-rw-r--r-- root root 4226 ./usr/include/linux/atmmpc.h
3363-rw-r--r-- root root 1278 ./usr/include/linux/atm_nicstar.h
3364-rw-r--r-- root root 639 ./usr/include/linux/atmppp.h
3365-rw-r--r-- root root 4970 ./usr/include/linux/atmsap.h
3366-rw-r--r-- root root 1853 ./usr/include/linux/atmsvc.h
3367-rw-r--r-- root root 1622 ./usr/include/linux/atm_tcp.h
3368-rw-r--r-- root root 1540 ./usr/include/linux/atm_zatm.h
3369-rw-r--r-- root root 20759 ./usr/include/linux/audit.h
3370-rw-r--r-- root root 4986 ./usr/include/linux/auto_dev-ioctl.h
3371-rw-r--r-- root root 451 ./usr/include/linux/auto_fs4.h
3372-rw-r--r-- root root 6428 ./usr/include/linux/auto_fs.h
3373-rw-r--r-- root root 1496 ./usr/include/linux/auxvec.h
3374-rw-r--r-- root root 2824 ./usr/include/linux/ax25.h
3375-rw-r--r-- root root 1717 ./usr/include/linux/b1lli.h
3376-rw-r--r-- root root 20373 ./usr/include/linux/batadv_packet.h
3377-rw-r--r-- root root 16306 ./usr/include/linux/batman_adv.h
3378-rw-r--r-- root root 883 ./usr/include/linux/baycom.h
3379-rw-r--r-- root root 8425 ./usr/include/linux/bcache.h
3380-rw-r--r-- root root 419 ./usr/include/linux/bcm933xx_hcs.h
3381-rw-r--r-- root root 1905 ./usr/include/linux/bfs_fs.h
3382-rw-r--r-- root root 628 ./usr/include/linux/binfmts.h
3383-rw-r--r-- root root 1634 ./usr/include/linux/blkpg.h
3384-rw-r--r-- root root 4701 ./usr/include/linux/blktrace_api.h
3385-rw-r--r-- root root 5368 ./usr/include/linux/blkzoned.h
3386-rw-r--r-- root root 1367 ./usr/include/linux/bpf_common.h
3387-rw-r--r-- root root 138331 ./usr/include/linux/bpf.h
3388-rw-r--r-- root root 465 ./usr/include/linux/bpfilter.h
3389-rw-r--r-- root root 529 ./usr/include/linux/bpf_perf_event.h
3390-rw-r--r-- root root 981 ./usr/include/linux/bpqether.h
3391-rw-r--r-- root root 2494 ./usr/include/linux/bsg.h
3392-rw-r--r-- root root 572 ./usr/include/linux/bt-bmc.h
3393-rw-r--r-- root root 4624 ./usr/include/linux/btf.h
3394-rw-r--r-- root root 29142 ./usr/include/linux/btrfs.h
3395-rw-r--r-- root root 25245 ./usr/include/linux/btrfs_tree.h
3396drwxr-xr-x root root 4096 ./usr/include/linux/byteorder
3397-rw-r--r-- root root 3542 ./usr/include/linux/byteorder/big_endian.h
3398-rw-r--r-- root root 3611 ./usr/include/linux/byteorder/little_endian.h
3399drwxr-xr-x root root 4096 ./usr/include/linux/caif
3400-rw-r--r-- root root 5832 ./usr/include/linux/caif/caif_socket.h
3401-rw-r--r-- root root 1041 ./usr/include/linux/caif/if_caif.h
3402drwxr-xr-x root root 4096 ./usr/include/linux/can
3403-rw-r--r-- root root 4116 ./usr/include/linux/can/bcm.h
3404-rw-r--r-- root root 6610 ./usr/include/linux/can/error.h
3405-rw-r--r-- root root 8031 ./usr/include/linux/can/gw.h
3406-rw-r--r-- root root 8213 ./usr/include/linux/can.h
3407-rw-r--r-- root root 2207 ./usr/include/linux/can/j1939.h
3408-rw-r--r-- root root 3993 ./usr/include/linux/can/netlink.h
3409-rw-r--r-- root root 2858 ./usr/include/linux/can/raw.h
3410-rw-r--r-- root root 232 ./usr/include/linux/can/vxcan.h
3411-rw-r--r-- root root 11780 ./usr/include/linux/capability.h
3412-rw-r--r-- root root 3124 ./usr/include/linux/capi.h
3413-rw-r--r-- root root 3281 ./usr/include/linux/cciss_defs.h
3414-rw-r--r-- root root 2761 ./usr/include/linux/cciss_ioctl.h
3415-rw-r--r-- root root 28859 ./usr/include/linux/cdrom.h
3416-rw-r--r-- root root 53535 ./usr/include/linux/cec-funcs.h
3417-rw-r--r-- root root 36389 ./usr/include/linux/cec.h
3418-rw-r--r-- root root 2219 ./usr/include/linux/cgroupstats.h
3419-rw-r--r-- root root 5344 ./usr/include/linux/chio.h
3420drwxr-xr-x root root 4096 ./usr/include/linux/cifs
3421-rw-r--r-- root root 1225 ./usr/include/linux/cifs/cifs_mount.h
3422-rw-r--r-- root root 1806 ./usr/include/linux/cm4000_cs.h
3423-rw-r--r-- root root 3456 ./usr/include/linux/cn_proc.h
3424-rw-r--r-- root root 18216 ./usr/include/linux/coda.h
3425-rw-r--r-- root root 12549 ./usr/include/linux/coff.h
3426-rw-r--r-- root root 2253 ./usr/include/linux/connector.h
3427-rw-r--r-- root root 788 ./usr/include/linux/const.h
3428-rw-r--r-- root root 674 ./usr/include/linux/coresight-stm.h
3429-rw-r--r-- root root 3555 ./usr/include/linux/cramfs_fs.h
3430-rw-r--r-- root root 5321 ./usr/include/linux/cryptouser.h
3431-rw-r--r-- root root 905 ./usr/include/linux/cuda.h
3432-rw-r--r-- root root 17108 ./usr/include/linux/cyclades.h
3433-rw-r--r-- root root 2990 ./usr/include/linux/cycx_cfm.h
3434-rw-r--r-- root root 25291 ./usr/include/linux/dcbnl.h
3435-rw-r--r-- root root 6436 ./usr/include/linux/dccp.h
3436-rw-r--r-- root root 14860 ./usr/include/linux/devlink.h
3437-rw-r--r-- root root 5080 ./usr/include/linux/dlmconstants.h
3438-rw-r--r-- root root 2543 ./usr/include/linux/dlm_device.h
3439-rw-r--r-- root root 2553 ./usr/include/linux/dlm.h
3440-rw-r--r-- root root 1159 ./usr/include/linux/dlm_netlink.h
3441-rw-r--r-- root root 894 ./usr/include/linux/dlm_plock.h
3442-rw-r--r-- root root 1448 ./usr/include/linux/dma-buf.h
3443-rw-r--r-- root root 10988 ./usr/include/linux/dm-ioctl.h
3444-rw-r--r-- root root 15191 ./usr/include/linux/dm-log-userspace.h
3445-rw-r--r-- root root 4642 ./usr/include/linux/dn.h
3446-rw-r--r-- root root 3949 ./usr/include/linux/dns_resolver.h
3447-rw-r--r-- root root 8999 ./usr/include/linux/dqblk_xfs.h
3448drwxr-xr-x root root 4096 ./usr/include/linux/dvb
3449-rw-r--r-- root root 3550 ./usr/include/linux/dvb/audio.h
3450-rw-r--r-- root root 4247 ./usr/include/linux/dvb/ca.h
3451-rw-r--r-- root root 10177 ./usr/include/linux/dvb/dmx.h
3452-rw-r--r-- root root 29244 ./usr/include/linux/dvb/frontend.h
3453-rw-r--r-- root root 2127 ./usr/include/linux/dvb/net.h
3454-rw-r--r-- root root 5937 ./usr/include/linux/dvb/osd.h
3455-rw-r--r-- root root 1082 ./usr/include/linux/dvb/version.h
3456-rw-r--r-- root root 7106 ./usr/include/linux/dvb/video.h
3457-rw-r--r-- root root 5604 ./usr/include/linux/edd.h
3458-rw-r--r-- root root 2227 ./usr/include/linux/efs_fs_sb.h
3459-rw-r--r-- root root 2995 ./usr/include/linux/elfcore.h
3460-rw-r--r-- root root 2586 ./usr/include/linux/elf-em.h
3461-rw-r--r-- root root 1124 ./usr/include/linux/elf-fdpic.h
3462-rw-r--r-- root root 13642 ./usr/include/linux/elf.h
3463-rw-r--r-- root root 23 ./usr/include/linux/errno.h
3464-rw-r--r-- root root 1572 ./usr/include/linux/errqueue.h
3465-rw-r--r-- root root 1059 ./usr/include/linux/erspan.h
3466-rw-r--r-- root root 74781 ./usr/include/linux/ethtool.h
3467-rw-r--r-- root root 2743 ./usr/include/linux/eventpoll.h
3468-rw-r--r-- root root 842 ./usr/include/linux/fadvise.h
3469-rw-r--r-- root root 3584 ./usr/include/linux/falloc.h
3470-rw-r--r-- root root 5369 ./usr/include/linux/fanotify.h
3471-rw-r--r-- root root 16412 ./usr/include/linux/fb.h
3472-rw-r--r-- root root 3438 ./usr/include/linux/fcntl.h
3473-rw-r--r-- root root 11672 ./usr/include/linux/fd.h
3474-rw-r--r-- root root 5420 ./usr/include/linux/fdreg.h
3475-rw-r--r-- root root 2036 ./usr/include/linux/fib_rules.h
3476-rw-r--r-- root root 2775 ./usr/include/linux/fiemap.h
3477-rw-r--r-- root root 2216 ./usr/include/linux/filter.h
3478-rw-r--r-- root root 44242 ./usr/include/linux/firewire-cdev.h
3479-rw-r--r-- root root 3231 ./usr/include/linux/firewire-constants.h
3480-rw-r--r-- root root 894 ./usr/include/linux/fou.h
3481-rw-r--r-- root root 6103 ./usr/include/linux/fpga-dfl.h
3482-rw-r--r-- root root 6104 ./usr/include/linux/fscrypt.h
3483-rw-r--r-- root root 12205 ./usr/include/linux/fs.h
3484-rw-r--r-- root root 2255 ./usr/include/linux/fsi.h
3485-rw-r--r-- root root 7301 ./usr/include/linux/fsl_hypervisor.h
3486-rw-r--r-- root root 4393 ./usr/include/linux/fsmap.h
3487-rw-r--r-- root root 931 ./usr/include/linux/fsverity.h
3488-rw-r--r-- root root 20407 ./usr/include/linux/fuse.h
3489-rw-r--r-- root root 4993 ./usr/include/linux/futex.h
3490-rw-r--r-- root root 897 ./usr/include/linux/gameport.h
3491-rw-r--r-- root root 1923 ./usr/include/linux/genetlink.h
3492-rw-r--r-- root root 1599 ./usr/include/linux/gen_stats.h
3493drwxr-xr-x root root 4096 ./usr/include/linux/genwqe
3494-rw-r--r-- root root 17802 ./usr/include/linux/genwqe/genwqe_card.h
3495-rw-r--r-- root root 14651 ./usr/include/linux/gfs2_ondisk.h
3496-rw-r--r-- root root 1442 ./usr/include/linux/gigaset_dev.h
3497-rw-r--r-- root root 5753 ./usr/include/linux/gpio.h
3498-rw-r--r-- root root 1144 ./usr/include/linux/gsmmux.h
3499-rw-r--r-- root root 681 ./usr/include/linux/gtp.h
3500-rw-r--r-- root root 971 ./usr/include/linux/hash_info.h
3501drwxr-xr-x root root 4096 ./usr/include/linux/hdlc
3502-rw-r--r-- root root 2908 ./usr/include/linux/hdlcdrv.h
3503-rw-r--r-- root root 637 ./usr/include/linux/hdlc.h
3504-rw-r--r-- root root 2657 ./usr/include/linux/hdlc/ioctl.h
3505-rw-r--r-- root root 22703 ./usr/include/linux/hdreg.h
3506-rw-r--r-- root root 6345 ./usr/include/linux/hiddev.h
3507-rw-r--r-- root root 1901 ./usr/include/linux/hid.h
3508-rw-r--r-- root root 1511 ./usr/include/linux/hidraw.h
3509-rw-r--r-- root root 743 ./usr/include/linux/hpet.h
3510drwxr-xr-x root root 4096 ./usr/include/linux/hsi
3511-rw-r--r-- root root 3656 ./usr/include/linux/hsi/cs-protocol.h
3512-rw-r--r-- root root 1895 ./usr/include/linux/hsi/hsi_char.h
3513-rw-r--r-- root root 1081 ./usr/include/linux/hsr_netlink.h
3514-rw-r--r-- root root 742 ./usr/include/linux/hw_breakpoint.h
3515-rw-r--r-- root root 10569 ./usr/include/linux/hyperv.h
3516-rw-r--r-- root root 1382 ./usr/include/linux/hysdn_if.h
3517-rw-r--r-- root root 2612 ./usr/include/linux/i2c-dev.h
3518-rw-r--r-- root root 7132 ./usr/include/linux/i2c.h
3519-rw-r--r-- root root 11555 ./usr/include/linux/i2o-dev.h
3520-rw-r--r-- root root 1528 ./usr/include/linux/i8k.h
3521-rw-r--r-- root root 2975 ./usr/include/linux/icmp.h
3522-rw-r--r-- root root 4083 ./usr/include/linux/icmpv6.h
3523-rw-r--r-- root root 1886 ./usr/include/linux/if_addr.h
3524-rw-r--r-- root root 721 ./usr/include/linux/if_addrlabel.h
3525-rw-r--r-- root root 946 ./usr/include/linux/if_alg.h
3526-rw-r--r-- root root 3717 ./usr/include/linux/if_arcnet.h
3527-rw-r--r-- root root 6565 ./usr/include/linux/if_arp.h
3528-rw-r--r-- root root 4839 ./usr/include/linux/if_bonding.h
3529-rw-r--r-- root root 7266 ./usr/include/linux/if_bridge.h
3530-rw-r--r-- root root 986 ./usr/include/linux/if_cablemodem.h
3531-rw-r--r-- root root 351 ./usr/include/linux/ife.h
3532-rw-r--r-- root root 1349 ./usr/include/linux/if_eql.h
3533-rw-r--r-- root root 8227 ./usr/include/linux/if_ether.h
3534-rw-r--r-- root root 1738 ./usr/include/linux/if_fc.h
3535-rw-r--r-- root root 4372 ./usr/include/linux/if_fddi.h
3536-rw-r--r-- root root 3019 ./usr/include/linux/if_frad.h
3537-rw-r--r-- root root 10813 ./usr/include/linux/if.h
3538-rw-r--r-- root root 4235 ./usr/include/linux/if_hippi.h
3539-rw-r--r-- root root 1245 ./usr/include/linux/if_infiniband.h
3540-rw-r--r-- root root 23649 ./usr/include/linux/if_link.h
3541-rw-r--r-- root root 210 ./usr/include/linux/if_ltalk.h
3542-rw-r--r-- root root 5832 ./usr/include/linux/if_macsec.h
3543-rw-r--r-- root root 7955 ./usr/include/linux/if_packet.h
3544-rw-r--r-- root root 424 ./usr/include/linux/if_phonet.h
3545-rw-r--r-- root root 660 ./usr/include/linux/if_plip.h
3546-rw-r--r-- root root 29 ./usr/include/linux/if_ppp.h
3547-rw-r--r-- root root 3292 ./usr/include/linux/if_pppol2tp.h
3548-rw-r--r-- root root 4879 ./usr/include/linux/if_pppox.h
3549-rw-r--r-- root root 872 ./usr/include/linux/if_slip.h
3550-rw-r--r-- root root 2600 ./usr/include/linux/if_team.h
3551-rw-r--r-- root root 4098 ./usr/include/linux/if_tun.h
3552-rw-r--r-- root root 4512 ./usr/include/linux/if_tunnel.h
3553-rw-r--r-- root root 1831 ./usr/include/linux/if_vlan.h
3554-rw-r--r-- root root 881 ./usr/include/linux/if_x25.h
3555-rw-r--r-- root root 2819 ./usr/include/linux/if_xdp.h
3556-rw-r--r-- root root 3064 ./usr/include/linux/igmp.h
3557drwxr-xr-x root root 4096 ./usr/include/linux/iio
3558-rw-r--r-- root root 1390 ./usr/include/linux/iio/events.h
3559-rw-r--r-- root root 2114 ./usr/include/linux/iio/types.h
3560-rw-r--r-- root root 1246 ./usr/include/linux/ila.h
3561-rw-r--r-- root root 7505 ./usr/include/linux/in6.h
3562-rw-r--r-- root root 4540 ./usr/include/linux/inet_diag.h
3563-rw-r--r-- root root 9881 ./usr/include/linux/in.h
3564-rw-r--r-- root root 3292 ./usr/include/linux/inotify.h
3565-rw-r--r-- root root 25218 ./usr/include/linux/input-event-codes.h
3566-rw-r--r-- root root 15964 ./usr/include/linux/input.h
3567-rw-r--r-- root root 936 ./usr/include/linux/in_route.h
3568-rw-r--r-- root root 163 ./usr/include/linux/ioctl.h
3569-rw-r--r-- root root 4578 ./usr/include/linux/iommu.h
3570-rw-r--r-- root root 3478 ./usr/include/linux/io_uring.h
3571-rw-r--r-- root root 1953 ./usr/include/linux/ip6_tunnel.h
3572-rw-r--r-- root root 2101 ./usr/include/linux/ipc.h
3573-rw-r--r-- root root 4728 ./usr/include/linux/ip.h
3574-rw-r--r-- root root 488 ./usr/include/linux/ipmi_bmc.h
3575-rw-r--r-- root root 15049 ./usr/include/linux/ipmi.h
3576-rw-r--r-- root root 3350 ./usr/include/linux/ipmi_msgdefs.h
3577-rw-r--r-- root root 947 ./usr/include/linux/ipsec.h
3578-rw-r--r-- root root 3967 ./usr/include/linux/ipv6.h
3579-rw-r--r-- root root 1908 ./usr/include/linux/ipv6_route.h
3580-rw-r--r-- root root 14135 ./usr/include/linux/ip_vs.h
3581-rw-r--r-- root root 2347 ./usr/include/linux/ipx.h
3582-rw-r--r-- root root 104 ./usr/include/linux/irqnr.h
3583drwxr-xr-x root root 4096 ./usr/include/linux/isdn
3584-rw-r--r-- root root 4783 ./usr/include/linux/isdn/capicmd.h
3585-rw-r--r-- root root 6485 ./usr/include/linux/iso_fs.h
3586-rw-r--r-- root root 5408 ./usr/include/linux/isst_if.h
3587-rw-r--r-- root root 1207 ./usr/include/linux/ivtvfb.h
3588-rw-r--r-- root root 3022 ./usr/include/linux/ivtv.h
3589-rw-r--r-- root root 6815 ./usr/include/linux/jffs2.h
3590-rw-r--r-- root root 3434 ./usr/include/linux/joystick.h
3591-rw-r--r-- root root 822 ./usr/include/linux/kcm.h
3592-rw-r--r-- root root 522 ./usr/include/linux/kcmp.h
3593-rw-r--r-- root root 1099 ./usr/include/linux/kcov.h
3594-rw-r--r-- root root 383 ./usr/include/linux/kdev_t.h
3595-rw-r--r-- root root 6253 ./usr/include/linux/kd.h
3596-rw-r--r-- root root 1019 ./usr/include/linux/kernelcapi.h
3597-rw-r--r-- root root 438 ./usr/include/linux/kernel.h
3598-rw-r--r-- root root 900 ./usr/include/linux/kernel-page-flags.h
3599-rw-r--r-- root root 1873 ./usr/include/linux/kexec.h
3600-rw-r--r-- root root 13459 ./usr/include/linux/keyboard.h
3601-rw-r--r-- root root 5837 ./usr/include/linux/keyctl.h
3602-rw-r--r-- root root 16263 ./usr/include/linux/kfd_ioctl.h
3603-rw-r--r-- root root 46258 ./usr/include/linux/kvm.h
3604-rw-r--r-- root root 968 ./usr/include/linux/kvm_para.h
3605-rw-r--r-- root root 5672 ./usr/include/linux/l2tp.h
3606-rw-r--r-- root root 8289 ./usr/include/linux/libc-compat.h
3607-rw-r--r-- root root 5042 ./usr/include/linux/lightnvm.h
3608-rw-r--r-- root root 937 ./usr/include/linux/limits.h
3609-rw-r--r-- root root 8102 ./usr/include/linux/lirc.h
3610-rw-r--r-- root root 3164 ./usr/include/linux/llc.h
3611-rw-r--r-- root root 2520 ./usr/include/linux/loop.h
3612-rw-r--r-- root root 4190 ./usr/include/linux/lp.h
3613-rw-r--r-- root root 1273 ./usr/include/linux/lwtunnel.h
3614-rw-r--r-- root root 3604 ./usr/include/linux/magic.h
3615-rw-r--r-- root root 4713 ./usr/include/linux/major.h
3616-rw-r--r-- root root 7251 ./usr/include/linux/map_to_7segment.h
3617-rw-r--r-- root root 1464 ./usr/include/linux/matroxfb.h
3618-rw-r--r-- root root 1035 ./usr/include/linux/max2175.h
3619-rw-r--r-- root root 15645 ./usr/include/linux/mdio.h
3620-rw-r--r-- root root 6540 ./usr/include/linux/media-bus-format.h
3621-rw-r--r-- root root 12641 ./usr/include/linux/media.h
3622-rw-r--r-- root root 1993 ./usr/include/linux/mei.h
3623-rw-r--r-- root root 7899 ./usr/include/linux/membarrier.h
3624-rw-r--r-- root root 1324 ./usr/include/linux/memfd.h
3625-rw-r--r-- root root 2154 ./usr/include/linux/mempolicy.h
3626-rw-r--r-- root root 2529 ./usr/include/linux/meye.h
3627-rw-r--r-- root root 6519 ./usr/include/linux/mic_common.h
3628-rw-r--r-- root root 2252 ./usr/include/linux/mic_ioctl.h
3629-rw-r--r-- root root 8281 ./usr/include/linux/mii.h
3630-rw-r--r-- root root 2122 ./usr/include/linux/minix_fs.h
3631-rw-r--r-- root root 1508 ./usr/include/linux/mman.h
3632drwxr-xr-x root root 4096 ./usr/include/linux/mmc
3633-rw-r--r-- root root 2331 ./usr/include/linux/mmc/ioctl.h
3634-rw-r--r-- root root 2117 ./usr/include/linux/mmtimer.h
3635-rw-r--r-- root root 255 ./usr/include/linux/module.h
3636-rw-r--r-- root root 4546 ./usr/include/linux/mount.h
3637-rw-r--r-- root root 2302 ./usr/include/linux/mpls.h
3638-rw-r--r-- root root 761 ./usr/include/linux/mpls_iptunnel.h
3639-rw-r--r-- root root 2201 ./usr/include/linux/mqueue.h
3640-rw-r--r-- root root 4931 ./usr/include/linux/mroute6.h
3641-rw-r--r-- root root 5881 ./usr/include/linux/mroute.h
3642-rw-r--r-- root root 6731 ./usr/include/linux/msdos_fs.h
3643-rw-r--r-- root root 3374 ./usr/include/linux/msg.h
3644-rw-r--r-- root root 8175 ./usr/include/linux/mtio.h
3645-rw-r--r-- root root 3024 ./usr/include/linux/nbd.h
3646-rw-r--r-- root root 2378 ./usr/include/linux/nbd-netlink.h
3647-rw-r--r-- root root 4828 ./usr/include/linux/ncsi.h
3648-rw-r--r-- root root 6770 ./usr/include/linux/ndctl.h
3649-rw-r--r-- root root 4406 ./usr/include/linux/neighbour.h
3650-rw-r--r-- root root 614 ./usr/include/linux/netconf.h
3651-rw-r--r-- root root 2253 ./usr/include/linux/netdevice.h
3652-rw-r--r-- root root 2839 ./usr/include/linux/net_dropmon.h
3653drwxr-xr-x root root 4096 ./usr/include/linux/netfilter
3654drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_arp
3655-rw-r--r-- root root 5999 ./usr/include/linux/netfilter_arp/arp_tables.h
3656-rw-r--r-- root root 606 ./usr/include/linux/netfilter_arp/arpt_mangle.h
3657-rw-r--r-- root root 445 ./usr/include/linux/netfilter_arp.h
3658drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_bridge
3659-rw-r--r-- root root 1274 ./usr/include/linux/netfilter_bridge/ebt_802_3.h
3660-rw-r--r-- root root 9308 ./usr/include/linux/netfilter_bridge/ebtables.h
3661-rw-r--r-- root root 2043 ./usr/include/linux/netfilter_bridge/ebt_among.h
3662-rw-r--r-- root root 900 ./usr/include/linux/netfilter_bridge/ebt_arp.h
3663-rw-r--r-- root root 289 ./usr/include/linux/netfilter_bridge/ebt_arpreply.h
3664-rw-r--r-- root root 1056 ./usr/include/linux/netfilter_bridge/ebt_ip6.h
3665-rw-r--r-- root root 1094 ./usr/include/linux/netfilter_bridge/ebt_ip.h
3666-rw-r--r-- root root 616 ./usr/include/linux/netfilter_bridge/ebt_limit.h
3667-rw-r--r-- root root 538 ./usr/include/linux/netfilter_bridge/ebt_log.h
3668-rw-r--r-- root root 388 ./usr/include/linux/netfilter_bridge/ebt_mark_m.h
3669-rw-r--r-- root root 831 ./usr/include/linux/netfilter_bridge/ebt_mark_t.h
3670-rw-r--r-- root root 387 ./usr/include/linux/netfilter_bridge/ebt_nat.h
3671-rw-r--r-- root root 510 ./usr/include/linux/netfilter_bridge/ebt_nflog.h
3672-rw-r--r-- root root 267 ./usr/include/linux/netfilter_bridge/ebt_pkttype.h
3673-rw-r--r-- root root 286 ./usr/include/linux/netfilter_bridge/ebt_redirect.h
3674-rw-r--r-- root root 1110 ./usr/include/linux/netfilter_bridge/ebt_stp.h
3675-rw-r--r-- root root 719 ./usr/include/linux/netfilter_bridge/ebt_vlan.h
3676-rw-r--r-- root root 1168 ./usr/include/linux/netfilter_bridge.h
3677-rw-r--r-- root root 1758 ./usr/include/linux/netfilter_decnet.h
3678-rw-r--r-- root root 1674 ./usr/include/linux/netfilter.h
3679drwxr-xr-x root root 4096 ./usr/include/linux/netfilter/ipset
3680-rw-r--r-- root root 428 ./usr/include/linux/netfilter/ipset/ip_set_bitmap.h
3681-rw-r--r-- root root 9108 ./usr/include/linux/netfilter/ipset/ip_set.h
3682-rw-r--r-- root root 578 ./usr/include/linux/netfilter/ipset/ip_set_hash.h
3683-rw-r--r-- root root 609 ./usr/include/linux/netfilter/ipset/ip_set_list.h
3684drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_ipv4
3685-rw-r--r-- root root 1488 ./usr/include/linux/netfilter_ipv4.h
3686-rw-r--r-- root root 6647 ./usr/include/linux/netfilter_ipv4/ip_tables.h
3687-rw-r--r-- root root 425 ./usr/include/linux/netfilter_ipv4/ipt_ah.h
3688-rw-r--r-- root root 821 ./usr/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
3689-rw-r--r-- root root 431 ./usr/include/linux/netfilter_ipv4/ipt_ecn.h
3690-rw-r--r-- root root 901 ./usr/include/linux/netfilter_ipv4/ipt_ECN.h
3691-rw-r--r-- root root 654 ./usr/include/linux/netfilter_ipv4/ipt_LOG.h
3692-rw-r--r-- root root 468 ./usr/include/linux/netfilter_ipv4/ipt_REJECT.h
3693-rw-r--r-- root root 431 ./usr/include/linux/netfilter_ipv4/ipt_ttl.h
3694-rw-r--r-- root root 375 ./usr/include/linux/netfilter_ipv4/ipt_TTL.h
3695drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_ipv6
3696-rw-r--r-- root root 1383 ./usr/include/linux/netfilter_ipv6.h
3697-rw-r--r-- root root 8011 ./usr/include/linux/netfilter_ipv6/ip6_tables.h
3698-rw-r--r-- root root 657 ./usr/include/linux/netfilter_ipv6/ip6t_ah.h
3699-rw-r--r-- root root 744 ./usr/include/linux/netfilter_ipv6/ip6t_frag.h
3700-rw-r--r-- root root 458 ./usr/include/linux/netfilter_ipv6/ip6t_hl.h
3701-rw-r--r-- root root 408 ./usr/include/linux/netfilter_ipv6/ip6t_HL.h
3702-rw-r--r-- root root 645 ./usr/include/linux/netfilter_ipv6/ip6t_ipv6header.h
3703-rw-r--r-- root root 662 ./usr/include/linux/netfilter_ipv6/ip6t_LOG.h
3704-rw-r--r-- root root 439 ./usr/include/linux/netfilter_ipv6/ip6t_mh.h
3705-rw-r--r-- root root 400 ./usr/include/linux/netfilter_ipv6/ip6t_NPT.h
3706-rw-r--r-- root root 649 ./usr/include/linux/netfilter_ipv6/ip6t_opts.h
3707-rw-r--r-- root root 470 ./usr/include/linux/netfilter_ipv6/ip6t_REJECT.h
3708-rw-r--r-- root root 985 ./usr/include/linux/netfilter_ipv6/ip6t_rt.h
3709-rw-r--r-- root root 3305 ./usr/include/linux/netfilter_ipv6/ip6t_srh.h
3710-rw-r--r-- root root 4421 ./usr/include/linux/netfilter/nf_conntrack_common.h
3711-rw-r--r-- root root 438 ./usr/include/linux/netfilter/nf_conntrack_ftp.h
3712-rw-r--r-- root root 576 ./usr/include/linux/netfilter/nf_conntrack_sctp.h
3713-rw-r--r-- root root 1415 ./usr/include/linux/netfilter/nf_conntrack_tcp.h
3714-rw-r--r-- root root 896 ./usr/include/linux/netfilter/nf_conntrack_tuple_common.h
3715-rw-r--r-- root root 538 ./usr/include/linux/netfilter/nf_log.h
3716-rw-r--r-- root root 1522 ./usr/include/linux/netfilter/nf_nat.h
3717-rw-r--r-- root root 900 ./usr/include/linux/netfilter/nfnetlink_acct.h
3718-rw-r--r-- root root 2444 ./usr/include/linux/netfilter/nfnetlink_compat.h
3719-rw-r--r-- root root 5924 ./usr/include/linux/netfilter/nfnetlink_conntrack.h
3720-rw-r--r-- root root 1202 ./usr/include/linux/netfilter/nfnetlink_cthelper.h
3721-rw-r--r-- root root 2930 ./usr/include/linux/netfilter/nfnetlink_cttimeout.h
3722-rw-r--r-- root root 2428 ./usr/include/linux/netfilter/nfnetlink.h
3723-rw-r--r-- root root 3106 ./usr/include/linux/netfilter/nfnetlink_log.h
3724-rw-r--r-- root root 2665 ./usr/include/linux/netfilter/nfnetlink_osf.h
3725-rw-r--r-- root root 3499 ./usr/include/linux/netfilter/nfnetlink_queue.h
3726-rw-r--r-- root root 576 ./usr/include/linux/netfilter/nf_synproxy.h
3727-rw-r--r-- root root 731 ./usr/include/linux/netfilter/nf_tables_compat.h
3728-rw-r--r-- root root 51835 ./usr/include/linux/netfilter/nf_tables.h
3729-rw-r--r-- root root 4467 ./usr/include/linux/netfilter/x_tables.h
3730-rw-r--r-- root root 1084 ./usr/include/linux/netfilter/xt_addrtype.h
3731-rw-r--r-- root root 718 ./usr/include/linux/netfilter/xt_AUDIT.h
3732-rw-r--r-- root root 935 ./usr/include/linux/netfilter/xt_bpf.h
3733-rw-r--r-- root root 740 ./usr/include/linux/netfilter/xt_cgroup.h
3734-rw-r--r-- root root 563 ./usr/include/linux/netfilter/xt_CHECKSUM.h
3735-rw-r--r-- root root 217 ./usr/include/linux/netfilter/xt_CLASSIFY.h
3736-rw-r--r-- root root 374 ./usr/include/linux/netfilter/xt_cluster.h
3737-rw-r--r-- root root 230 ./usr/include/linux/netfilter/xt_comment.h
3738-rw-r--r-- root root 577 ./usr/include/linux/netfilter/xt_connbytes.h
3739-rw-r--r-- root root 360 ./usr/include/linux/netfilter/xt_connlabel.h
3740-rw-r--r-- root root 575 ./usr/include/linux/netfilter/xt_connlimit.h
3741-rw-r--r-- root root 900 ./usr/include/linux/netfilter/xt_connmark.h
3742-rw-r--r-- root root 199 ./usr/include/linux/netfilter/xt_CONNMARK.h
3743-rw-r--r-- root root 301 ./usr/include/linux/netfilter/xt_CONNSECMARK.h
3744-rw-r--r-- root root 2557 ./usr/include/linux/netfilter/xt_conntrack.h
3745-rw-r--r-- root root 199 ./usr/include/linux/netfilter/xt_cpu.h
3746-rw-r--r-- root root 853 ./usr/include/linux/netfilter/xt_CT.h
3747-rw-r--r-- root root 483 ./usr/include/linux/netfilter/xt_dccp.h
3748-rw-r--r-- root root 429 ./usr/include/linux/netfilter/xt_devgroup.h
3749-rw-r--r-- root root 701 ./usr/include/linux/netfilter/xt_dscp.h
3750-rw-r--r-- root root 697 ./usr/include/linux/netfilter/xt_DSCP.h
3751-rw-r--r-- root root 736 ./usr/include/linux/netfilter/xt_ecn.h
3752-rw-r--r-- root root 418 ./usr/include/linux/netfilter/xt_esp.h
3753-rw-r--r-- root root 3256 ./usr/include/linux/netfilter/xt_hashlimit.h
3754-rw-r--r-- root root 188 ./usr/include/linux/netfilter/xt_helper.h
3755-rw-r--r-- root root 933 ./usr/include/linux/netfilter/xt_HMARK.h
3756-rw-r--r-- root root 1393 ./usr/include/linux/netfilter/xt_IDLETIMER.h
3757-rw-r--r-- root root 485 ./usr/include/linux/netfilter/xt_ipcomp.h
3758-rw-r--r-- root root 581 ./usr/include/linux/netfilter/xt_iprange.h
3759-rw-r--r-- root root 680 ./usr/include/linux/netfilter/xt_ipvs.h
3760-rw-r--r-- root root 739 ./usr/include/linux/netfilter/xt_l2tp.h
3761-rw-r--r-- root root 470 ./usr/include/linux/netfilter/xt_LED.h
3762-rw-r--r-- root root 221 ./usr/include/linux/netfilter/xt_length.h
3763-rw-r--r-- root root 673 ./usr/include/linux/netfilter/xt_limit.h
3764-rw-r--r-- root root 642 ./usr/include/linux/netfilter/xt_LOG.h
3765-rw-r--r-- root root 227 ./usr/include/linux/netfilter/xt_mac.h
3766-rw-r--r-- root root 260 ./usr/include/linux/netfilter/xt_mark.h
3767-rw-r--r-- root root 184 ./usr/include/linux/netfilter/xt_MARK.h
3768-rw-r--r-- root root 721 ./usr/include/linux/netfilter/xt_multiport.h
3769-rw-r--r-- root root 421 ./usr/include/linux/netfilter/xt_nfacct.h
3770-rw-r--r-- root root 556 ./usr/include/linux/netfilter/xt_NFLOG.h
3771-rw-r--r-- root root 779 ./usr/include/linux/netfilter/xt_NFQUEUE.h
3772-rw-r--r-- root root 1703 ./usr/include/linux/netfilter/xt_osf.h
3773-rw-r--r-- root root 535 ./usr/include/linux/netfilter/xt_owner.h
3774-rw-r--r-- root root 553 ./usr/include/linux/netfilter/xt_physdev.h
3775-rw-r--r-- root root 188 ./usr/include/linux/netfilter/xt_pkttype.h
3776-rw-r--r-- root root 1051 ./usr/include/linux/netfilter/xt_policy.h
3777-rw-r--r-- root root 400 ./usr/include/linux/netfilter/xt_quota.h
3778-rw-r--r-- root root 859 ./usr/include/linux/netfilter/xt_rateest.h
3779-rw-r--r-- root root 390 ./usr/include/linux/netfilter/xt_RATEEST.h
3780-rw-r--r-- root root 220 ./usr/include/linux/netfilter/xt_realm.h
3781-rw-r--r-- root root 1058 ./usr/include/linux/netfilter/xt_recent.h
3782-rw-r--r-- root root 320 ./usr/include/linux/netfilter/xt_rpfilter.h
3783-rw-r--r-- root root 2326 ./usr/include/linux/netfilter/xt_sctp.h
3784-rw-r--r-- root root 549 ./usr/include/linux/netfilter/xt_SECMARK.h
3785-rw-r--r-- root root 1827 ./usr/include/linux/netfilter/xt_set.h
3786-rw-r--r-- root root 640 ./usr/include/linux/netfilter/xt_socket.h
3787-rw-r--r-- root root 331 ./usr/include/linux/netfilter/xt_state.h
3788-rw-r--r-- root root 716 ./usr/include/linux/netfilter/xt_statistic.h
3789-rw-r--r-- root root 664 ./usr/include/linux/netfilter/xt_string.h
3790-rw-r--r-- root root 498 ./usr/include/linux/netfilter/xt_SYNPROXY.h
3791-rw-r--r-- root root 253 ./usr/include/linux/netfilter/xt_tcpmss.h
3792-rw-r--r-- root root 235 ./usr/include/linux/netfilter/xt_TCPMSS.h
3793-rw-r--r-- root root 407 ./usr/include/linux/netfilter/xt_TCPOPTSTRIP.h
3794-rw-r--r-- root root 1250 ./usr/include/linux/netfilter/xt_tcpudp.h
3795-rw-r--r-- root root 333 ./usr/include/linux/netfilter/xt_TEE.h
3796-rw-r--r-- root root 730 ./usr/include/linux/netfilter/xt_time.h
3797-rw-r--r-- root root 575 ./usr/include/linux/netfilter/xt_TPROXY.h
3798-rw-r--r-- root root 752 ./usr/include/linux/netfilter/xt_u32.h
3799-rw-r--r-- root root 2085 ./usr/include/linux/net.h
3800-rw-r--r-- root root 1524 ./usr/include/linux/netlink_diag.h
3801-rw-r--r-- root root 7825 ./usr/include/linux/netlink.h
3802-rw-r--r-- root root 715 ./usr/include/linux/net_namespace.h
3803-rw-r--r-- root root 807 ./usr/include/linux/netrom.h
3804-rw-r--r-- root root 4914 ./usr/include/linux/net_tstamp.h
3805-rw-r--r-- root root 1534 ./usr/include/linux/nexthop.h
3806-rw-r--r-- root root 11209 ./usr/include/linux/nfc.h
3807-rw-r--r-- root root 1468 ./usr/include/linux/nfs2.h
3808-rw-r--r-- root root 2359 ./usr/include/linux/nfs3.h
3809-rw-r--r-- root root 6338 ./usr/include/linux/nfs4.h
3810-rw-r--r-- root root 1932 ./usr/include/linux/nfs4_mount.h
3811-rw-r--r-- root root 668 ./usr/include/linux/nfsacl.h
3812drwxr-xr-x root root 4096 ./usr/include/linux/nfsd
3813-rw-r--r-- root root 3122 ./usr/include/linux/nfsd/cld.h
3814-rw-r--r-- root root 736 ./usr/include/linux/nfsd/debug.h
3815-rw-r--r-- root root 2113 ./usr/include/linux/nfsd/export.h
3816-rw-r--r-- root root 3517 ./usr/include/linux/nfsd/nfsfh.h
3817-rw-r--r-- root root 421 ./usr/include/linux/nfsd/stats.h
3818-rw-r--r-- root root 1608 ./usr/include/linux/nfs_fs.h
3819-rw-r--r-- root root 4500 ./usr/include/linux/nfs.h
3820-rw-r--r-- root root 2243 ./usr/include/linux/nfs_idmap.h
3821-rw-r--r-- root root 2142 ./usr/include/linux/nfs_mount.h
3822-rw-r--r-- root root 7589 ./usr/include/linux/nilfs2_api.h
3823-rw-r--r-- root root 18085 ./usr/include/linux/nilfs2_ondisk.h
3824-rw-r--r-- root root 280715 ./usr/include/linux/nl80211.h
3825-rw-r--r-- root root 2410 ./usr/include/linux/n_r3964.h
3826-rw-r--r-- root root 639 ./usr/include/linux/nsfs.h
3827-rw-r--r-- root root 8191 ./usr/include/linux/nubus.h
3828-rw-r--r-- root root 1661 ./usr/include/linux/nvme_ioctl.h
3829-rw-r--r-- root root 532 ./usr/include/linux/nvram.h
3830-rw-r--r-- root root 20853 ./usr/include/linux/omap3isp.h
3831-rw-r--r-- root root 5918 ./usr/include/linux/omapfb.h
3832-rw-r--r-- root root 511 ./usr/include/linux/oom.h
3833-rw-r--r-- root root 37676 ./usr/include/linux/openvswitch.h
3834-rw-r--r-- root root 1672 ./usr/include/linux/packet_diag.h
3835-rw-r--r-- root root 141 ./usr/include/linux/param.h
3836-rw-r--r-- root root 3644 ./usr/include/linux/parport.h
3837-rw-r--r-- root root 892 ./usr/include/linux/patchkey.h
3838-rw-r--r-- root root 1380 ./usr/include/linux/pci.h
3839-rw-r--r-- root root 56733 ./usr/include/linux/pci_regs.h
3840-rw-r--r-- root root 711 ./usr/include/linux/pcitest.h
3841-rw-r--r-- root root 34228 ./usr/include/linux/perf_event.h
3842-rw-r--r-- root root 2097 ./usr/include/linux/personality.h
3843-rw-r--r-- root root 10569 ./usr/include/linux/pfkeyv2.h
3844-rw-r--r-- root root 2394 ./usr/include/linux/pg.h
3845-rw-r--r-- root root 1654 ./usr/include/linux/phantom.h
3846-rw-r--r-- root root 4677 ./usr/include/linux/phonet.h
3847-rw-r--r-- root root 2687 ./usr/include/linux/pktcdvd.h
3848-rw-r--r-- root root 15441 ./usr/include/linux/pkt_cls.h
3849-rw-r--r-- root root 27648 ./usr/include/linux/pkt_sched.h
3850-rw-r--r-- root root 5444 ./usr/include/linux/pmu.h
3851-rw-r--r-- root root 22 ./usr/include/linux/poll.h
3852-rw-r--r-- root root 1254 ./usr/include/linux/posix_acl.h
3853-rw-r--r-- root root 1115 ./usr/include/linux/posix_acl_xattr.h
3854-rw-r--r-- root root 1098 ./usr/include/linux/posix_types.h
3855-rw-r--r-- root root 3285 ./usr/include/linux/ppdev.h
3856-rw-r--r-- root root 2527 ./usr/include/linux/ppp-comp.h
3857-rw-r--r-- root root 5107 ./usr/include/linux/ppp_defs.h
3858-rw-r--r-- root root 5438 ./usr/include/linux/ppp-ioctl.h
3859-rw-r--r-- root root 4734 ./usr/include/linux/pps.h
3860-rw-r--r-- root root 8073 ./usr/include/linux/prctl.h
3861-rw-r--r-- root root 1073 ./usr/include/linux/pr.h
3862-rw-r--r-- root root 798 ./usr/include/linux/psample.h
3863-rw-r--r-- root root 4328 ./usr/include/linux/psci.h
3864-rw-r--r-- root root 4036 ./usr/include/linux/psp-sev.h
3865-rw-r--r-- root root 6731 ./usr/include/linux/ptp_clock.h
3866-rw-r--r-- root root 4265 ./usr/include/linux/ptrace.h
3867-rw-r--r-- root root 2469 ./usr/include/linux/qemu_fw_cfg.h
3868-rw-r--r-- root root 2328 ./usr/include/linux/qnx4_fs.h
3869-rw-r--r-- root root 624 ./usr/include/linux/qnxtypes.h
3870-rw-r--r-- root root 893 ./usr/include/linux/qrtr.h
3871-rw-r--r-- root root 6291 ./usr/include/linux/quota.h
3872-rw-r--r-- root root 360 ./usr/include/linux/radeonfb.h
3873drwxr-xr-x root root 4096 ./usr/include/linux/raid
3874-rw-r--r-- root root 16161 ./usr/include/linux/raid/md_p.h
3875-rw-r--r-- root root 4484 ./usr/include/linux/raid/md_u.h
3876-rw-r--r-- root root 1370 ./usr/include/linux/random.h
3877-rw-r--r-- root root 365 ./usr/include/linux/raw.h
3878-rw-r--r-- root root 11081 ./usr/include/linux/rds.h
3879-rw-r--r-- root root 1343 ./usr/include/linux/reboot.h
3880-rw-r--r-- root root 775 ./usr/include/linux/reiserfs_fs.h
3881-rw-r--r-- root root 533 ./usr/include/linux/reiserfs_xattr.h
3882-rw-r--r-- root root 2347 ./usr/include/linux/resource.h
3883-rw-r--r-- root root 3682 ./usr/include/linux/rfkill.h
3884-rw-r--r-- root root 3248 ./usr/include/linux/rio_cm_cdev.h
3885-rw-r--r-- root root 9330 ./usr/include/linux/rio_mport_cdev.h
3886-rw-r--r-- root root 1238 ./usr/include/linux/romfs_fs.h
3887-rw-r--r-- root root 2232 ./usr/include/linux/rose.h
3888-rw-r--r-- root root 2332 ./usr/include/linux/route.h
3889-rw-r--r-- root root 544 ./usr/include/linux/rpmsg.h
3890-rw-r--r-- root root 4904 ./usr/include/linux/rseq.h
3891-rw-r--r-- root root 4009 ./usr/include/linux/rtc.h
3892-rw-r--r-- root root 19055 ./usr/include/linux/rtnetlink.h
3893-rw-r--r-- root root 4897 ./usr/include/linux/rxrpc.h
3894-rw-r--r-- root root 4597 ./usr/include/linux/scc.h
3895drwxr-xr-x root root 4096 ./usr/include/linux/sched
3896-rw-r--r-- root root 4647 ./usr/include/linux/sched.h
3897-rw-r--r-- root root 4480 ./usr/include/linux/sched/types.h
3898-rw-r--r-- root root 6382 ./usr/include/linux/scif_ioctl.h
3899-rw-r--r-- root root 2479 ./usr/include/linux/screen_info.h
3900-rw-r--r-- root root 34783 ./usr/include/linux/sctp.h
3901-rw-r--r-- root root 2839 ./usr/include/linux/sdla.h
3902-rw-r--r-- root root 3235 ./usr/include/linux/seccomp.h
3903-rw-r--r-- root root 2704 ./usr/include/linux/securebits.h
3904-rw-r--r-- root root 3297 ./usr/include/linux/sed-opal.h
3905-rw-r--r-- root root 589 ./usr/include/linux/seg6_genl.h
3906-rw-r--r-- root root 1170 ./usr/include/linux/seg6.h
3907-rw-r--r-- root root 423 ./usr/include/linux/seg6_hmac.h
3908-rw-r--r-- root root 927 ./usr/include/linux/seg6_iptunnel.h
3909-rw-r--r-- root root 2060 ./usr/include/linux/seg6_local.h
3910-rw-r--r-- root root 1195 ./usr/include/linux/selinux_netlink.h
3911-rw-r--r-- root root 3043 ./usr/include/linux/sem.h
3912-rw-r--r-- root root 6436 ./usr/include/linux/serial_core.h
3913-rw-r--r-- root root 3866 ./usr/include/linux/serial.h
3914-rw-r--r-- root root 15496 ./usr/include/linux/serial_reg.h
3915-rw-r--r-- root root 2063 ./usr/include/linux/serio.h
3916-rw-r--r-- root root 3785 ./usr/include/linux/shm.h
3917-rw-r--r-- root root 1233 ./usr/include/linux/signalfd.h
3918-rw-r--r-- root root 388 ./usr/include/linux/signal.h
3919-rw-r--r-- root root 2835 ./usr/include/linux/smc_diag.h
3920-rw-r--r-- root root 780 ./usr/include/linux/smc.h
3921-rw-r--r-- root root 1058 ./usr/include/linux/smiapp.h
3922-rw-r--r-- root root 13014 ./usr/include/linux/snmp.h
3923-rw-r--r-- root root 727 ./usr/include/linux/sock_diag.h
3924-rw-r--r-- root root 819 ./usr/include/linux/socket.h
3925-rw-r--r-- root root 6846 ./usr/include/linux/sockios.h
3926-rw-r--r-- root root 2290 ./usr/include/linux/sonet.h
3927-rw-r--r-- root root 5309 ./usr/include/linux/sonypi.h
3928-rw-r--r-- root root 46038 ./usr/include/linux/soundcard.h
3929-rw-r--r-- root root 1237 ./usr/include/linux/sound.h
3930drwxr-xr-x root root 4096 ./usr/include/linux/spi
3931-rw-r--r-- root root 5286 ./usr/include/linux/spi/spidev.h
3932-rw-r--r-- root root 6100 ./usr/include/linux/stat.h
3933-rw-r--r-- root root 131 ./usr/include/linux/stddef.h
3934-rw-r--r-- root root 1275 ./usr/include/linux/stm.h
3935-rw-r--r-- root root 238 ./usr/include/linux/string.h
3936drwxr-xr-x root root 4096 ./usr/include/linux/sunrpc
3937-rw-r--r-- root root 1144 ./usr/include/linux/sunrpc/debug.h
3938-rw-r--r-- root root 1431 ./usr/include/linux/suspend_ioctls.h
3939-rw-r--r-- root root 6711 ./usr/include/linux/swab.h
3940-rw-r--r-- root root 4768 ./usr/include/linux/switchtec_ioctl.h
3941-rw-r--r-- root root 2883 ./usr/include/linux/sync_file.h
3942-rw-r--r-- root root 8985 ./usr/include/linux/synclink.h
3943-rw-r--r-- root root 25880 ./usr/include/linux/sysctl.h
3944-rw-r--r-- root root 1049 ./usr/include/linux/sysinfo.h
3945-rw-r--r-- root root 3899 ./usr/include/linux/target_core_user.h
3946-rw-r--r-- root root 7152 ./usr/include/linux/taskstats.h
3947drwxr-xr-x root root 4096 ./usr/include/linux/tc_act
3948-rw-r--r-- root root 764 ./usr/include/linux/tc_act/tc_bpf.h
3949-rw-r--r-- root root 390 ./usr/include/linux/tc_act/tc_connmark.h
3950-rw-r--r-- root root 644 ./usr/include/linux/tc_act/tc_csum.h
3951-rw-r--r-- root root 934 ./usr/include/linux/tc_act/tc_ct.h
3952-rw-r--r-- root root 556 ./usr/include/linux/tc_act/tc_ctinfo.h
3953-rw-r--r-- root root 322 ./usr/include/linux/tc_act/tc_defact.h
3954-rw-r--r-- root root 626 ./usr/include/linux/tc_act/tc_gact.h
3955-rw-r--r-- root root 600 ./usr/include/linux/tc_act/tc_ife.h
3956-rw-r--r-- root root 415 ./usr/include/linux/tc_act/tc_ipt.h
3957-rw-r--r-- root root 728 ./usr/include/linux/tc_act/tc_mirred.h
3958-rw-r--r-- root root 992 ./usr/include/linux/tc_act/tc_mpls.h
3959-rw-r--r-- root root 424 ./usr/include/linux/tc_act/tc_nat.h
3960-rw-r--r-- root root 1527 ./usr/include/linux/tc_act/tc_pedit.h
3961-rw-r--r-- root root 456 ./usr/include/linux/tc_act/tc_sample.h
3962-rw-r--r-- root root 1443 ./usr/include/linux/tc_act/tc_skbedit.h
3963-rw-r--r-- root root 815 ./usr/include/linux/tc_act/tc_skbmod.h
3964-rw-r--r-- root root 1898 ./usr/include/linux/tc_act/tc_tunnel_key.h
3965-rw-r--r-- root root 816 ./usr/include/linux/tc_act/tc_vlan.h
3966drwxr-xr-x root root 4096 ./usr/include/linux/tc_ematch
3967-rw-r--r-- root root 414 ./usr/include/linux/tc_ematch/tc_em_cmp.h
3968-rw-r--r-- root root 391 ./usr/include/linux/tc_ematch/tc_em_ipt.h
3969-rw-r--r-- root root 2116 ./usr/include/linux/tc_ematch/tc_em_meta.h
3970-rw-r--r-- root root 255 ./usr/include/linux/tc_ematch/tc_em_nbyte.h
3971-rw-r--r-- root root 384 ./usr/include/linux/tc_ematch/tc_em_text.h
3972-rw-r--r-- root root 10857 ./usr/include/linux/tcp.h
3973-rw-r--r-- root root 1549 ./usr/include/linux/tcp_metrics.h
3974-rw-r--r-- root root 12581 ./usr/include/linux/tee.h
3975-rw-r--r-- root root 506 ./usr/include/linux/termios.h
3976-rw-r--r-- root root 924 ./usr/include/linux/thermal.h
3977-rw-r--r-- root root 1748 ./usr/include/linux/time.h
3978-rw-r--r-- root root 936 ./usr/include/linux/timerfd.h
3979-rw-r--r-- root root 278 ./usr/include/linux/times.h
3980-rw-r--r-- root root 996 ./usr/include/linux/time_types.h
3981-rw-r--r-- root root 7817 ./usr/include/linux/timex.h
3982-rw-r--r-- root root 1729 ./usr/include/linux/tiocl.h
3983-rw-r--r-- root root 14848 ./usr/include/linux/tipc_config.h
3984-rw-r--r-- root root 8272 ./usr/include/linux/tipc.h
3985-rw-r--r-- root root 9156 ./usr/include/linux/tipc_netlink.h
3986-rw-r--r-- root root 468 ./usr/include/linux/tipc_sockets_diag.h
3987-rw-r--r-- root root 4288 ./usr/include/linux/tls.h
3988-rw-r--r-- root root 1930 ./usr/include/linux/toshiba.h
3989-rw-r--r-- root root 4527 ./usr/include/linux/tty_flags.h
3990-rw-r--r-- root root 1585 ./usr/include/linux/tty.h
3991-rw-r--r-- root root 1476 ./usr/include/linux/types.h
3992-rw-r--r-- root root 697 ./usr/include/linux/udf_fs_i.h
3993-rw-r--r-- root root 643 ./usr/include/linux/udmabuf.h
3994-rw-r--r-- root root 1613 ./usr/include/linux/udp.h
3995-rw-r--r-- root root 4648 ./usr/include/linux/uhid.h
3996-rw-r--r-- root root 9261 ./usr/include/linux/uinput.h
3997-rw-r--r-- root root 732 ./usr/include/linux/uio.h
3998-rw-r--r-- root root 798 ./usr/include/linux/uleds.h
3999-rw-r--r-- root root 4562 ./usr/include/linux/ultrasound.h
4000-rw-r--r-- root root 384 ./usr/include/linux/un.h
4001-rw-r--r-- root root 220 ./usr/include/linux/unistd.h
4002-rw-r--r-- root root 1328 ./usr/include/linux/unix_diag.h
4003drwxr-xr-x root root 4096 ./usr/include/linux/usb
4004-rw-r--r-- root root 19490 ./usr/include/linux/usb/audio.h
4005-rw-r--r-- root root 12962 ./usr/include/linux/usb/cdc.h
4006-rw-r--r-- root root 739 ./usr/include/linux/usb/cdc-wdm.h
4007-rw-r--r-- root root 9149 ./usr/include/linux/usb/ch11.h
4008-rw-r--r-- root root 38850 ./usr/include/linux/usb/ch9.h
4009-rw-r--r-- root root 566 ./usr/include/linux/usb/charger.h
4010-rw-r--r-- root root 8317 ./usr/include/linux/usbdevice_fs.h
4011-rw-r--r-- root root 10370 ./usr/include/linux/usb/functionfs.h
4012-rw-r--r-- root root 2818 ./usr/include/linux/usb/gadgetfs.h
4013-rw-r--r-- root root 1385 ./usr/include/linux/usb/g_printer.h
4014-rw-r--r-- root root 1097 ./usr/include/linux/usb/g_uvc.h
4015-rw-r--r-- root root 640 ./usr/include/linux/usbip.h
4016-rw-r--r-- root root 3434 ./usr/include/linux/usb/midi.h
4017-rw-r--r-- root root 4713 ./usr/include/linux/usb/tmc.h
4018-rw-r--r-- root root 16360 ./usr/include/linux/usb/video.h
4019-rw-r--r-- root root 6811 ./usr/include/linux/userfaultfd.h
4020-rw-r--r-- root root 1516 ./usr/include/linux/userio.h
4021-rw-r--r-- root root 215 ./usr/include/linux/utime.h
4022-rw-r--r-- root root 669 ./usr/include/linux/utsname.h
4023-rw-r--r-- root root 1356 ./usr/include/linux/uuid.h
4024-rw-r--r-- root root 2590 ./usr/include/linux/uvcvideo.h
4025-rw-r--r-- root root 4177 ./usr/include/linux/v4l2-common.h
4026-rw-r--r-- root root 52061 ./usr/include/linux/v4l2-controls.h
4027-rw-r--r-- root root 31562 ./usr/include/linux/v4l2-dv-timings.h
4028-rw-r--r-- root root 5101 ./usr/include/linux/v4l2-mediabus.h
4029-rw-r--r-- root root 6339 ./usr/include/linux/v4l2-subdev.h
4030-rw-r--r-- root root 7257 ./usr/include/linux/vbox_err.h
4031-rw-r--r-- root root 8755 ./usr/include/linux/vboxguest.h
4032-rw-r--r-- root root 11509 ./usr/include/linux/vbox_vmmdev_types.h
4033-rw-r--r-- root root 97 ./usr/include/linux/version.h
4034-rw-r--r-- root root 224 ./usr/include/linux/veth.h
4035-rw-r--r-- root root 836 ./usr/include/linux/vfio_ccw.h
4036-rw-r--r-- root root 33767 ./usr/include/linux/vfio.h
4037-rw-r--r-- root root 5069 ./usr/include/linux/vhost.h
4038-rw-r--r-- root root 3164 ./usr/include/linux/vhost_types.h
4039-rw-r--r-- root root 91377 ./usr/include/linux/videodev2.h
4040-rw-r--r-- root root 2041 ./usr/include/linux/virtio_9p.h
4041-rw-r--r-- root root 5036 ./usr/include/linux/virtio_balloon.h
4042-rw-r--r-- root root 6797 ./usr/include/linux/virtio_blk.h
4043-rw-r--r-- root root 3836 ./usr/include/linux/virtio_config.h
4044-rw-r--r-- root root 3136 ./usr/include/linux/virtio_console.h
4045-rw-r--r-- root root 13874 ./usr/include/linux/virtio_crypto.h
4046-rw-r--r-- root root 490 ./usr/include/linux/virtio_fs.h
4047-rw-r--r-- root root 8540 ./usr/include/linux/virtio_gpu.h
4048-rw-r--r-- root root 2592 ./usr/include/linux/virtio_ids.h
4049-rw-r--r-- root root 2506 ./usr/include/linux/virtio_input.h
4050-rw-r--r-- root root 3783 ./usr/include/linux/virtio_iommu.h
4051-rw-r--r-- root root 4586 ./usr/include/linux/virtio_mmio.h
4052-rw-r--r-- root root 10549 ./usr/include/linux/virtio_net.h
4053-rw-r--r-- root root 7079 ./usr/include/linux/virtio_pci.h
4054-rw-r--r-- root root 639 ./usr/include/linux/virtio_pmem.h
4055-rw-r--r-- root root 7430 ./usr/include/linux/virtio_ring.h
4056-rw-r--r-- root root 265 ./usr/include/linux/virtio_rng.h
4057-rw-r--r-- root root 6035 ./usr/include/linux/virtio_scsi.h
4058-rw-r--r-- root root 2153 ./usr/include/linux/virtio_types.h
4059-rw-r--r-- root root 3086 ./usr/include/linux/virtio_vsock.h
4060-rw-r--r-- root root 455 ./usr/include/linux/vmcore.h
4061-rw-r--r-- root root 963 ./usr/include/linux/vm_sockets_diag.h
4062-rw-r--r-- root root 5314 ./usr/include/linux/vm_sockets.h
4063-rw-r--r-- root root 1885 ./usr/include/linux/vsockmon.h
4064-rw-r--r-- root root 3059 ./usr/include/linux/vt.h
4065-rw-r--r-- root root 1719 ./usr/include/linux/vtpm_proxy.h
4066-rw-r--r-- root root 682 ./usr/include/linux/wait.h
4067-rw-r--r-- root root 2335 ./usr/include/linux/watchdog.h
4068drwxr-xr-x root root 4096 ./usr/include/linux/wimax
4069-rw-r--r-- root root 8371 ./usr/include/linux/wimax.h
4070-rw-r--r-- root root 15930 ./usr/include/linux/wimax/i2400m.h
4071-rw-r--r-- root root 42713 ./usr/include/linux/wireless.h
4072-rw-r--r-- root root 1761 ./usr/include/linux/wmi.h
4073-rw-r--r-- root root 3562 ./usr/include/linux/x25.h
4074-rw-r--r-- root root 2860 ./usr/include/linux/xattr.h
4075-rw-r--r-- root root 1259 ./usr/include/linux/xdp_diag.h
4076-rw-r--r-- root root 11737 ./usr/include/linux/xfrm.h
4077-rw-r--r-- root root 2976 ./usr/include/linux/xilinx-v4l2-controls.h
4078-rw-r--r-- root root 3296 ./usr/include/linux/zorro.h
4079-rw-r--r-- root root 29963 ./usr/include/linux/zorro_ids.h
4080-rw-r--r-- root root 7675 ./usr/include/locale.h
4081drwxr-xr-x root root 4096 ./usr/include/lzma
4082-rw-r--r-- root root 24858 ./usr/include/lzma/base.h
4083-rw-r--r-- root root 2630 ./usr/include/lzma/bcj.h
4084-rw-r--r-- root root 22107 ./usr/include/lzma/block.h
4085-rw-r--r-- root root 4255 ./usr/include/lzma/check.h
4086-rw-r--r-- root root 24844 ./usr/include/lzma/container.h
4087-rw-r--r-- root root 1865 ./usr/include/lzma/delta.h
4088-rw-r--r-- root root 16520 ./usr/include/lzma/filter.h
4089-rw-r--r-- root root 9866 ./usr/include/lzma.h
4090-rw-r--r-- root root 2604 ./usr/include/lzma/hardware.h
4091-rw-r--r-- root root 23491 ./usr/include/lzma/index.h
4092-rw-r--r-- root root 3914 ./usr/include/lzma/index_hash.h
4093-rw-r--r-- root root 14744 ./usr/include/lzma/lzma12.h
4094-rw-r--r-- root root 8253 ./usr/include/lzma/stream_flags.h
4095-rw-r--r-- root root 3497 ./usr/include/lzma/version.h
4096-rw-r--r-- root root 6546 ./usr/include/lzma/vli.h
4097drwxr-xr-x root root 4096 ./usr/include/lzo
4098-rw-r--r-- root root 2638 ./usr/include/lzo/lzo1a.h
4099-rw-r--r-- root root 5387 ./usr/include/lzo/lzo1b.h
4100-rw-r--r-- root root 5384 ./usr/include/lzo/lzo1c.h
4101-rw-r--r-- root root 3073 ./usr/include/lzo/lzo1f.h
4102-rw-r--r-- root root 2634 ./usr/include/lzo/lzo1.h
4103-rw-r--r-- root root 5873 ./usr/include/lzo/lzo1x.h
4104-rw-r--r-- root root 4641 ./usr/include/lzo/lzo1y.h
4105-rw-r--r-- root root 3771 ./usr/include/lzo/lzo1z.h
4106-rw-r--r-- root root 2525 ./usr/include/lzo/lzo2a.h
4107-rw-r--r-- root root 5566 ./usr/include/lzo/lzo_asm.h
4108-rw-r--r-- root root 16006 ./usr/include/lzo/lzoconf.h
4109-rw-r--r-- root root 127289 ./usr/include/lzo/lzodefs.h
4110-rw-r--r-- root root 1823 ./usr/include/lzo/lzoutil.h
4111-rw-r--r-- root root 6186 ./usr/include/malloc.h
4112-rw-r--r-- root root 46404 ./usr/include/math.h
4113-rw-r--r-- root root 2435 ./usr/include/mcheck.h
4114-rw-r--r-- root root 956 ./usr/include/memory.h
4115-rw-r--r-- root root 12275 ./usr/include/menu.h
4116drwxr-xr-x root root 4096 ./usr/include/misc
4117-rw-r--r-- root root 3936 ./usr/include/misc/cxl.h
4118-rw-r--r-- root root 953 ./usr/include/misc/fastrpc.h
4119-rw-r--r-- root root 19004 ./usr/include/misc/habanalabs.h
4120-rw-r--r-- root root 1947 ./usr/include/misc/ocxl.h
4121-rw-r--r-- root root 12341 ./usr/include/misc/xilinx_sdfec.h
4122-rw-r--r-- root root 3359 ./usr/include/mntent.h
4123-rw-r--r-- root root 1804 ./usr/include/monetary.h
4124-rw-r--r-- root root 3760 ./usr/include/mqueue.h
4125drwxr-xr-x root root 4096 ./usr/include/mtd
4126-rw-r--r-- root root 1644 ./usr/include/mtd/inftl-user.h
4127-rw-r--r-- root root 9732 ./usr/include/mtd/mtd-abi.h
4128-rw-r--r-- root root 1242 ./usr/include/mtd/mtd-user.h
4129-rw-r--r-- root root 2116 ./usr/include/mtd/nftl-user.h
4130-rw-r--r-- root root 18220 ./usr/include/mtd/ubi-user.h
4131-rw-r--r-- root root 4240 ./usr/include/nc_tparm.h
4132-rw-r--r-- root root 4522 ./usr/include/ncurses_dll.h
4133lrwxrwxrwx root root 8 ./usr/include/ncurses.h -> curses.h
4134-rw-r--r-- root root 2454 ./usr/include/ndbm.h
4135drwxr-xr-x root root 4096 ./usr/include/net
4136drwxr-xr-x root root 4096 ./usr/include/netash
4137-rw-r--r-- root root 1363 ./usr/include/netash/ash.h
4138drwxr-xr-x root root 4096 ./usr/include/netatalk
4139-rw-r--r-- root root 1029 ./usr/include/netatalk/at.h
4140drwxr-xr-x root root 4096 ./usr/include/netax25
4141-rw-r--r-- root root 4810 ./usr/include/netax25/ax25.h
4142-rw-r--r-- root root 28100 ./usr/include/netdb.h
4143drwxr-xr-x root root 4096 ./usr/include/neteconet
4144-rw-r--r-- root root 1668 ./usr/include/neteconet/ec.h
4145-rw-r--r-- root root 3136 ./usr/include/net/ethernet.h
4146-rw-r--r-- root root 7132 ./usr/include/net/if_arp.h
4147-rw-r--r-- root root 6982 ./usr/include/net/if.h
4148-rw-r--r-- root root 1262 ./usr/include/net/if_packet.h
4149-rw-r--r-- root root 6714 ./usr/include/net/if_ppp.h
4150-rw-r--r-- root root 1625 ./usr/include/net/if_shaper.h
4151-rw-r--r-- root root 933 ./usr/include/net/if_slip.h
4152drwxr-xr-x root root 4096 ./usr/include/netinet
4153-rw-r--r-- root root 1985 ./usr/include/netinet/ether.h
4154-rw-r--r-- root root 11515 ./usr/include/netinet/icmp6.h
4155-rw-r--r-- root root 3976 ./usr/include/netinet/if_ether.h
4156-rw-r--r-- root root 1186 ./usr/include/netinet/if_fddi.h
4157-rw-r--r-- root root 3692 ./usr/include/netinet/if_tr.h
4158-rw-r--r-- root root 4663 ./usr/include/netinet/igmp.h
4159-rw-r--r-- root root 21702 ./usr/include/netinet/in.h
4160-rw-r--r-- root root 1494 ./usr/include/netinet/in_systm.h
4161-rw-r--r-- root root 5394 ./usr/include/netinet/ip6.h
4162-rw-r--r-- root root 9436 ./usr/include/netinet/ip.h
4163-rw-r--r-- root root 10131 ./usr/include/netinet/ip_icmp.h
4164-rw-r--r-- root root 10490 ./usr/include/netinet/tcp.h
4165-rw-r--r-- root root 3774 ./usr/include/netinet/udp.h
4166drwxr-xr-x root root 4096 ./usr/include/netipx
4167-rw-r--r-- root root 2900 ./usr/include/netipx/ipx.h
4168drwxr-xr-x root root 4096 ./usr/include/netiucv
4169-rw-r--r-- root root 1594 ./usr/include/netiucv/iucv.h
4170drwxr-xr-x root root 4096 ./usr/include/netpacket
4171-rw-r--r-- root root 2438 ./usr/include/netpacket/packet.h
4172-rw-r--r-- root root 28 ./usr/include/net/ppp-comp.h
4173-rw-r--r-- root root 162 ./usr/include/net/ppp_defs.h
4174drwxr-xr-x root root 4096 ./usr/include/netrom
4175-rw-r--r-- root root 2226 ./usr/include/netrom/netrom.h
4176drwxr-xr-x root root 4096 ./usr/include/netrose
4177-rw-r--r-- root root 3184 ./usr/include/netrose/rose.h
4178-rw-r--r-- root root 4704 ./usr/include/net/route.h
4179drwxr-xr-x root root 4096 ./usr/include/nfs
4180-rw-r--r-- root root 23 ./usr/include/nfs/nfs.h
4181-rw-r--r-- root root 1601 ./usr/include/nlist.h
4182-rw-r--r-- root root 1753 ./usr/include/nl_types.h
4183-rw-r--r-- root root 1879 ./usr/include/nss.h
4184-rw-r--r-- root root 21307 ./usr/include/obstack.h
4185drwxr-xr-x root root 4096 ./usr/include/omap
4186-rw-r--r-- root root 4843 ./usr/include/omap/omap_drm.h
4187drwxr-xr-x root root 4096 ./usr/include/openssl
4188-rw-r--r-- root root 3349 ./usr/include/openssl/aes.h
4189-rw-r--r-- root root 14599 ./usr/include/openssl/asn1err.h
4190-rw-r--r-- root root 33627 ./usr/include/openssl/asn1.h
4191-rw-r--r-- root root 395 ./usr/include/openssl/asn1_mac.h
4192-rw-r--r-- root root 32940 ./usr/include/openssl/asn1t.h
4193-rw-r--r-- root root 1326 ./usr/include/openssl/asyncerr.h
4194-rw-r--r-- root root 2398 ./usr/include/openssl/async.h
4195-rw-r--r-- root root 6400 ./usr/include/openssl/bioerr.h
4196-rw-r--r-- root root 34907 ./usr/include/openssl/bio.h
4197-rw-r--r-- root root 1847 ./usr/include/openssl/blowfish.h
4198-rw-r--r-- root root 4907 ./usr/include/openssl/bnerr.h
4199-rw-r--r-- root root 22135 ./usr/include/openssl/bn.h
4200-rw-r--r-- root root 820 ./usr/include/openssl/buffererr.h
4201-rw-r--r-- root root 1600 ./usr/include/openssl/buffer.h
4202-rw-r--r-- root root 3179 ./usr/include/openssl/camellia.h
4203-rw-r--r-- root root 1674 ./usr/include/openssl/cast.h
4204-rw-r--r-- root root 1064 ./usr/include/openssl/cmac.h
4205-rw-r--r-- root root 11160 ./usr/include/openssl/cmserr.h
4206-rw-r--r-- root root 16379 ./usr/include/openssl/cms.h
4207-rw-r--r-- root root 1212 ./usr/include/openssl/comperr.h
4208-rw-r--r-- root root 1328 ./usr/include/openssl/comp.h
4209-rw-r--r-- root root 1300 ./usr/include/openssl/conf_api.h
4210-rw-r--r-- root root 3429 ./usr/include/openssl/conferr.h
4211-rw-r--r-- root root 5601 ./usr/include/openssl/conf.h
4212-rw-r--r-- root root 2261 ./usr/include/openssl/cryptoerr.h
4213-rw-r--r-- root root 17239 ./usr/include/openssl/crypto.h
4214-rw-r--r-- root root 3470 ./usr/include/openssl/cterr.h
4215-rw-r--r-- root root 15872 ./usr/include/openssl/ct.h
4216-rw-r--r-- root root 7627 ./usr/include/openssl/des.h
4217-rw-r--r-- root root 3974 ./usr/include/openssl/dherr.h
4218-rw-r--r-- root root 13403 ./usr/include/openssl/dh.h
4219-rw-r--r-- root root 2972 ./usr/include/openssl/dsaerr.h
4220-rw-r--r-- root root 10051 ./usr/include/openssl/dsa.h
4221-rw-r--r-- root root 1578 ./usr/include/openssl/dtls1.h
4222-rw-r--r-- root root 924 ./usr/include/openssl/ebcdic.h
4223-rw-r--r-- root root 358 ./usr/include/openssl/ecdh.h
4224-rw-r--r-- root root 358 ./usr/include/openssl/ecdsa.h
4225-rw-r--r-- root root 15758 ./usr/include/openssl/ecerr.h
4226-rw-r--r-- root root 63596 ./usr/include/openssl/ec.h
4227-rw-r--r-- root root 5447 ./usr/include/openssl/engineerr.h
4228-rw-r--r-- root root 34661 ./usr/include/openssl/engine.h
4229-rw-r--r-- root root 8888 ./usr/include/openssl/e_os2.h
4230-rw-r--r-- root root 11269 ./usr/include/openssl/err.h
4231-rw-r--r-- root root 11427 ./usr/include/openssl/evperr.h
4232-rw-r--r-- root root 76828 ./usr/include/openssl/evp.h
4233-rw-r--r-- root root 1591 ./usr/include/openssl/hmac.h
4234-rw-r--r-- root root 2099 ./usr/include/openssl/idea.h
4235-rw-r--r-- root root 2122 ./usr/include/openssl/kdferr.h
4236-rw-r--r-- root root 4326 ./usr/include/openssl/kdf.h
4237-rw-r--r-- root root 9271 ./usr/include/openssl/lhash.h
4238-rw-r--r-- root root 1054 ./usr/include/openssl/md2.h
4239-rw-r--r-- root root 1322 ./usr/include/openssl/md4.h
4240-rw-r--r-- root root 1320 ./usr/include/openssl/md5.h
4241-rw-r--r-- root root 1053 ./usr/include/openssl/mdc2.h
4242-rw-r--r-- root root 10478 ./usr/include/openssl/modes.h
4243-rw-r--r-- root root 1316 ./usr/include/openssl/objectserr.h
4244-rw-r--r-- root root 6633 ./usr/include/openssl/objects.h
4245-rw-r--r-- root root 217522 ./usr/include/openssl/obj_mac.h
4246-rw-r--r-- root root 3356 ./usr/include/openssl/ocsperr.h
4247-rw-r--r-- root root 15305 ./usr/include/openssl/ocsp.h
4248-rw-r--r-- root root 4520 ./usr/include/openssl/opensslconf-64.h
4249-rw-r--r-- root root 564 ./usr/include/openssl/opensslconf.h
4250-rw-r--r-- root root 4102 ./usr/include/openssl/opensslv.h
4251-rw-r--r-- root root 6266 ./usr/include/openssl/ossl_typ.h
4252-rw-r--r-- root root 415 ./usr/include/openssl/pem2.h
4253-rw-r--r-- root root 5098 ./usr/include/openssl/pemerr.h
4254-rw-r--r-- root root 15468 ./usr/include/openssl/pem.h
4255-rw-r--r-- root root 3749 ./usr/include/openssl/pkcs12err.h
4256-rw-r--r-- root root 9871 ./usr/include/openssl/pkcs12.h
4257-rw-r--r-- root root 5110 ./usr/include/openssl/pkcs7err.h
4258-rw-r--r-- root root 11590 ./usr/include/openssl/pkcs7.h
4259-rw-r--r-- root root 4763 ./usr/include/openssl/rand_drbg.h
4260-rw-r--r-- root root 4633 ./usr/include/openssl/randerr.h
4261-rw-r--r-- root root 2213 ./usr/include/openssl/rand.h
4262-rw-r--r-- root root 1534 ./usr/include/openssl/rc2.h
4263-rw-r--r-- root root 825 ./usr/include/openssl/rc4.h
4264-rw-r--r-- root root 1988 ./usr/include/openssl/rc5.h
4265-rw-r--r-- root root 1243 ./usr/include/openssl/ripemd.h
4266-rw-r--r-- root root 9075 ./usr/include/openssl/rsaerr.h
4267-rw-r--r-- root root 22202 ./usr/include/openssl/rsa.h
4268-rw-r--r-- root root 8139 ./usr/include/openssl/safestack.h
4269-rw-r--r-- root root 3479 ./usr/include/openssl/seed.h
4270-rw-r--r-- root root 3831 ./usr/include/openssl/sha.h
4271-rw-r--r-- root root 3827 ./usr/include/openssl/srp.h
4272-rw-r--r-- root root 1316 ./usr/include/openssl/srtp.h
4273-rw-r--r-- root root 542 ./usr/include/openssl/ssl2.h
4274-rw-r--r-- root root 14576 ./usr/include/openssl/ssl3.h
4275-rw-r--r-- root root 46676 ./usr/include/openssl/sslerr.h
4276-rw-r--r-- root root 111253 ./usr/include/openssl/ssl.h
4277-rw-r--r-- root root 3095 ./usr/include/openssl/stack.h
4278-rw-r--r-- root root 4399 ./usr/include/openssl/storeerr.h
4279-rw-r--r-- root root 11199 ./usr/include/openssl/store.h
4280-rw-r--r-- root root 1311 ./usr/include/openssl/symhacks.h
4281-rw-r--r-- root root 72490 ./usr/include/openssl/tls1.h
4282-rw-r--r-- root root 6746 ./usr/include/openssl/tserr.h
4283-rw-r--r-- root root 22429 ./usr/include/openssl/ts.h
4284-rw-r--r-- root root 1666 ./usr/include/openssl/txt_db.h
4285-rw-r--r-- root root 2737 ./usr/include/openssl/uierr.h
4286-rw-r--r-- root root 16052 ./usr/include/openssl/ui.h
4287-rw-r--r-- root root 1377 ./usr/include/openssl/whrlpool.h
4288-rw-r--r-- root root 6777 ./usr/include/openssl/x509err.h
4289-rw-r--r-- root root 43123 ./usr/include/openssl/x509.h
4290-rw-r--r-- root root 8777 ./usr/include/openssl/x509v3err.h
4291-rw-r--r-- root root 33377 ./usr/include/openssl/x509v3.h
4292-rw-r--r-- root root 32179 ./usr/include/openssl/x509_vfy.h
4293-rw-r--r-- root root 4201 ./usr/include/panel.h
4294-rw-r--r-- root root 2977 ./usr/include/paths.h
4295-rw-r--r-- root root 15456 ./usr/include/pciaccess.h
4296-rw-r--r-- root root 6783 ./usr/include/pcrecpparg.h
4297-rw-r--r-- root root 26529 ./usr/include/pcrecpp.h
4298-rw-r--r-- root root 31718 ./usr/include/pcre.h
4299-rw-r--r-- root root 5631 ./usr/include/pcreposix.h
4300-rw-r--r-- root root 6600 ./usr/include/pcre_scanner.h
4301-rw-r--r-- root root 6312 ./usr/include/pcre_stringpiece.h
4302drwxr-xr-x root root 4096 ./usr/include/pixman-1
4303-rw-r--r-- root root 45455 ./usr/include/pixman-1/pixman.h
4304-rw-r--r-- root root 1739 ./usr/include/pixman-1/pixman-version.h
4305-rw-r--r-- root root 15029 ./usr/include/plugin-api.h
4306lrwxrwxrwx root root 18 ./usr/include/pngconf.h -> libpng16/pngconf.h
4307lrwxrwxrwx root root 14 ./usr/include/png.h -> libpng16/png.h
4308lrwxrwxrwx root root 21 ./usr/include/pnglibconf.h -> libpng16/pnglibconf.h
4309-rw-r--r-- root root 22 ./usr/include/poll.h
4310-rw-r--r-- root root 6801 ./usr/include/printf.h
4311drwxr-xr-x root root 4096 ./usr/include/proc
4312-rw-r--r-- root root 509 ./usr/include/proc/alloc.h
4313-rw-r--r-- root root 457 ./usr/include/proc/devname.h
4314-rw-r--r-- root root 913 ./usr/include/proc/escape.h
4315-rw-r--r-- root root 1068 ./usr/include/proc/numa.h
4316-rw-r--r-- root root 2936 ./usr/include/proc/procps.h
4317-rw-r--r-- root root 305 ./usr/include/proc/pwcache.h
4318-rw-r--r-- root root 15204 ./usr/include/proc/readproc.h
4319-rw-r--r-- root root 3477 ./usr/include/proc_service.h
4320-rw-r--r-- root root 1000 ./usr/include/proc/sig.h
4321-rw-r--r-- root root 1797 ./usr/include/proc/slab.h
4322-rw-r--r-- root root 4820 ./usr/include/proc/sysinfo.h
4323-rw-r--r-- root root 1480 ./usr/include/proc/version.h
4324-rw-r--r-- root root 160 ./usr/include/proc/wchan.h
4325-rw-r--r-- root root 202 ./usr/include/proc/whattime.h
4326drwxr-xr-x root root 4096 ./usr/include/protocols
4327-rw-r--r-- root root 3844 ./usr/include/protocols/routed.h
4328-rw-r--r-- root root 2567 ./usr/include/protocols/rwhod.h
4329-rw-r--r-- root root 4826 ./usr/include/protocols/talkd.h
4330-rw-r--r-- root root 3881 ./usr/include/protocols/timed.h
4331-rw-r--r-- root root 41701 ./usr/include/pthread.h
4332-rw-r--r-- root root 1570 ./usr/include/pty.h
4333-rw-r--r-- root root 6159 ./usr/include/pwd.h
4334drwxr-xr-x root root 4096 ./usr/include/pycairo
4335-rw-r--r-- root root 9152 ./usr/include/pycairo/py3cairo.h
4336drwxr-xr-x root root 4096 ./usr/include/pygobject-3.0
4337-rw-r--r-- root root 24983 ./usr/include/pygobject-3.0/pygobject.h
4338drwxr-xr-x root root 4096 ./usr/include/python3.8
4339-rw-r--r-- root root 30286 ./usr/include/python3.8/abstract.h
4340-rw-r--r-- root root 1229 ./usr/include/python3.8/asdl.h
4341-rw-r--r-- root root 948 ./usr/include/python3.8/ast.h
4342-rw-r--r-- root root 468 ./usr/include/python3.8/bitset.h
4343-rw-r--r-- root root 264 ./usr/include/python3.8/bltinmodule.h
4344-rw-r--r-- root root 886 ./usr/include/python3.8/boolobject.h
4345-rw-r--r-- root root 2114 ./usr/include/python3.8/bytearrayobject.h
4346-rw-r--r-- root root 3301 ./usr/include/python3.8/bytes_methods.h
4347-rw-r--r-- root root 8493 ./usr/include/python3.8/bytesobject.h
4348-rw-r--r-- root root 713 ./usr/include/python3.8/cellobject.h
4349-rw-r--r-- root root 8366 ./usr/include/python3.8/ceval.h
4350-rw-r--r-- root root 1710 ./usr/include/python3.8/classobject.h
4351-rw-r--r-- root root 6793 ./usr/include/python3.8/codecs.h
4352-rw-r--r-- root root 6982 ./usr/include/python3.8/code.h
4353-rw-r--r-- root root 3256 ./usr/include/python3.8/compile.h
4354-rw-r--r-- root root 1807 ./usr/include/python3.8/complexobject.h
4355-rw-r--r-- root root 2014 ./usr/include/python3.8/context.h
4356drwxr-xr-x root root 4096 ./usr/include/python3.8/cpython
4357-rw-r--r-- root root 12295 ./usr/include/python3.8/cpython/abstract.h
4358-rw-r--r-- root root 3845 ./usr/include/python3.8/cpython/dictobject.h
4359-rw-r--r-- root root 951 ./usr/include/python3.8/cpython/fileobject.h
4360-rw-r--r-- root root 16028 ./usr/include/python3.8/cpython/initconfig.h
4361-rw-r--r-- root root 456 ./usr/include/python3.8/cpython/interpreteridobject.h
4362-rw-r--r-- root root 15691 ./usr/include/python3.8/cpython/object.h
4363-rw-r--r-- root root 3600 ./usr/include/python3.8/cpython/objimpl.h
4364-rw-r--r-- root root 4607 ./usr/include/python3.8/cpython/pyerrors.h
4365-rw-r--r-- root root 2263 ./usr/include/python3.8/cpython/pylifecycle.h
4366-rw-r--r-- root root 3511 ./usr/include/python3.8/cpython/pymem.h
4367-rw-r--r-- root root 9743 ./usr/include/python3.8/cpython/pystate.h
4368-rw-r--r-- root root 547 ./usr/include/python3.8/cpython/sysmodule.h
4369-rw-r--r-- root root 473 ./usr/include/python3.8/cpython/traceback.h
4370-rw-r--r-- root root 1036 ./usr/include/python3.8/cpython/tupleobject.h
4371-rw-r--r-- root root 46299 ./usr/include/python3.8/cpython/unicodeobject.h
4372-rw-r--r-- root root 9260 ./usr/include/python3.8/datetime.h
4373-rw-r--r-- root root 3019 ./usr/include/python3.8/descrobject.h
4374-rw-r--r-- root root 3716 ./usr/include/python3.8/dictobject.h
4375-rw-r--r-- root root 458 ./usr/include/python3.8/dtoa.h
4376-rw-r--r-- root root 22469 ./usr/include/python3.8/dynamic_annotations.h
4377-rw-r--r-- root root 253 ./usr/include/python3.8/enumobject.h
4378-rw-r--r-- root root 1695 ./usr/include/python3.8/errcode.h
4379-rw-r--r-- root root 1209 ./usr/include/python3.8/eval.h
4380-rw-r--r-- root root 1342 ./usr/include/python3.8/fileobject.h
4381-rw-r--r-- root root 4352 ./usr/include/python3.8/fileutils.h
4382-rw-r--r-- root root 4794 ./usr/include/python3.8/floatobject.h
4383-rw-r--r-- root root 3317 ./usr/include/python3.8/frameobject.h
4384-rw-r--r-- root root 4200 ./usr/include/python3.8/funcobject.h
4385-rw-r--r-- root root 3720 ./usr/include/python3.8/genobject.h
4386-rw-r--r-- root root 2118 ./usr/include/python3.8/graminit.h
4387-rw-r--r-- root root 1821 ./usr/include/python3.8/grammar.h
4388-rw-r--r-- root root 4926 ./usr/include/python3.8/import.h
4389drwxr-xr-x root root 4096 ./usr/include/python3.8/internal
4390-rw-r--r-- root root 1126 ./usr/include/python3.8/internal/pycore_accu.h
4391-rw-r--r-- root root 16944 ./usr/include/python3.8/internal/pycore_atomic.h
4392-rw-r--r-- root root 966 ./usr/include/python3.8/internal/pycore_ceval.h
4393-rw-r--r-- root root 542 ./usr/include/python3.8/internal/pycore_code.h
4394-rw-r--r-- root root 2809 ./usr/include/python3.8/internal/pycore_condvar.h
4395-rw-r--r-- root root 779 ./usr/include/python3.8/internal/pycore_context.h
4396-rw-r--r-- root root 1254 ./usr/include/python3.8/internal/pycore_fileutils.h
4397-rw-r--r-- root root 490 ./usr/include/python3.8/internal/pycore_getopt.h
4398-rw-r--r-- root root 1520 ./usr/include/python3.8/internal/pycore_gil.h
4399-rw-r--r-- root root 3128 ./usr/include/python3.8/internal/pycore_hamt.h
4400-rw-r--r-- root root 5168 ./usr/include/python3.8/internal/pycore_initconfig.h
4401-rw-r--r-- root root 2896 ./usr/include/python3.8/internal/pycore_object.h
4402-rw-r--r-- root root 2037 ./usr/include/python3.8/internal/pycore_pathconfig.h
4403-rw-r--r-- root root 1329 ./usr/include/python3.8/internal/pycore_pyerrors.h
4404-rw-r--r-- root root 206 ./usr/include/python3.8/internal/pycore_pyhash.h
4405-rw-r--r-- root root 3758 ./usr/include/python3.8/internal/pycore_pylifecycle.h
4406-rw-r--r-- root root 8217 ./usr/include/python3.8/internal/pycore_pymem.h
4407-rw-r--r-- root root 9494 ./usr/include/python3.8/internal/pycore_pystate.h
4408-rw-r--r-- root root 3076 ./usr/include/python3.8/internal/pycore_traceback.h
4409-rw-r--r-- root root 418 ./usr/include/python3.8/internal/pycore_tupleobject.h
4410-rw-r--r-- root root 591 ./usr/include/python3.8/internal/pycore_warnings.h
4411-rw-r--r-- root root 334 ./usr/include/python3.8/interpreteridobject.h
4412-rw-r--r-- root root 861 ./usr/include/python3.8/intrcheck.h
4413-rw-r--r-- root root 567 ./usr/include/python3.8/iterobject.h
4414-rw-r--r-- root root 2927 ./usr/include/python3.8/listobject.h
4415-rw-r--r-- root root 3799 ./usr/include/python3.8/longintrepr.h
4416-rw-r--r-- root root 9520 ./usr/include/python3.8/longobject.h
4417-rw-r--r-- root root 803 ./usr/include/python3.8/marshal.h
4418-rw-r--r-- root root 2765 ./usr/include/python3.8/memoryobject.h
4419-rw-r--r-- root root 4406 ./usr/include/python3.8/methodobject.h
4420-rw-r--r-- root root 9591 ./usr/include/python3.8/modsupport.h
4421-rw-r--r-- root root 2362 ./usr/include/python3.8/moduleobject.h
4422-rw-r--r-- root root 349 ./usr/include/python3.8/namespaceobject.h
4423-rw-r--r-- root root 1328 ./usr/include/python3.8/node.h
4424-rw-r--r-- root root 29600 ./usr/include/python3.8/object.h
4425-rw-r--r-- root root 10537 ./usr/include/python3.8/objimpl.h
4426-rw-r--r-- root root 1300 ./usr/include/python3.8/odictobject.h
4427-rw-r--r-- root root 5164 ./usr/include/python3.8/opcode.h
4428-rw-r--r-- root root 737 ./usr/include/python3.8/osdefs.h
4429-rw-r--r-- root root 291 ./usr/include/python3.8/osmodule.h
4430-rw-r--r-- root root 2958 ./usr/include/python3.8/parsetok.h
4431-rw-r--r-- root root 1297 ./usr/include/python3.8/patchlevel.h
4432-rw-r--r-- root root 847 ./usr/include/python3.8/picklebufobject.h
4433-rw-r--r-- root root 2744 ./usr/include/python3.8/pyarena.h
4434-rw-r--r-- root root 1726 ./usr/include/python3.8/pycapsule.h
4435-rw-r--r-- root root 47363 ./usr/include/python3.8/pyconfig-64.h
4436-rw-r--r-- root root 560 ./usr/include/python3.8/pyconfig.h
4437-rw-r--r-- root root 1320 ./usr/include/python3.8/pyctype.h
4438-rw-r--r-- root root 2477 ./usr/include/python3.8/py_curses.h
4439-rw-r--r-- root root 1214 ./usr/include/python3.8/pydebug.h
4440-rw-r--r-- root root 2413 ./usr/include/python3.8/pydtrace.h
4441-rw-r--r-- root root 12786 ./usr/include/python3.8/pyerrors.h
4442-rw-r--r-- root root 2450 ./usr/include/python3.8/pyexpat.h
4443-rw-r--r-- root root 341 ./usr/include/python3.8/pyfpe.h
4444-rw-r--r-- root root 4140 ./usr/include/python3.8/pyhash.h
4445-rw-r--r-- root root 2081 ./usr/include/python3.8/pylifecycle.h
4446-rw-r--r-- root root 2989 ./usr/include/python3.8/pymacconfig.h
4447-rw-r--r-- root root 3778 ./usr/include/python3.8/pymacro.h
4448-rw-r--r-- root root 8312 ./usr/include/python3.8/pymath.h
4449-rw-r--r-- root root 5406 ./usr/include/python3.8/pymem.h
4450-rw-r--r-- root root 30221 ./usr/include/python3.8/pyport.h
4451-rw-r--r-- root root 4686 ./usr/include/python3.8/pystate.h
4452-rw-r--r-- root root 436 ./usr/include/python3.8/pystrcmp.h
4453-rw-r--r-- root root 849 ./usr/include/python3.8/pystrhex.h
4454-rw-r--r-- root root 1483 ./usr/include/python3.8/pystrtod.h
4455-rw-r--r-- root root 26491 ./usr/include/python3.8/Python-ast.h
4456-rw-r--r-- root root 3615 ./usr/include/python3.8/Python.h
4457-rw-r--r-- root root 7688 ./usr/include/python3.8/pythonrun.h
4458-rw-r--r-- root root 5660 ./usr/include/python3.8/pythread.h
4459-rw-r--r-- root root 8926 ./usr/include/python3.8/pytime.h
4460-rw-r--r-- root root 629 ./usr/include/python3.8/rangeobject.h
4461-rw-r--r-- root root 3362 ./usr/include/python3.8/setobject.h
4462-rw-r--r-- root root 2517 ./usr/include/python3.8/sliceobject.h
4463-rw-r--r-- root root 2030 ./usr/include/python3.8/structmember.h
4464-rw-r--r-- root root 1377 ./usr/include/python3.8/structseq.h
4465-rw-r--r-- root root 5308 ./usr/include/python3.8/symtable.h
4466-rw-r--r-- root root 1242 ./usr/include/python3.8/sysmodule.h
4467-rw-r--r-- root root 2429 ./usr/include/python3.8/token.h
4468-rw-r--r-- root root 601 ./usr/include/python3.8/traceback.h
4469-rw-r--r-- root root 1114 ./usr/include/python3.8/tracemalloc.h
4470-rw-r--r-- root root 1661 ./usr/include/python3.8/tupleobject.h
4471-rw-r--r-- root root 2253 ./usr/include/python3.8/typeslots.h
4472-rw-r--r-- root root 1056 ./usr/include/python3.8/ucnhash.h
4473-rw-r--r-- root root 35732 ./usr/include/python3.8/unicodeobject.h
4474-rw-r--r-- root root 1776 ./usr/include/python3.8/warnings.h
4475-rw-r--r-- root root 2866 ./usr/include/python3.8/weakrefobject.h
4476drwxr-xr-x root root 4096 ./usr/include/rdma
4477-rw-r--r-- root root 3291 ./usr/include/rdma/bnxt_re-abi.h
4478-rw-r--r-- root root 2468 ./usr/include/rdma/cxgb3-abi.h
4479-rw-r--r-- root root 3122 ./usr/include/rdma/cxgb4-abi.h
4480-rw-r--r-- root root 2141 ./usr/include/rdma/efa-abi.h
4481drwxr-xr-x root root 4096 ./usr/include/rdma/hfi
4482-rw-r--r-- root root 6618 ./usr/include/rdma/hfi/hfi1_ioctl.h
4483-rw-r--r-- root root 9225 ./usr/include/rdma/hfi/hfi1_user.h
4484-rw-r--r-- root root 2388 ./usr/include/rdma/hns-abi.h
4485-rw-r--r-- root root 3030 ./usr/include/rdma/i40iw-abi.h
4486-rw-r--r-- root root 6046 ./usr/include/rdma/ib_user_ioctl_cmds.h
4487-rw-r--r-- root root 5655 ./usr/include/rdma/ib_user_ioctl_verbs.h
4488-rw-r--r-- root root 8531 ./usr/include/rdma/ib_user_mad.h
4489-rw-r--r-- root root 2305 ./usr/include/rdma/ib_user_sa.h
4490-rw-r--r-- root root 26750 ./usr/include/rdma/ib_user_verbs.h
4491-rw-r--r-- root root 5117 ./usr/include/rdma/mlx4-abi.h
4492-rw-r--r-- root root 12968 ./usr/include/rdma/mlx5-abi.h
4493-rw-r--r-- root root 7368 ./usr/include/rdma/mlx5_user_ioctl_cmds.h
4494-rw-r--r-- root root 2624 ./usr/include/rdma/mlx5_user_ioctl_verbs.h
4495-rw-r--r-- root root 3055 ./usr/include/rdma/mthca-abi.h
4496-rw-r--r-- root root 3487 ./usr/include/rdma/nes-abi.h
4497-rw-r--r-- root root 4116 ./usr/include/rdma/ocrdma-abi.h
4498-rw-r--r-- root root 3160 ./usr/include/rdma/qedr-abi.h
4499-rw-r--r-- root root 14231 ./usr/include/rdma/rdma_netlink.h
4500-rw-r--r-- root root 6903 ./usr/include/rdma/rdma_user_cm.h
4501-rw-r--r-- root root 3008 ./usr/include/rdma/rdma_user_ioctl_cmds.h
4502-rw-r--r-- root root 3749 ./usr/include/rdma/rdma_user_ioctl.h
4503-rw-r--r-- root root 3839 ./usr/include/rdma/rdma_user_rxe.h
4504-rw-r--r-- root root 1771 ./usr/include/rdma/rvt-abi.h
4505-rw-r--r-- root root 3430 ./usr/include/rdma/siw-abi.h
4506-rw-r--r-- root root 7807 ./usr/include/rdma/vmw_pvrdma-abi.h
4507drwxr-xr-x root root 4096 ./usr/include/readline
4508-rw-r--r-- root root 4697 ./usr/include/readline/chardefs.h
4509-rw-r--r-- root root 10779 ./usr/include/readline/history.h
4510-rw-r--r-- root root 3260 ./usr/include/readline/keymaps.h
4511-rw-r--r-- root root 39338 ./usr/include/readline/readline.h
4512-rw-r--r-- root root 2829 ./usr/include/readline/rlconf.h
4513-rw-r--r-- root root 1835 ./usr/include/readline/rlstdc.h
4514-rw-r--r-- root root 3193 ./usr/include/readline/rltypedefs.h
4515-rw-r--r-- root root 3046 ./usr/include/readline/tilde.h
4516-rw-r--r-- root root 963 ./usr/include/re_comp.h
4517-rw-r--r-- root root 24715 ./usr/include/regex.h
4518-rw-r--r-- root root 1448 ./usr/include/regexp.h
4519-rw-r--r-- root root 11873 ./usr/include/resolv.h
4520drwxr-xr-x root root 4096 ./usr/include/rpc
4521-rw-r--r-- root root 2897 ./usr/include/rpc/netdb.h
4522drwxr-xr-x root root 4096 ./usr/include/rpcsvc
4523-rw-r--r-- root root 2675 ./usr/include/rpcsvc/nis_callback.h
4524-rw-r--r-- root root 2178 ./usr/include/rpcsvc/nis_callback.x
4525-rw-r--r-- root root 15879 ./usr/include/rpcsvc/nis.h
4526-rw-r--r-- root root 12340 ./usr/include/rpcsvc/nislib.h
4527-rw-r--r-- root root 13090 ./usr/include/rpcsvc/nis_object.x
4528-rw-r--r-- root root 5370 ./usr/include/rpcsvc/nis_tags.h
4529-rw-r--r-- root root 16802 ./usr/include/rpcsvc/nis.x
4530-rw-r--r-- root root 3481 ./usr/include/rpcsvc/ypclnt.h
4531-rw-r--r-- root root 7964 ./usr/include/rpcsvc/yp.h
4532-rw-r--r-- root root 913 ./usr/include/rpcsvc/yppasswd.h
4533-rw-r--r-- root root 2286 ./usr/include/rpcsvc/yppasswd.x
4534-rw-r--r-- root root 14920 ./usr/include/rpcsvc/yp_prot.h
4535-rw-r--r-- root root 3027 ./usr/include/rpcsvc/ypupd.h
4536-rw-r--r-- root root 6981 ./usr/include/rpcsvc/yp.x
4537-rw-r--r-- root root 4733 ./usr/include/sched.h
4538drwxr-xr-x root root 4096 ./usr/include/scsi
4539-rw-r--r-- root root 10168 ./usr/include/scsi/cxlflash_ioctl.h
4540drwxr-xr-x root root 4096 ./usr/include/scsi/fc
4541-rw-r--r-- root root 26902 ./usr/include/scsi/fc/fc_els.h
4542-rw-r--r-- root root 11703 ./usr/include/scsi/fc/fc_fs.h
4543-rw-r--r-- root root 2231 ./usr/include/scsi/fc/fc_gs.h
4544-rw-r--r-- root root 4317 ./usr/include/scsi/fc/fc_ns.h
4545-rw-r--r-- root root 8027 ./usr/include/scsi/scsi_bsg_fc.h
4546-rw-r--r-- root root 2795 ./usr/include/scsi/scsi_bsg_ufs.h
4547-rw-r--r-- root root 6970 ./usr/include/scsi/scsi.h
4548-rw-r--r-- root root 1316 ./usr/include/scsi/scsi_ioctl.h
4549-rw-r--r-- root root 1264 ./usr/include/scsi/scsi_netlink_fc.h
4550-rw-r--r-- root root 2906 ./usr/include/scsi/scsi_netlink.h
4551-rw-r--r-- root root 11662 ./usr/include/scsi/sg.h
4552-rw-r--r-- root root 5450 ./usr/include/search.h
4553-rw-r--r-- root root 2735 ./usr/include/semaphore.h
4554-rw-r--r-- root root 3670 ./usr/include/setjmp.h
4555-rw-r--r-- root root 1344 ./usr/include/sgtty.h
4556-rw-r--r-- root root 5472 ./usr/include/shadow.h
4557-rw-r--r-- root root 12309 ./usr/include/signal.h
4558drwxr-xr-x root root 4096 ./usr/include/sound
4559-rw-r--r-- root root 21847 ./usr/include/sound/asequencer.h
4560-rw-r--r-- root root 22222 ./usr/include/sound/asoc.h
4561-rw-r--r-- root root 4377 ./usr/include/sound/asound_fm.h
4562-rw-r--r-- root root 46564 ./usr/include/sound/asound.h
4563-rw-r--r-- root root 6743 ./usr/include/sound/compress_offload.h
4564-rw-r--r-- root root 16992 ./usr/include/sound/compress_params.h
4565-rw-r--r-- root root 17240 ./usr/include/sound/emu10k1.h
4566-rw-r--r-- root root 3245 ./usr/include/sound/firewire.h
4567-rw-r--r-- root root 3140 ./usr/include/sound/hdsp.h
4568-rw-r--r-- root root 5486 ./usr/include/sound/hdspm.h
4569-rw-r--r-- root root 4304 ./usr/include/sound/sb16_csp.h
4570-rw-r--r-- root root 7494 ./usr/include/sound/sfnt_info.h
4571-rw-r--r-- root root 5195 ./usr/include/sound/skl-tplg-interface.h
4572-rw-r--r-- root root 12191 ./usr/include/sound/snd_sst_tokens.h
4573drwxr-xr-x root root 4096 ./usr/include/sound/sof
4574-rw-r--r-- root root 2036 ./usr/include/sound/sof/abi.h
4575-rw-r--r-- root root 2267 ./usr/include/sound/sof/fw.h
4576-rw-r--r-- root root 922 ./usr/include/sound/sof/header.h
4577-rw-r--r-- root root 3267 ./usr/include/sound/sof/tokens.h
4578-rw-r--r-- root root 4601 ./usr/include/sound/tlv.h
4579-rw-r--r-- root root 1939 ./usr/include/sound/usb_stream.h
4580-rw-r--r-- root root 7758 ./usr/include/spawn.h
4581-rw-r--r-- root root 34802 ./usr/include/sqlite3ext.h
4582-rw-r--r-- root root 576161 ./usr/include/sqlite3.h
4583drwxr-xr-x root root 4096 ./usr/include/ss
4584-rw-r--r-- root root 1193 ./usr/include/ss/ss_err.h
4585-rw-r--r-- root root 3166 ./usr/include/ss/ss.h
4586-rw-r--r-- root root 264 ./usr/include/stab.h
4587-rw-r--r-- root root 2290 ./usr/include/stdc-predef.h
4588-rw-r--r-- root root 8474 ./usr/include/stdint.h
4589-rw-r--r-- root root 2800 ./usr/include/stdio_ext.h
4590-rw-r--r-- root root 29950 ./usr/include/stdio.h
4591-rw-r--r-- root root 35835 ./usr/include/stdlib.h
4592-rw-r--r-- root root 17660 ./usr/include/string.h
4593-rw-r--r-- root root 4753 ./usr/include/strings.h
4594-rw-r--r-- root root 2191 ./usr/include/symcat.h
4595drwxr-xr-x root root 4096 ./usr/include/sys
4596-rw-r--r-- root root 3302 ./usr/include/sys/acct.h
4597-rw-r--r-- root root 3700 ./usr/include/sys/acl.h
4598-rw-r--r-- root root 1260 ./usr/include/sys/auxv.h
4599-rw-r--r-- root root 86 ./usr/include/sys/bitypes.h
4600-rw-r--r-- root root 25 ./usr/include/syscall.h
4601-rw-r--r-- root root 6996 ./usr/include/sys/capability.h
4602-rw-r--r-- root root 18308 ./usr/include/sys/cdefs.h
4603-rw-r--r-- root root 3576 ./usr/include/sys/debugreg.h
4604-rw-r--r-- root root 922 ./usr/include/sys/dir.h
4605-rw-r--r-- root root 1024 ./usr/include/sys/elf.h
4606-rw-r--r-- root root 4411 ./usr/include/sys/epoll.h
4607-rw-r--r-- root root 19 ./usr/include/sys/errno.h
4608-rw-r--r-- root root 1400 ./usr/include/sys/eventfd.h
4609-rw-r--r-- root root 5232 ./usr/include/sysexits.h
4610-rw-r--r-- root root 1292 ./usr/include/sys/fanotify.h
4611-rw-r--r-- root root 19 ./usr/include/sys/fcntl.h
4612-rw-r--r-- root root 1675 ./usr/include/sys/file.h
4613-rw-r--r-- root root 1188 ./usr/include/sys/fsuid.h
4614-rw-r--r-- root root 6210 ./usr/include/sys/gmon.h
4615-rw-r--r-- root root 2636 ./usr/include/sys/gmon_out.h
4616-rw-r--r-- root root 3901 ./usr/include/sys/inotify.h
4617-rw-r--r-- root root 1740 ./usr/include/sys/ioctl.h
4618-rw-r--r-- root root 5086 ./usr/include/sys/io.h
4619-rw-r--r-- root root 1462 ./usr/include/sys/ipc.h
4620-rw-r--r-- root root 1112 ./usr/include/sys/kd.h
4621-rw-r--r-- root root 1204 ./usr/include/sys/klog.h
4622-rw-r--r-- root root 24 ./usr/include/syslog.h
4623-rw-r--r-- root root 5552 ./usr/include/sys/mman.h
4624-rw-r--r-- root root 5612 ./usr/include/sys/mount.h
4625-rw-r--r-- root root 2366 ./usr/include/sys/msg.h
4626-rw-r--r-- root root 11163 ./usr/include/sys/mtio.h
4627-rw-r--r-- root root 3149 ./usr/include/sys/param.h
4628-rw-r--r-- root root 923 ./usr/include/sys/pci.h
4629-rw-r--r-- root root 1127 ./usr/include/sys/perm.h
4630-rw-r--r-- root root 2723 ./usr/include/sys/personality.h
4631-rw-r--r-- root root 2550 ./usr/include/sys/poll.h
4632-rw-r--r-- root root 1059 ./usr/include/sys/prctl.h
4633-rw-r--r-- root root 4338 ./usr/include/sys/procfs.h
4634-rw-r--r-- root root 1959 ./usr/include/sys/profil.h
4635-rw-r--r-- root root 4680 ./usr/include/sys/psx_syscall.h
4636-rw-r--r-- root root 6126 ./usr/include/sys/ptrace.h
4637-rw-r--r-- root root 19539 ./usr/include/sys/queue.h
4638-rw-r--r-- root root 5173 ./usr/include/sys/quota.h
4639-rw-r--r-- root root 1444 ./usr/include/sys/random.h
4640-rw-r--r-- root root 1182 ./usr/include/sys/raw.h
4641-rw-r--r-- root root 1633 ./usr/include/sys/reboot.h
4642-rw-r--r-- root root 1827 ./usr/include/sys/reg.h
4643-rw-r--r-- root root 3646 ./usr/include/sys/resource.h
4644-rw-r--r-- root root 4141 ./usr/include/sys/select.h
4645-rw-r--r-- root root 2037 ./usr/include/sys/sem.h
4646-rw-r--r-- root root 1806 ./usr/include/sys/sendfile.h
4647-rw-r--r-- root root 1874 ./usr/include/sys/shm.h
4648-rw-r--r-- root root 1714 ./usr/include/sys/signalfd.h
4649-rw-r--r-- root root 20 ./usr/include/sys/signal.h
4650-rw-r--r-- root root 10205 ./usr/include/sys/socket.h
4651-rw-r--r-- root root 141 ./usr/include/sys/socketvar.h
4652-rw-r--r-- root root 29 ./usr/include/sys/soundcard.h
4653-rw-r--r-- root root 2094 ./usr/include/sys/statfs.h
4654-rw-r--r-- root root 16237 ./usr/include/sys/stat.h
4655-rw-r--r-- root root 2820 ./usr/include/sys/statvfs.h
4656-rw-r--r-- root root 1593 ./usr/include/sys/swap.h
4657-rw-r--r-- root root 1256 ./usr/include/sys/syscall.h
4658-rw-r--r-- root root 2105 ./usr/include/sys/sysctl.h
4659-rw-r--r-- root root 1518 ./usr/include/sys/sysinfo.h
4660-rw-r--r-- root root 7702 ./usr/include/sys/syslog.h
4661-rw-r--r-- root root 2103 ./usr/include/sys/sysmacros.h
4662-rw-r--r-- root root 74 ./usr/include/sys/termios.h
4663-rw-r--r-- root root 1420 ./usr/include/sys/timeb.h
4664-rw-r--r-- root root 6754 ./usr/include/sys/time.h
4665-rw-r--r-- root root 1874 ./usr/include/sys/timerfd.h
4666-rw-r--r-- root root 1597 ./usr/include/sys/times.h
4667-rw-r--r-- root root 2206 ./usr/include/sys/timex.h
4668-rw-r--r-- root root 2499 ./usr/include/sys/ttychars.h
4669-rw-r--r-- root root 3568 ./usr/include/sys/ttydefaults.h
4670-rw-r--r-- root root 5713 ./usr/include/sys/types.h
4671-rw-r--r-- root root 5842 ./usr/include/sys/ucontext.h
4672-rw-r--r-- root root 6280 ./usr/include/sys/uio.h
4673-rw-r--r-- root root 1453 ./usr/include/sys/un.h
4674-rw-r--r-- root root 20 ./usr/include/sys/unistd.h
4675-rw-r--r-- root root 5208 ./usr/include/sys/user.h
4676-rw-r--r-- root root 2481 ./usr/include/sys/utsname.h
4677-rw-r--r-- root root 161 ./usr/include/sys/vfs.h
4678-rw-r--r-- root root 1880 ./usr/include/sys/vlimit.h
4679-rw-r--r-- root root 1199 ./usr/include/sys/vm86.h
4680-rw-r--r-- root root 22 ./usr/include/sys/vt.h
4681-rw-r--r-- root root 2463 ./usr/include/sys/vtimes.h
4682-rw-r--r-- root root 5605 ./usr/include/sys/wait.h
4683-rw-r--r-- root root 4275 ./usr/include/sys/xattr.h
4684-rw-r--r-- root root 3786 ./usr/include/tar.h
4685-rw-r--r-- root root 9130 ./usr/include/tcpd.h
4686-rw-r--r-- root root 3471 ./usr/include/termcap.h
4687-rw-r--r-- root root 9096 ./usr/include/term_entry.h
4688-rw-r--r-- root root 40447 ./usr/include/term.h
4689-rw-r--r-- root root 214 ./usr/include/termio.h
4690-rw-r--r-- root root 3599 ./usr/include/termios.h
4691-rw-r--r-- root root 37419 ./usr/include/tgmath.h
4692-rw-r--r-- root root 16024 ./usr/include/thread_db.h
4693-rw-r--r-- root root 6661 ./usr/include/threads.h
4694-rw-r--r-- root root 14830 ./usr/include/tic.h
4695-rw-r--r-- root root 10276 ./usr/include/time.h
4696drwxr-xr-x root root 4096 ./usr/include/tirpc
4697-rw-r--r-- root root 2195 ./usr/include/tirpc/netconfig.h
4698drwxr-xr-x root root 4096 ./usr/include/tirpc/rpc
4699-rw-r--r-- root root 4143 ./usr/include/tirpc/rpc/auth_des.h
4700-rw-r--r-- root root 11085 ./usr/include/tirpc/rpc/auth.h
4701-rw-r--r-- root root 3009 ./usr/include/tirpc/rpc/auth_unix.h
4702-rw-r--r-- root root 17067 ./usr/include/tirpc/rpc/clnt.h
4703-rw-r--r-- root root 3904 ./usr/include/tirpc/rpc/clnt_soc.h
4704-rw-r--r-- root root 2202 ./usr/include/tirpc/rpc/clnt_stat.h
4705-rw-r--r-- root root 3706 ./usr/include/tirpc/rpc/des_crypt.h
4706-rw-r--r-- root root 3045 ./usr/include/tirpc/rpc/des.h
4707-rw-r--r-- root root 8021 ./usr/include/tirpc/rpc/key_prot.h
4708-rw-r--r-- root root 2431 ./usr/include/tirpc/rpc/nettype.h
4709-rw-r--r-- root root 3582 ./usr/include/tirpc/rpc/pmap_clnt.h
4710-rw-r--r-- root root 4064 ./usr/include/tirpc/rpc/pmap_prot.h
4711-rw-r--r-- root root 2450 ./usr/include/tirpc/rpc/pmap_rmt.h
4712-rw-r--r-- root root 2117 ./usr/include/tirpc/rpc/raw.h
4713-rw-r--r-- root root 3496 ./usr/include/tirpc/rpc/rpcb_clnt.h
4714-rw-r--r-- root root 25776 ./usr/include/tirpc/rpc/rpcb_prot.h
4715-rw-r--r-- root root 14673 ./usr/include/tirpc/rpc/rpcb_prot.x
4716-rw-r--r-- root root 3102 ./usr/include/tirpc/rpc/rpc_com.h
4717-rw-r--r-- root root 2712 ./usr/include/tirpc/rpc/rpcent.h
4718-rw-r--r-- root root 4130 ./usr/include/tirpc/rpc/rpc.h
4719-rw-r--r-- root root 5340 ./usr/include/tirpc/rpc/rpc_msg.h
4720drwxr-xr-x root root 4096 ./usr/include/tirpc/rpcsvc
4721-rw-r--r-- root root 3041 ./usr/include/tirpc/rpc/svc_auth.h
4722-rw-r--r-- root root 2414 ./usr/include/tirpc/rpcsvc/crypt.h
4723-rw-r--r-- root root 3929 ./usr/include/tirpc/rpcsvc/crypt.x
4724-rw-r--r-- root root 2462 ./usr/include/tirpc/rpc/svc_dg.h
4725-rw-r--r-- root root 14589 ./usr/include/tirpc/rpc/svc.h
4726-rw-r--r-- root root 1912 ./usr/include/tirpc/rpc/svc_mt.h
4727-rw-r--r-- root root 3749 ./usr/include/tirpc/rpc/svc_soc.h
4728-rw-r--r-- root root 3756 ./usr/include/tirpc/rpc/types.h
4729-rw-r--r-- root root 13372 ./usr/include/tirpc/rpc/xdr.h
4730-rw-r--r-- root root 2494 ./usr/include/ttyent.h
4731-rw-r--r-- root root 2002 ./usr/include/uchar.h
4732-rw-r--r-- root root 2037 ./usr/include/ucontext.h
4733-rw-r--r-- root root 8998 ./usr/include/udev.h
4734-rw-r--r-- root root 1584 ./usr/include/ulimit.h
4735-rw-r--r-- root root 3177 ./usr/include/unctrl.h
4736-rw-r--r-- root root 42804 ./usr/include/unistd.h
4737-rw-r--r-- root root 1502 ./usr/include/utime.h
4738-rw-r--r-- root root 3223 ./usr/include/utmp.h
4739-rw-r--r-- root root 4100 ./usr/include/utmpx.h
4740drwxr-xr-x root root 4096 ./usr/include/uuid
4741-rw-r--r-- root root 3910 ./usr/include/uuid/uuid.h
4742-rw-r--r-- root root 1956 ./usr/include/values.h
4743drwxr-xr-x root root 4096 ./usr/include/video
4744-rw-r--r-- root root 213 ./usr/include/video/edid.h
4745-rw-r--r-- root root 7643 ./usr/include/video/sisfb.h
4746-rw-r--r-- root root 1078 ./usr/include/video/uvesafb.h
4747-rw-r--r-- root root 22 ./usr/include/wait.h
4748-rw-r--r-- root root 8755 ./usr/include/wayland-client-core.h
4749-rw-r--r-- root root 1573 ./usr/include/wayland-client.h
4750-rw-r--r-- root root 184232 ./usr/include/wayland-client-protocol.h
4751-rw-r--r-- root root 2260 ./usr/include/wayland-cursor.h
4752-rw-r--r-- root root 1848 ./usr/include/wayland-egl-backend.h
4753-rw-r--r-- root root 1788 ./usr/include/wayland-egl-core.h
4754-rw-r--r-- root root 1313 ./usr/include/wayland-egl.h
4755-rw-r--r-- root root 19021 ./usr/include/wayland-server-core.h
4756-rw-r--r-- root root 3237 ./usr/include/wayland-server.h
4757-rw-r--r-- root root 144281 ./usr/include/wayland-server-protocol.h
4758-rw-r--r-- root root 24118 ./usr/include/wayland-util.h
4759-rw-r--r-- root root 1354 ./usr/include/wayland-version.h
4760-rw-r--r-- root root 31111 ./usr/include/wchar.h
4761-rw-r--r-- root root 5549 ./usr/include/wctype.h
4762-rw-r--r-- root root 2502 ./usr/include/wordexp.h
4763drwxr-xr-x root root 4096 ./usr/include/X11
4764-rw-r--r-- root root 2293 ./usr/include/X11/ap_keysym.h
4765-rw-r--r-- root root 3118 ./usr/include/X11/cursorfont.h
4766-rw-r--r-- root root 2815 ./usr/include/X11/DECkeysym.h
4767drwxr-xr-x root root 4096 ./usr/include/X11/dri
4768-rw-r--r-- root root 2445 ./usr/include/X11/dri/xf86dri.h
4769-rw-r--r-- root root 9669 ./usr/include/X11/dri/xf86driproto.h
4770-rw-r--r-- root root 174 ./usr/include/X11/dri/xf86dristr.h
4771drwxr-xr-x root root 4096 ./usr/include/X11/extensions
4772-rw-r--r-- root root 1705 ./usr/include/X11/extensions/ag.h
4773-rw-r--r-- root root 5005 ./usr/include/X11/extensions/agproto.h
4774-rw-r--r-- root root 2900 ./usr/include/X11/extensions/applewmconst.h
4775-rw-r--r-- root root 8098 ./usr/include/X11/extensions/applewmproto.h
4776-rw-r--r-- root root 1909 ./usr/include/X11/extensions/bigreqsproto.h
4777-rw-r--r-- root root 187 ./usr/include/X11/extensions/bigreqstr.h
4778-rw-r--r-- root root 3130 ./usr/include/X11/extensions/composite.h
4779-rw-r--r-- root root 5462 ./usr/include/X11/extensions/compositeproto.h
4780-rw-r--r-- root root 1353 ./usr/include/X11/extensions/cup.h
4781-rw-r--r-- root root 3065 ./usr/include/X11/extensions/cupproto.h
4782-rw-r--r-- root root 3615 ./usr/include/X11/extensions/damageproto.h
4783-rw-r--r-- root root 1893 ./usr/include/X11/extensions/damagewire.h
4784-rw-r--r-- root root 2159 ./usr/include/X11/extensions/dbe.h
4785-rw-r--r-- root root 7343 ./usr/include/X11/extensions/dbeproto.h
4786-rw-r--r-- root root 2373 ./usr/include/X11/extensions/dmx.h
4787-rw-r--r-- root root 13343 ./usr/include/X11/extensions/dmxproto.h
4788-rw-r--r-- root root 1778 ./usr/include/X11/extensions/dpmsconst.h
4789-rw-r--r-- root root 2161 ./usr/include/X11/extensions/dpms.h
4790-rw-r--r-- root root 5288 ./usr/include/X11/extensions/dpmsproto.h
4791-rw-r--r-- root root 8318 ./usr/include/X11/extensions/dri2proto.h
4792-rw-r--r-- root root 2468 ./usr/include/X11/extensions/dri2tokens.h
4793-rw-r--r-- root root 6129 ./usr/include/X11/extensions/dri3proto.h
4794-rw-r--r-- root root 1563 ./usr/include/X11/extensions/EVI.h
4795-rw-r--r-- root root 3006 ./usr/include/X11/extensions/EVIproto.h
4796-rw-r--r-- root root 6096 ./usr/include/X11/extensions/extutil.h
4797-rw-r--r-- root root 1782 ./usr/include/X11/extensions/ge.h
4798-rw-r--r-- root root 2351 ./usr/include/X11/extensions/geproto.h
4799-rw-r--r-- root root 2236 ./usr/include/X11/extensions/lbx.h
4800-rw-r--r-- root root 24782 ./usr/include/X11/extensions/lbxproto.h
4801-rw-r--r-- root root 1509 ./usr/include/X11/extensions/mitmiscconst.h
4802-rw-r--r-- root root 1741 ./usr/include/X11/extensions/MITMisc.h
4803-rw-r--r-- root root 2229 ./usr/include/X11/extensions/mitmiscproto.h
4804-rw-r--r-- root root 2575 ./usr/include/X11/extensions/multibufconst.h
4805-rw-r--r-- root root 5835 ./usr/include/X11/extensions/multibuf.h
4806-rw-r--r-- root root 8600 ./usr/include/X11/extensions/multibufproto.h
4807-rw-r--r-- root root 5473 ./usr/include/X11/extensions/panoramiXproto.h
4808-rw-r--r-- root root 5409 ./usr/include/X11/extensions/presentproto.h
4809-rw-r--r-- root root 3597 ./usr/include/X11/extensions/presenttokens.h
4810-rw-r--r-- root root 6909 ./usr/include/X11/extensions/randr.h
4811-rw-r--r-- root root 25751 ./usr/include/X11/extensions/randrproto.h
4812-rw-r--r-- root root 2064 ./usr/include/X11/extensions/recordconst.h
4813-rw-r--r-- root root 7634 ./usr/include/X11/extensions/recordproto.h
4814-rw-r--r-- root root 258 ./usr/include/X11/extensions/recordstr.h
4815-rw-r--r-- root root 6933 ./usr/include/X11/extensions/render.h
4816-rw-r--r-- root root 13218 ./usr/include/X11/extensions/renderproto.h
4817-rw-r--r-- root root 1900 ./usr/include/X11/extensions/saver.h
4818-rw-r--r-- root root 5132 ./usr/include/X11/extensions/saverproto.h
4819-rw-r--r-- root root 2141 ./usr/include/X11/extensions/secur.h
4820-rw-r--r-- root root 2457 ./usr/include/X11/extensions/security.h
4821-rw-r--r-- root root 3177 ./usr/include/X11/extensions/securproto.h
4822-rw-r--r-- root root 1878 ./usr/include/X11/extensions/shapeconst.h
4823-rw-r--r-- root root 4133 ./usr/include/X11/extensions/shape.h
4824-rw-r--r-- root root 6730 ./usr/include/X11/extensions/shapeproto.h
4825-rw-r--r-- root root 252 ./usr/include/X11/extensions/shapestr.h
4826-rw-r--r-- root root 1645 ./usr/include/X11/extensions/shm.h
4827-rw-r--r-- root root 6045 ./usr/include/X11/extensions/shmproto.h
4828-rw-r--r-- root root 2123 ./usr/include/X11/extensions/shmstr.h
4829-rw-r--r-- root root 6750 ./usr/include/X11/extensions/syncconst.h
4830-rw-r--r-- root root 9676 ./usr/include/X11/extensions/sync.h
4831-rw-r--r-- root root 11001 ./usr/include/X11/extensions/syncproto.h
4832-rw-r--r-- root root 5606 ./usr/include/X11/extensions/syncstr.h
4833-rw-r--r-- root root 2377 ./usr/include/X11/extensions/Xag.h
4834-rw-r--r-- root root 3057 ./usr/include/X11/extensions/xcmiscproto.h
4835-rw-r--r-- root root 185 ./usr/include/X11/extensions/xcmiscstr.h
4836-rw-r--r-- root root 1710 ./usr/include/X11/extensions/Xcup.h
4837-rw-r--r-- root root 2307 ./usr/include/X11/extensions/Xdamage.h
4838-rw-r--r-- root root 4170 ./usr/include/X11/extensions/Xdbe.h
4839-rw-r--r-- root root 2130 ./usr/include/X11/extensions/XEVI.h
4840-rw-r--r-- root root 1655 ./usr/include/X11/extensions/Xext.h
4841-rw-r--r-- root root 414 ./usr/include/X11/extensions/xf86bigfont.h
4842-rw-r--r-- root root 2544 ./usr/include/X11/extensions/xf86bigfproto.h
4843-rw-r--r-- root root 191 ./usr/include/X11/extensions/xf86bigfstr.h
4844-rw-r--r-- root root 931 ./usr/include/X11/extensions/xf86dga1const.h
4845-rw-r--r-- root root 4506 ./usr/include/X11/extensions/xf86dga1proto.h
4846-rw-r--r-- root root 191 ./usr/include/X11/extensions/xf86dga1str.h
4847-rw-r--r-- root root 2533 ./usr/include/X11/extensions/xf86dgaconst.h
4848-rw-r--r-- root root 369 ./usr/include/X11/extensions/xf86dga.h
4849-rw-r--r-- root root 7106 ./usr/include/X11/extensions/xf86dgaproto.h
4850-rw-r--r-- root root 188 ./usr/include/X11/extensions/xf86dgastr.h
4851-rw-r--r-- root root 2106 ./usr/include/X11/extensions/xf86vm.h
4852-rw-r--r-- root root 7619 ./usr/include/X11/extensions/xf86vmode.h
4853-rw-r--r-- root root 15700 ./usr/include/X11/extensions/xf86vmproto.h
4854-rw-r--r-- root root 185 ./usr/include/X11/extensions/xf86vmstr.h
4855-rw-r--r-- root root 7588 ./usr/include/X11/extensions/Xfixes.h
4856-rw-r--r-- root root 12752 ./usr/include/X11/extensions/xfixesproto.h
4857-rw-r--r-- root root 5396 ./usr/include/X11/extensions/xfixeswire.h
4858-rw-r--r-- root root 1927 ./usr/include/X11/extensions/Xge.h
4859-rw-r--r-- root root 10542 ./usr/include/X11/extensions/XI2.h
4860-rw-r--r-- root root 37577 ./usr/include/X11/extensions/XI2proto.h
4861-rw-r--r-- root root 9823 ./usr/include/X11/extensions/XI.h
4862-rw-r--r-- root root 41010 ./usr/include/X11/extensions/XIproto.h
4863-rw-r--r-- root root 15808 ./usr/include/X11/extensions/XKBgeom.h
4864-rw-r--r-- root root 28211 ./usr/include/X11/extensions/XKB.h
4865-rw-r--r-- root root 29105 ./usr/include/X11/extensions/XKBproto.h
4866-rw-r--r-- root root 28018 ./usr/include/X11/extensions/XKBsrv.h
4867-rw-r--r-- root root 19630 ./usr/include/X11/extensions/XKBstr.h
4868-rw-r--r-- root root 1601 ./usr/include/X11/extensions/XLbx.h
4869-rw-r--r-- root root 17120 ./usr/include/X11/extensions/Xrandr.h
4870-rw-r--r-- root root 12805 ./usr/include/X11/extensions/Xrender.h
4871-rw-r--r-- root root 5168 ./usr/include/X11/extensions/XResproto.h
4872-rw-r--r-- root root 3735 ./usr/include/X11/extensions/XShm.h
4873-rw-r--r-- root root 1392 ./usr/include/X11/extensions/xtestconst.h
4874-rw-r--r-- root root 5439 ./usr/include/X11/extensions/xtestext1const.h
4875-rw-r--r-- root root 3708 ./usr/include/X11/extensions/xtestext1.h
4876-rw-r--r-- root root 7790 ./usr/include/X11/extensions/xtestext1proto.h
4877-rw-r--r-- root root 3254 ./usr/include/X11/extensions/xtestproto.h
4878-rw-r--r-- root root 3027 ./usr/include/X11/extensions/Xv.h
4879-rw-r--r-- root root 3620 ./usr/include/X11/extensions/XvMC.h
4880-rw-r--r-- root root 4484 ./usr/include/X11/extensions/XvMCproto.h
4881-rw-r--r-- root root 12109 ./usr/include/X11/extensions/Xvproto.h
4882drwxr-xr-x root root 4096 ./usr/include/X11/fonts
4883-rw-r--r-- root root 4253 ./usr/include/X11/fonts/font.h
4884-rw-r--r-- root root 3450 ./usr/include/X11/fonts/fontproto.h
4885-rw-r--r-- root root 9401 ./usr/include/X11/fonts/fontstruct.h
4886-rw-r--r-- root root 4075 ./usr/include/X11/fonts/FS.h
4887-rw-r--r-- root root 3992 ./usr/include/X11/fonts/fsmasks.h
4888-rw-r--r-- root root 19889 ./usr/include/X11/fonts/FSproto.h
4889-rw-r--r-- root root 6046 ./usr/include/X11/HPkeysym.h
4890drwxr-xr-x root root 4096 ./usr/include/X11/ICE
4891-rw-r--r-- root root 7413 ./usr/include/X11/ICE/ICEconn.h
4892-rw-r--r-- root root 2512 ./usr/include/X11/ICE/ICE.h
4893-rw-r--r-- root root 9925 ./usr/include/X11/ICE/ICElib.h
4894-rw-r--r-- root root 8206 ./usr/include/X11/ICE/ICEmsg.h
4895-rw-r--r-- root root 4604 ./usr/include/X11/ICE/ICEproto.h
4896-rw-r--r-- root root 3154 ./usr/include/X11/ICE/ICEutil.h
4897-rw-r--r-- root root 459 ./usr/include/X11/ImUtil.h
4898-rw-r--r-- root root 175248 ./usr/include/X11/keysymdef.h
4899-rw-r--r-- root root 2769 ./usr/include/X11/keysym.h
4900drwxr-xr-x root root 4096 ./usr/include/X11/SM
4901-rw-r--r-- root root 2927 ./usr/include/X11/SM/SM.h
4902-rw-r--r-- root root 11268 ./usr/include/X11/SM/SMlib.h
4903-rw-r--r-- root root 4852 ./usr/include/X11/SM/SMproto.h
4904-rw-r--r-- root root 4022 ./usr/include/X11/Sunkeysym.h
4905-rw-r--r-- root root 4587 ./usr/include/X11/Xalloca.h
4906-rw-r--r-- root root 2951 ./usr/include/X11/Xarch.h
4907-rw-r--r-- root root 2518 ./usr/include/X11/Xatom.h
4908-rw-r--r-- root root 3817 ./usr/include/X11/Xauth.h
4909-rw-r--r-- root root 21346 ./usr/include/X11/Xcms.h
4910-rw-r--r-- root root 2401 ./usr/include/X11/Xdefs.h
4911-rw-r--r-- root root 6371 ./usr/include/X11/Xdmcp.h
4912-rw-r--r-- root root 13612 ./usr/include/X11/XF86keysym.h
4913-rw-r--r-- root root 7863 ./usr/include/X11/Xfuncproto.h
4914-rw-r--r-- root root 2256 ./usr/include/X11/Xfuncs.h
4915-rw-r--r-- root root 20137 ./usr/include/X11/X.h
4916-rw-r--r-- root root 30995 ./usr/include/X11/XKBlib.h
4917-rw-r--r-- root root 1567 ./usr/include/X11/XlibConf.h
4918-rw-r--r-- root root 99532 ./usr/include/X11/Xlib.h
4919-rw-r--r-- root root 40597 ./usr/include/X11/Xlibint.h
4920-rw-r--r-- root root 506 ./usr/include/X11/Xlib-xcb.h
4921-rw-r--r-- root root 1297 ./usr/include/X11/Xlocale.h
4922-rw-r--r-- root root 5122 ./usr/include/X11/Xmd.h
4923-rw-r--r-- root root 3115 ./usr/include/X11/Xosdefs.h
4924-rw-r--r-- root root 4362 ./usr/include/X11/Xos.h
4925-rw-r--r-- root root 33693 ./usr/include/X11/Xos_r.h
4926-rw-r--r-- root root 7743 ./usr/include/X11/Xpoll.h
4927-rw-r--r-- root root 52399 ./usr/include/X11/Xproto.h
4928-rw-r--r-- root root 2743 ./usr/include/X11/Xprotostr.h
4929-rw-r--r-- root root 5949 ./usr/include/X11/Xregion.h
4930-rw-r--r-- root root 10628 ./usr/include/X11/Xresource.h
4931-rw-r--r-- root root 1719 ./usr/include/X11/xshmfence.h
4932-rw-r--r-- root root 12395 ./usr/include/X11/Xthreads.h
4933drwxr-xr-x root root 4096 ./usr/include/X11/Xtrans
4934-rw-r--r-- root root 2876 ./usr/include/X11/Xtrans/transport.c
4935-rw-r--r-- root root 29462 ./usr/include/X11/Xtrans/Xtrans.c
4936-rw-r--r-- root root 8785 ./usr/include/X11/Xtrans/Xtrans.h
4937-rw-r--r-- root root 10158 ./usr/include/X11/Xtrans/Xtransint.h
4938-rw-r--r-- root root 55410 ./usr/include/X11/Xtrans/Xtranslcl.c
4939-rw-r--r-- root root 62655 ./usr/include/X11/Xtrans/Xtranssock.c
4940-rw-r--r-- root root 14937 ./usr/include/X11/Xtrans/Xtransutil.c
4941-rw-r--r-- root root 21353 ./usr/include/X11/Xutil.h
4942-rw-r--r-- root root 1909 ./usr/include/X11/Xw32defs.h
4943-rw-r--r-- root root 3872 ./usr/include/X11/XWDFile.h
4944-rw-r--r-- root root 3283 ./usr/include/X11/Xwindows.h
4945-rw-r--r-- root root 2261 ./usr/include/X11/Xwinsock.h
4946drwxr-xr-x root root 4096 ./usr/include/xcb
4947-rw-r--r-- root root 2407 ./usr/include/xcb/bigreq.h
4948-rw-r--r-- root root 13867 ./usr/include/xcb/composite.h
4949-rw-r--r-- root root 9285 ./usr/include/xcb/damage.h
4950-rw-r--r-- root root 11924 ./usr/include/xcb/dpms.h
4951-rw-r--r-- root root 35759 ./usr/include/xcb/dri2.h
4952-rw-r--r-- root root 24241 ./usr/include/xcb/dri3.h
4953-rw-r--r-- root root 2981 ./usr/include/xcb/ge.h
4954-rw-r--r-- root root 252818 ./usr/include/xcb/glx.h
4955-rw-r--r-- root root 19292 ./usr/include/xcb/present.h
4956-rw-r--r-- root root 139534 ./usr/include/xcb/randr.h
4957-rw-r--r-- root root 27912 ./usr/include/xcb/record.h
4958-rw-r--r-- root root 103726 ./usr/include/xcb/render.h
4959-rw-r--r-- root root 24483 ./usr/include/xcb/res.h
4960-rw-r--r-- root root 16460 ./usr/include/xcb/screensaver.h
4961-rw-r--r-- root root 20806 ./usr/include/xcb/shape.h
4962-rw-r--r-- root root 17261 ./usr/include/xcb/shm.h
4963-rw-r--r-- root root 43756 ./usr/include/xcb/sync.h
4964-rw-r--r-- root root 13990 ./usr/include/xcb/xcbext.h
4965-rw-r--r-- root root 22260 ./usr/include/xcb/xcb.h
4966-rw-r--r-- root root 7137 ./usr/include/xcb/xc_misc.h
4967-rw-r--r-- root root 11593 ./usr/include/xcb/xevie.h
4968-rw-r--r-- root root 28034 ./usr/include/xcb/xf86dri.h
4969-rw-r--r-- root root 58079 ./usr/include/xcb/xfixes.h
4970-rw-r--r-- root root 14955 ./usr/include/xcb/xinerama.h
4971-rw-r--r-- root root 305557 ./usr/include/xcb/xinput.h
4972-rw-r--r-- root root 246448 ./usr/include/xcb/xkb.h
4973-rw-r--r-- root root 57187 ./usr/include/xcb/xprint.h
4974-rw-r--r-- root root 385800 ./usr/include/xcb/xproto.h
4975-rw-r--r-- root root 56622 ./usr/include/xcb/xselinux.h
4976-rw-r--r-- root root 7589 ./usr/include/xcb/xtest.h
4977-rw-r--r-- root root 57788 ./usr/include/xcb/xv.h
4978-rw-r--r-- root root 24530 ./usr/include/xcb/xvmc.h
4979drwxr-xr-x root root 4096 ./usr/include/xen
4980-rw-r--r-- root root 3553 ./usr/include/xen/evtchn.h
4981-rw-r--r-- root root 2619 ./usr/include/xen/gntalloc.h
4982-rw-r--r-- root root 10647 ./usr/include/xen/gntdev.h
4983-rw-r--r-- root root 4206 ./usr/include/xen/privcmd.h
4984-rw-r--r-- root root 35465 ./usr/include/xf86drm.h
4985-rw-r--r-- root root 18016 ./usr/include/xf86drmMode.h
4986-rw-r--r-- root root 19283 ./usr/include/xtables.h
4987-rw-r--r-- root root 75 ./usr/include/xtables-version.h
4988-rw-r--r-- root root 16262 ./usr/include/zconf.h
4989-rw-r--r-- root root 96239 ./usr/include/zlib.h
4990drwxr-xr-x root root 20480 ./usr/lib
4991drwxr-xr-x root root 4096 ./usr/lib/cmake
4992drwxr-xr-x root root 4096 ./usr/lib/cmake/DBus1
4993-rw-r--r-- root root 2883 ./usr/lib/cmake/DBus1/DBus1Config.cmake
4994-rw-r--r-- root root 367 ./usr/lib/cmake/DBus1/DBus1ConfigVersion.cmake
4995drwxr-xr-x root root 4096 ./usr/lib/cmake/libxml2
4996-rw-r--r-- root root 1642 ./usr/lib/cmake/libxml2/libxml2-config.cmake
4997drwxr-xr-x root root 4096 ./usr/lib/coreutils
4998-rwxr-xr-x root root 14144 ./usr/lib/coreutils/libstdbuf.so
4999-rw-r--r-- root root 4280 ./usr/lib/crt1.o
5000-rw-r--r-- root root 2808 ./usr/lib/crti.o
5001-rw-r--r-- root root 2552 ./usr/lib/crtn.o
5002drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0
5003drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0/include
5004drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0/include/dbus
5005-rw-r--r-- root root 2052 ./usr/lib/dbus-1.0/include/dbus/dbus-arch-deps.h
5006drwxr-xr-x root root 4096 ./usr/lib/dri
5007-rwxr-xr-x root root 12207608 ./usr/lib/dri/i915_dri.so
5008-rwxr-xr-x root root 12207608 ./usr/lib/dri/i965_dri.so
5009-rwxr-xr-x root root 9195384 ./usr/lib/dri/kms_swrast_dri.so
5010-rwxr-xr-x root root 12207608 ./usr/lib/dri/nouveau_vieux_dri.so
5011-rwxr-xr-x root root 12207608 ./usr/lib/dri/r200_dri.so
5012-rwxr-xr-x root root 12207608 ./usr/lib/dri/radeon_dri.so
5013-rwxr-xr-x root root 9195384 ./usr/lib/dri/swrast_dri.so
5014-rwxr-xr-x root root 9195384 ./usr/lib/dri/virtio_gpu_dri.so
5015-rwxr-xr-x root root 14376 ./usr/lib/e2initrd_helper
5016drwxr-xr-x root root 4096 ./usr/libexec
5017drwxr-xr-x root root 4096 ./usr/libexec/awk
5018-rwxr-xr-x root root 14288 ./usr/libexec/awk/grcat
5019-rwxr-xr-x root root 14288 ./usr/libexec/awk/pwcat
5020-rwsr-xr-x root messagebus 63592 ./usr/libexec/dbus-daemon-launch-helper
5021-rwxr-xr-x root root 43168 ./usr/libexec/frcode
5022-rwxr-xr-x root root 14304 ./usr/libexec/gio-querymodules
5023-rwxr-xr-x root root 354584 ./usr/libexec/udevadm
5024drwxr-xr-x root root 4096 ./usr/lib/gawk
5025-rwxr-xr-x root root 39016 ./usr/lib/gawk/filefuncs.so
5026-rwxr-xr-x root root 14288 ./usr/lib/gawk/fnmatch.so
5027-rwxr-xr-x root root 14304 ./usr/lib/gawk/fork.so
5028-rwxr-xr-x root root 14288 ./usr/lib/gawk/inplace.so
5029-rwxr-xr-x root root 14208 ./usr/lib/gawk/intdiv.so
5030-rwxr-xr-x root root 14256 ./usr/lib/gawk/ordchr.so
5031-rwxr-xr-x root root 14192 ./usr/lib/gawk/readdir.so
5032-rwxr-xr-x root root 14256 ./usr/lib/gawk/readfile.so
5033-rwxr-xr-x root root 14200 ./usr/lib/gawk/revoutput.so
5034-rwxr-xr-x root root 14200 ./usr/lib/gawk/revtwoway.so
5035-rwxr-xr-x root root 18352 ./usr/lib/gawk/rwarray.so
5036-rwxr-xr-x root root 14256 ./usr/lib/gawk/time.so
5037-rw-r--r-- root root 7064 ./usr/lib/gcrt1.o
5038drwxr-xr-x root root 4096 ./usr/lib/gio
5039drwxr-xr-x root root 4096 ./usr/lib/gio/modules
5040drwxr-xr-x root root 4096 ./usr/lib/girepository-1.0
5041-rw-r--r-- root root 14344 ./usr/lib/girepository-1.0/cairo-1.0.typelib
5042-rw-r--r-- root root 712 ./usr/lib/girepository-1.0/DBus-1.0.typelib
5043-rw-r--r-- root root 560 ./usr/lib/girepository-1.0/DBusGLib-1.0.typelib
5044-rw-r--r-- root root 348 ./usr/lib/girepository-1.0/fontconfig-2.0.typelib
5045-rw-r--r-- root root 420 ./usr/lib/girepository-1.0/freetype2-2.0.typelib
5046-rw-r--r-- root root 353336 ./usr/lib/girepository-1.0/Gio-2.0.typelib
5047-rw-r--r-- root root 27752 ./usr/lib/girepository-1.0/GIRepository-2.0.typelib
5048-rw-r--r-- root root 948 ./usr/lib/girepository-1.0/GL-1.0.typelib
5049-rw-r--r-- root root 191884 ./usr/lib/girepository-1.0/GLib-2.0.typelib
5050-rw-r--r-- root root 1340 ./usr/lib/girepository-1.0/GModule-2.0.typelib
5051-rw-r--r-- root root 58972 ./usr/lib/girepository-1.0/GObject-2.0.typelib
5052-rw-r--r-- root root 668 ./usr/lib/girepository-1.0/libxml2-2.0.typelib
5053-rw-r--r-- root root 59380 ./usr/lib/girepository-1.0/Vulkan-1.0.typelib
5054-rw-r--r-- root root 176 ./usr/lib/girepository-1.0/win32-1.0.typelib
5055-rw-r--r-- root root 240 ./usr/lib/girepository-1.0/xfixes-4.0.typelib
5056-rw-r--r-- root root 464 ./usr/lib/girepository-1.0/xft-2.0.typelib
5057-rw-r--r-- root root 836 ./usr/lib/girepository-1.0/xlib-2.0.typelib
5058-rw-r--r-- root root 640 ./usr/lib/girepository-1.0/xrandr-1.3.typelib
5059drwxr-xr-x root root 4096 ./usr/lib/glib-2.0
5060drwxr-xr-x root root 4096 ./usr/lib/glib-2.0/include
5061-rw-r--r-- root root 5649 ./usr/lib/glib-2.0/include/glibconfig.h
5062drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection
5063drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner
5064-rw-r--r-- root root 3526 ./usr/lib/gobject-introspection/giscanner/annotationmain.py
5065-rw-r--r-- root root 101376 ./usr/lib/gobject-introspection/giscanner/annotationparser.py
5066-rw-r--r-- root root 43411 ./usr/lib/gobject-introspection/giscanner/ast.py
5067-rw-r--r-- root root 5852 ./usr/lib/gobject-introspection/giscanner/cachestore.py
5068-rw-r--r-- root root 19524 ./usr/lib/gobject-introspection/giscanner/ccompiler.py
5069-rw-r--r-- root root 6190 ./usr/lib/gobject-introspection/giscanner/codegen.py
5070-rw-r--r-- root root 3268 ./usr/lib/gobject-introspection/giscanner/docmain.py
5071drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates
5072drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs
5073drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs
5074-rw-r--r-- root root 567 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/base.tmpl
5075-rw-r--r-- root root 113 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/callback.tmpl
5076-rw-r--r-- root root 29 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/class.tmpl
5077-rw-r--r-- root root 847 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/default.tmpl
5078-rw-r--r-- root root 890 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl
5079-rw-r--r-- root root 313 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/enum.tmpl
5080-rw-r--r-- root root 113 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/function.tmpl
5081-rw-r--r-- root root 5189 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_index.tmpl
5082-rw-r--r-- root root 29 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/interface.tmpl
5083-rw-r--r-- root root 120 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_methods.tmpl
5084-rw-r--r-- root root 1899 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_method.tmpl
5085-rw-r--r-- root root 32 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/method.tmpl
5086-rw-r--r-- root root 1278 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/namespace.tmpl
5087-rw-r--r-- root root 1123 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_properties.tmpl
5088-rw-r--r-- root root 652 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_signals.tmpl
5089-rw-r--r-- root root 176 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_staticmethods.tmpl
5090-rw-r--r-- root root 183 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_vfuncs.tmpl
5091drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard
5092-rw-r--r-- root root 765 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/base.tmpl
5093drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C
5094-rw-r--r-- root root 141 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/callback.tmpl
5095-rw-r--r-- root root 57 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/class.tmpl
5096-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/constructor.tmpl
5097-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/default.tmpl
5098-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/enum.tmpl
5099-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/field.tmpl
5100-rw-r--r-- root root 1654 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/function.tmpl
5101-rw-r--r-- root root 57 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/interface.tmpl
5102-rw-r--r-- root root 1982 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/class.tmpl
5103-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/method.tmpl
5104-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/namespace.tmpl
5105-rw-r--r-- root root 191 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/property.tmpl
5106-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/record.tmpl
5107-rw-r--r-- root root 196 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/signal.tmpl
5108-rw-r--r-- root root 139 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/vfunc.tmpl
5109drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs
5110-rw-r--r-- root root 780 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/callback.tmpl
5111-rw-r--r-- root root 863 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/class.tmpl
5112-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/constructor.tmpl
5113-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/default.tmpl
5114-rw-r--r-- root root 511 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/enum.tmpl
5115-rw-r--r-- root root 423 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/field.tmpl
5116-rw-r--r-- root root 1469 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/function.tmpl
5117-rw-r--r-- root root 558 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/interface.tmpl
5118-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/method.tmpl
5119-rw-r--r-- root root 61 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/namespace.tmpl
5120-rw-r--r-- root root 423 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/property.tmpl
5121-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/record.tmpl
5122-rw-r--r-- root root 1185 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/signal.tmpl
5123-rw-r--r-- root root 746 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/vfunc.tmpl
5124-rw-r--r-- root root 551 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/namespace.tmpl
5125drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python
5126-rw-r--r-- root root 849 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/callback.tmpl
5127-rw-r--r-- root root 593 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/class.tmpl
5128-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/constructor.tmpl
5129-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/default.tmpl
5130-rw-r--r-- root root 264 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/enum.tmpl
5131-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/field.tmpl
5132-rw-r--r-- root root 1572 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/function.tmpl
5133-rw-r--r-- root root 535 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/interface.tmpl
5134-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/method.tmpl
5135-rw-r--r-- root root 61 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/namespace.tmpl
5136-rw-r--r-- root root 407 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/property.tmpl
5137-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/record.tmpl
5138-rw-r--r-- root root 1235 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/signal.tmpl
5139-rw-r--r-- root root 849 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/vfunc.tmpl
5140-rw-r--r-- root root 50143 ./usr/lib/gobject-introspection/giscanner/docwriter.py
5141-rw-r--r-- root root 10639 ./usr/lib/gobject-introspection/giscanner/dumper.py
5142-rw-r--r-- root root 21322 ./usr/lib/gobject-introspection/giscanner/gdumpparser.py
5143-rw-r--r-- root root 28229 ./usr/lib/gobject-introspection/giscanner/girparser.py
5144-rw-r--r-- root root 28222 ./usr/lib/gobject-introspection/giscanner/girwriter.py
5145-rwxr-xr-x root root 101672 ./usr/lib/gobject-introspection/giscanner/_giscanner.cpython-38-x86_64-linux-gnu.so
5146-rw-r--r-- root root 1105 ./usr/lib/gobject-introspection/giscanner/__init__.py
5147-rw-r--r-- root root 9398 ./usr/lib/gobject-introspection/giscanner/introspectablepass.py
5148-rw-r--r-- root root 2554 ./usr/lib/gobject-introspection/giscanner/libtoolimporter.py
5149-rw-r--r-- root root 65300 ./usr/lib/gobject-introspection/giscanner/maintransformer.py
5150-rw-r--r-- root root 392 ./usr/lib/gobject-introspection/giscanner/mdextensions.py
5151-rw-r--r-- root root 7612 ./usr/lib/gobject-introspection/giscanner/message.py
5152-rw-r--r-- root root 3756 ./usr/lib/gobject-introspection/giscanner/msvccompiler.py
5153-rw-r--r-- root root 2283 ./usr/lib/gobject-introspection/giscanner/pkgconfig.py
5154-rw-r--r-- root root 27285 ./usr/lib/gobject-introspection/giscanner/scannermain.py
5155-rw-r--r-- root root 4790 ./usr/lib/gobject-introspection/giscanner/sectionparser.py
5156-rw-r--r-- root root 6259 ./usr/lib/gobject-introspection/giscanner/shlibs.py
5157-rw-r--r-- root root 9628 ./usr/lib/gobject-introspection/giscanner/sourcescanner.py
5158-rw-r--r-- root root 5699 ./usr/lib/gobject-introspection/giscanner/testcodegen.py
5159-rw-r--r-- root root 44647 ./usr/lib/gobject-introspection/giscanner/transformer.py
5160-rw-r--r-- root root 10521 ./usr/lib/gobject-introspection/giscanner/utils.py
5161-rw-r--r-- root root 23 ./usr/lib/gobject-introspection/giscanner/_version.py
5162-rw-r--r-- root root 5798 ./usr/lib/gobject-introspection/giscanner/xmlwriter.py
5163-rwxr-xr-x root root 38904 ./usr/lib/libacl.so.1.1.2253
5164lrwxrwxrwx root root 18 ./usr/lib/libacl.so.1 -> libacl.so.1.1.2253
5165lrwxrwxrwx root root 18 ./usr/lib/libacl.so -> libacl.so.1.1.2253
5166lrwxrwxrwx root root 21 ./usr/lib/libanl.so -> ../../lib/libanl.so.1
5167-rwxr-xr-x root root 34856 ./usr/lib/libasm-0.179.so
5168lrwxrwxrwx root root 15 ./usr/lib/libasm.so.1 -> libasm-0.179.so
5169lrwxrwxrwx root root 11 ./usr/lib/libasm.so -> libasm.so.1
5170-rwxr-xr-x root root 26512 ./usr/lib/libattr.so.1.1.2448
5171lrwxrwxrwx root root 19 ./usr/lib/libattr.so.1 -> libattr.so.1.1.2448
5172lrwxrwxrwx root root 19 ./usr/lib/libattr.so -> libattr.so.1.1.2448
5173-rwxr-xr-x root root 1310600 ./usr/lib/libbfd-2.34.0.20200220.so
5174lrwxrwxrwx root root 25 ./usr/lib/libbfd.so -> libbfd-2.34.0.20200220.so
5175lrwxrwxrwx root root 27 ./usr/lib/libblkid.so -> ../../lib/libblkid.so.1.1.0
5176lrwxrwxrwx root root 30 ./usr/lib/libBrokenLocale.so -> ../../lib/libBrokenLocale.so.1
5177-rwxr-xr-x root root 383584 ./usr/lib/libbtrfs.so.0.1
5178lrwxrwxrwx root root 15 ./usr/lib/libbtrfs.so.0 -> libbtrfs.so.0.1
5179lrwxrwxrwx root root 15 ./usr/lib/libbtrfs.so -> libbtrfs.so.0.1
5180-rwxr-xr-x root root 34704 ./usr/lib/libbtrfsutil.so.1.1.1
5181lrwxrwxrwx root root 21 ./usr/lib/libbtrfsutil.so.1 -> libbtrfsutil.so.1.1.1
5182lrwxrwxrwx root root 21 ./usr/lib/libbtrfsutil.so -> libbtrfsutil.so.1.1.1
5183-rwxr-xr-x root root 74656 ./usr/lib/libbz2.so.1.0.6
5184lrwxrwxrwx root root 15 ./usr/lib/libbz2.so.1 -> libbz2.so.1.0.6
5185lrwxrwxrwx root root 15 ./usr/lib/libbz2.so -> libbz2.so.1.0.6
5186-rwxr-xr-x root root 42752 ./usr/lib/libcairo-gobject.so.2.11600.0
5187lrwxrwxrwx root root 29 ./usr/lib/libcairo-gobject.so.2 -> libcairo-gobject.so.2.11600.0
5188lrwxrwxrwx root root 29 ./usr/lib/libcairo-gobject.so -> libcairo-gobject.so.2.11600.0
5189-rwxr-xr-x root root 156384 ./usr/lib/libcairo-script-interpreter.so.2.11600.0
5190lrwxrwxrwx root root 40 ./usr/lib/libcairo-script-interpreter.so.2 -> libcairo-script-interpreter.so.2.11600.0
5191lrwxrwxrwx root root 40 ./usr/lib/libcairo-script-interpreter.so -> libcairo-script-interpreter.so.2.11600.0
5192-rwxr-xr-x root root 1291312 ./usr/lib/libcairo.so.2.11600.0
5193lrwxrwxrwx root root 21 ./usr/lib/libcairo.so.2 -> libcairo.so.2.11600.0
5194lrwxrwxrwx root root 21 ./usr/lib/libcairo.so -> libcairo.so.2.11600.0
5195lrwxrwxrwx root root 28 ./usr/lib/libcap-ng.so -> ../../lib/libcap-ng.so.0.0.0
5196-rw-r--r-- root root 76674 ./usr/lib/libc_nonshared.a
5197-rwxr-xr-x root root 2872136 ./usr/lib/libcrypto.so.1.1
5198lrwxrwxrwx root root 16 ./usr/lib/libcrypto.so -> libcrypto.so.1.1
5199-rwxr-xr-x root root 202648 ./usr/lib/libcrypt.so.2.0.0
5200lrwxrwxrwx root root 17 ./usr/lib/libcrypt.so.2 -> libcrypt.so.2.0.0
5201lrwxrwxrwx root root 17 ./usr/lib/libcrypt.so -> libcrypt.so.2.0.0
5202-rw-r--r-- root root 247 ./usr/lib/libc.so
5203-rwxr-xr-x root root 116736 ./usr/lib/libctf-nobfd.so.0.0.0
5204lrwxrwxrwx root root 21 ./usr/lib/libctf-nobfd.so.0 -> libctf-nobfd.so.0.0.0
5205lrwxrwxrwx root root 21 ./usr/lib/libctf-nobfd.so -> libctf-nobfd.so.0.0.0
5206-rwxr-xr-x root root 116728 ./usr/lib/libctf.so.0.0.0
5207lrwxrwxrwx root root 15 ./usr/lib/libctf.so.0 -> libctf.so.0.0.0
5208lrwxrwxrwx root root 15 ./usr/lib/libctf.so -> libctf.so.0.0.0
5209lrwxrwxrwx root root 13 ./usr/lib/libcurses.so -> libncurses.so
5210-rwxr-xr-x root root 1267928 ./usr/lib/libdb-5.3.so
5211lrwxrwxrwx root root 12 ./usr/lib/libdb-5.so -> libdb-5.3.so
5212lrwxrwxrwx root root 12 ./usr/lib/libdb.so -> libdb-5.3.so
5213-rwxr-xr-x root root 346240 ./usr/lib/libdbus-1.so.3.19.11
5214lrwxrwxrwx root root 20 ./usr/lib/libdbus-1.so.3 -> libdbus-1.so.3.19.11
5215lrwxrwxrwx root root 20 ./usr/lib/libdbus-1.so -> libdbus-1.so.3.19.11
5216lrwxrwxrwx root root 20 ./usr/lib/libdl.so -> ../../lib/libdl.so.2
5217-rwxr-xr-x root root 42824 ./usr/lib/libdrm_amdgpu.so.1.0.0
5218lrwxrwxrwx root root 22 ./usr/lib/libdrm_amdgpu.so.1 -> libdrm_amdgpu.so.1.0.0
5219lrwxrwxrwx root root 18 ./usr/lib/libdrm_amdgpu.so -> libdrm_amdgpu.so.1
5220-rwxr-xr-x root root 30536 ./usr/lib/libdrm_etnaviv.so.1.0.0
5221lrwxrwxrwx root root 23 ./usr/lib/libdrm_etnaviv.so.1 -> libdrm_etnaviv.so.1.0.0
5222lrwxrwxrwx root root 19 ./usr/lib/libdrm_etnaviv.so -> libdrm_etnaviv.so.1
5223-rwxr-xr-x root root 34712 ./usr/lib/libdrm_freedreno.so.1.0.0
5224lrwxrwxrwx root root 25 ./usr/lib/libdrm_freedreno.so.1 -> libdrm_freedreno.so.1.0.0
5225lrwxrwxrwx root root 21 ./usr/lib/libdrm_freedreno.so -> libdrm_freedreno.so.1
5226-rwxr-xr-x root root 146920 ./usr/lib/libdrm_intel.so.1.0.0
5227lrwxrwxrwx root root 21 ./usr/lib/libdrm_intel.so.1 -> libdrm_intel.so.1.0.0
5228lrwxrwxrwx root root 17 ./usr/lib/libdrm_intel.so -> libdrm_intel.so.1
5229-rwxr-xr-x root root 34632 ./usr/lib/libdrm_nouveau.so.2.0.0
5230lrwxrwxrwx root root 23 ./usr/lib/libdrm_nouveau.so.2 -> libdrm_nouveau.so.2.0.0
5231lrwxrwxrwx root root 19 ./usr/lib/libdrm_nouveau.so -> libdrm_nouveau.so.2
5232-rwxr-xr-x root root 14080 ./usr/lib/libdrm_omap.so.1.0.0
5233lrwxrwxrwx root root 20 ./usr/lib/libdrm_omap.so.1 -> libdrm_omap.so.1.0.0
5234lrwxrwxrwx root root 16 ./usr/lib/libdrm_omap.so -> libdrm_omap.so.1
5235-rwxr-xr-x root root 55184 ./usr/lib/libdrm_radeon.so.1.0.1
5236lrwxrwxrwx root root 22 ./usr/lib/libdrm_radeon.so.1 -> libdrm_radeon.so.1.0.1
5237lrwxrwxrwx root root 18 ./usr/lib/libdrm_radeon.so -> libdrm_radeon.so.1
5238-rwxr-xr-x root root 79752 ./usr/lib/libdrm.so.2.4.0
5239lrwxrwxrwx root root 15 ./usr/lib/libdrm.so.2 -> libdrm.so.2.4.0
5240lrwxrwxrwx root root 11 ./usr/lib/libdrm.so -> libdrm.so.2
5241-rwxr-xr-x root root 650160 ./usr/lib/libdw-0.179.so
5242lrwxrwxrwx root root 14 ./usr/lib/libdw.so.1 -> libdw-0.179.so
5243lrwxrwxrwx root root 10 ./usr/lib/libdw.so -> libdw.so.1
5244-rwxr-xr-x root root 100384 ./usr/lib/libelf-0.179.so
5245lrwxrwxrwx root root 15 ./usr/lib/libelf.so.1 -> libelf-0.179.so
5246lrwxrwxrwx root root 11 ./usr/lib/libelf.so -> libelf.so.1
5247-rwxr-xr-x root root 182160 ./usr/lib/libexpat.so.1.6.11
5248lrwxrwxrwx root root 18 ./usr/lib/libexpat.so.1 -> libexpat.so.1.6.11
5249lrwxrwxrwx root root 18 ./usr/lib/libexpat.so -> libexpat.so.1.6.11
5250lrwxrwxrwx root root 27 ./usr/lib/libfdisk.so -> ../../lib/libfdisk.so.1.1.0
5251-rwxr-xr-x root root 43032 ./usr/lib/libffi.so.7.1.0
5252lrwxrwxrwx root root 15 ./usr/lib/libffi.so.7 -> libffi.so.7.1.0
5253lrwxrwxrwx root root 15 ./usr/lib/libffi.so -> libffi.so.7.1.0
5254-rwxr-xr-x root root 14072 ./usr/lib/libfl.so.2.0.0
5255lrwxrwxrwx root root 14 ./usr/lib/libfl.so.2 -> libfl.so.2.0.0
5256lrwxrwxrwx root root 14 ./usr/lib/libfl.so -> libfl.so.2.0.0
5257-rwxr-xr-x root root 288664 ./usr/lib/libfontconfig.so.1.12.0
5258lrwxrwxrwx root root 23 ./usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.12.0
5259lrwxrwxrwx root root 23 ./usr/lib/libfontconfig.so -> libfontconfig.so.1.12.0
5260-rwxr-xr-x root root 68696 ./usr/lib/libform.so.5.9
5261lrwxrwxrwx root root 14 ./usr/lib/libform.so.5 -> libform.so.5.9
5262lrwxrwxrwx root root 12 ./usr/lib/libform.so -> libform.so.5
5263-rwxr-xr-x root root 76952 ./usr/lib/libformw.so.5.9
5264lrwxrwxrwx root root 15 ./usr/lib/libformw.so.5 -> libformw.so.5.9
5265lrwxrwxrwx root root 13 ./usr/lib/libformw.so -> libformw.so.5
5266-rwxr-xr-x root root 722832 ./usr/lib/libfreetype.so.6.17.2
5267lrwxrwxrwx root root 21 ./usr/lib/libfreetype.so.6 -> libfreetype.so.6.17.2
5268lrwxrwxrwx root root 21 ./usr/lib/libfreetype.so -> libfreetype.so.6.17.2
5269-rwxr-xr-x root root 14080 ./usr/lib/libgdbm_compat.so.4.0.0
5270lrwxrwxrwx root root 23 ./usr/lib/libgdbm_compat.so.4 -> libgdbm_compat.so.4.0.0
5271lrwxrwxrwx root root 23 ./usr/lib/libgdbm_compat.so -> libgdbm_compat.so.4.0.0
5272-rwxr-xr-x root root 59392 ./usr/lib/libgdbm.so.6.0.0
5273lrwxrwxrwx root root 16 ./usr/lib/libgdbm.so.6 -> libgdbm.so.6.0.0
5274lrwxrwxrwx root root 16 ./usr/lib/libgdbm.so -> libgdbm.so.6.0.0
5275-rwxr-xr-x root root 1932600 ./usr/lib/libgio-2.0.so.0.6400.2
5276lrwxrwxrwx root root 22 ./usr/lib/libgio-2.0.so.0 -> libgio-2.0.so.0.6400.2
5277lrwxrwxrwx root root 15 ./usr/lib/libgio-2.0.so -> libgio-2.0.so.0
5278-rwxr-xr-x root root 223248 ./usr/lib/libgirepository-1.0.so.1.0.0
5279lrwxrwxrwx root root 28 ./usr/lib/libgirepository-1.0.so.1 -> libgirepository-1.0.so.1.0.0
5280lrwxrwxrwx root root 24 ./usr/lib/libgirepository-1.0.so -> libgirepository-1.0.so.1
5281-rwxr-xr-x root root 325664 ./usr/lib/libglapi.so.0.0.0
5282lrwxrwxrwx root root 17 ./usr/lib/libglapi.so.0 -> libglapi.so.0.0.0
5283lrwxrwxrwx root root 13 ./usr/lib/libglapi.so -> libglapi.so.0
5284-rwxr-xr-x root root 1203480 ./usr/lib/libglib-2.0.so.0.6400.2
5285lrwxrwxrwx root root 23 ./usr/lib/libglib-2.0.so.0 -> libglib-2.0.so.0.6400.2
5286lrwxrwxrwx root root 16 ./usr/lib/libglib-2.0.so -> libglib-2.0.so.0
5287-rwxr-xr-x root root 498608 ./usr/lib/libGL.so.1.2.0
5288lrwxrwxrwx root root 14 ./usr/lib/libGL.so.1 -> libGL.so.1.2.0
5289lrwxrwxrwx root root 10 ./usr/lib/libGL.so -> libGL.so.1
5290-rwxr-xr-x root root 18304 ./usr/lib/libgmodule-2.0.so.0.6400.2
5291lrwxrwxrwx root root 26 ./usr/lib/libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.6400.2
5292lrwxrwxrwx root root 19 ./usr/lib/libgmodule-2.0.so -> libgmodule-2.0.so.0
5293-rwxr-xr-x root root 489440 ./usr/lib/libgmp.so.10.4.0
5294lrwxrwxrwx root root 16 ./usr/lib/libgmp.so.10 -> libgmp.so.10.4.0
5295lrwxrwxrwx root root 16 ./usr/lib/libgmp.so -> libgmp.so.10.4.0
5296-rwxr-xr-x root root 30696 ./usr/lib/libgmpxx.so.4.6.0
5297lrwxrwxrwx root root 17 ./usr/lib/libgmpxx.so.4 -> libgmpxx.so.4.6.0
5298lrwxrwxrwx root root 17 ./usr/lib/libgmpxx.so -> libgmpxx.so.4.6.0
5299-rwxr-xr-x root root 354344 ./usr/lib/libgobject-2.0.so.0.6400.2
5300lrwxrwxrwx root root 26 ./usr/lib/libgobject-2.0.so.0 -> libgobject-2.0.so.0.6400.2
5301lrwxrwxrwx root root 19 ./usr/lib/libgobject-2.0.so -> libgobject-2.0.so.0
5302-rwxr-xr-x root root 14000 ./usr/lib/libgthread-2.0.so.0.6400.2
5303lrwxrwxrwx root root 26 ./usr/lib/libgthread-2.0.so.0 -> libgthread-2.0.so.0.6400.2
5304lrwxrwxrwx root root 19 ./usr/lib/libgthread-2.0.so -> libgthread-2.0.so.0
5305-rwxr-xr-x root root 46944 ./usr/lib/libhistory.so.8.0
5306lrwxrwxrwx root root 17 ./usr/lib/libhistory.so.8 -> libhistory.so.8.0
5307lrwxrwxrwx root root 17 ./usr/lib/libhistory.so -> libhistory.so.8.0
5308-rwxr-xr-x root root 101096 ./usr/lib/libICE.so.6.3.0
5309lrwxrwxrwx root root 15 ./usr/lib/libICE.so.6 -> libICE.so.6.3.0
5310lrwxrwxrwx root root 15 ./usr/lib/libICE.so -> libICE.so.6.3.0
5311-rwxr-xr-x root root 35256 ./usr/lib/libip4tc.so.2.0.0
5312lrwxrwxrwx root root 17 ./usr/lib/libip4tc.so.2 -> libip4tc.so.2.0.0
5313lrwxrwxrwx root root 17 ./usr/lib/libip4tc.so -> libip4tc.so.2.0.0
5314-rwxr-xr-x root root 35256 ./usr/lib/libip6tc.so.2.0.0
5315lrwxrwxrwx root root 17 ./usr/lib/libip6tc.so.2 -> libip6tc.so.2.0.0
5316lrwxrwxrwx root root 17 ./usr/lib/libip6tc.so -> libip6tc.so.2.0.0
5317-rwxr-xr-x root root 83992 ./usr/lib/libkmod.so.2.3.4
5318lrwxrwxrwx root root 16 ./usr/lib/libkmod.so.2 -> libkmod.so.2.3.4
5319lrwxrwxrwx root root 16 ./usr/lib/libkmod.so -> libkmod.so.2.3.4
5320-rwxr-xr-x root root 18240 ./usr/lib/libkms.so.1.0.0
5321lrwxrwxrwx root root 15 ./usr/lib/libkms.so.1 -> libkms.so.1.0.0
5322lrwxrwxrwx root root 11 ./usr/lib/libkms.so -> libkms.so.1
5323-rwxr-xr-x root root 161760 ./usr/lib/liblzma.so.5.2.5
5324lrwxrwxrwx root root 16 ./usr/lib/liblzma.so.5 -> liblzma.so.5.2.5
5325lrwxrwxrwx root root 16 ./usr/lib/liblzma.so -> liblzma.so.5.2.5
5326-rwxr-xr-x root root 141200 ./usr/lib/liblzo2.so.2.0.0
5327lrwxrwxrwx root root 16 ./usr/lib/liblzo2.so.2 -> liblzo2.so.2.0.0
5328lrwxrwxrwx root root 16 ./usr/lib/liblzo2.so -> liblzo2.so.2.0.0
5329-rwxr-xr-x root root 34976 ./usr/lib/libmenu.so.5.9
5330lrwxrwxrwx root root 14 ./usr/lib/libmenu.so.5 -> libmenu.so.5.9
5331lrwxrwxrwx root root 12 ./usr/lib/libmenu.so -> libmenu.so.5
5332-rwxr-xr-x root root 39072 ./usr/lib/libmenuw.so.5.9
5333lrwxrwxrwx root root 15 ./usr/lib/libmenuw.so.5 -> libmenuw.so.5.9
5334lrwxrwxrwx root root 13 ./usr/lib/libmenuw.so -> libmenuw.so.5
5335-rwxr-xr-x root root 26584 ./usr/lib/libmnl.so.0.2.0
5336lrwxrwxrwx root root 15 ./usr/lib/libmnl.so.0 -> libmnl.so.0.2.0
5337lrwxrwxrwx root root 15 ./usr/lib/libmnl.so -> libmnl.so.0.2.0
5338lrwxrwxrwx root root 27 ./usr/lib/libmount.so -> ../../lib/libmount.so.1.1.0
5339-rw-r--r-- root root 106 ./usr/lib/libm.so
5340lrwxrwxrwx root root 22 ./usr/lib/libmvec.so -> ../../lib/libmvec.so.1
5341-rw-r--r-- root root 62 ./usr/lib/libncurses.so
5342-rw-r--r-- root root 63 ./usr/lib/libncursesw.so
5343-rwxr-xr-x root root 96288 ./usr/lib/libnsl.so.2.0.0
5344lrwxrwxrwx root root 15 ./usr/lib/libnsl.so.2 -> libnsl.so.2.0.0
5345lrwxrwxrwx root root 15 ./usr/lib/libnsl.so -> libnsl.so.2.0.0
5346lrwxrwxrwx root root 28 ./usr/lib/libnss_compat.so -> ../../lib/libnss_compat.so.2
5347lrwxrwxrwx root root 24 ./usr/lib/libnss_db.so -> ../../lib/libnss_db.so.2
5348lrwxrwxrwx root root 25 ./usr/lib/libnss_dns.so -> ../../lib/libnss_dns.so.2
5349lrwxrwxrwx root root 27 ./usr/lib/libnss_files.so -> ../../lib/libnss_files.so.2
5350lrwxrwxrwx root root 28 ./usr/lib/libnss_hesiod.so -> ../../lib/libnss_hesiod.so.2
5351-rwxr-xr-x root root 1426544 ./usr/lib/libopcodes-2.34.0.20200220.so
5352lrwxrwxrwx root root 29 ./usr/lib/libopcodes.so -> libopcodes-2.34.0.20200220.so
5353-rwxr-xr-x root root 18168 ./usr/lib/libpanel.so.5.9
5354lrwxrwxrwx root root 15 ./usr/lib/libpanel.so.5 -> libpanel.so.5.9
5355lrwxrwxrwx root root 13 ./usr/lib/libpanel.so -> libpanel.so.5
5356-rwxr-xr-x root root 18168 ./usr/lib/libpanelw.so.5.9
5357lrwxrwxrwx root root 16 ./usr/lib/libpanelw.so.5 -> libpanelw.so.5.9
5358lrwxrwxrwx root root 14 ./usr/lib/libpanelw.so -> libpanelw.so.5
5359-rwxr-xr-x root root 42896 ./usr/lib/libpciaccess.so.0.11.1
5360lrwxrwxrwx root root 22 ./usr/lib/libpciaccess.so.0 -> libpciaccess.so.0.11.1
5361lrwxrwxrwx root root 22 ./usr/lib/libpciaccess.so -> libpciaccess.so.0.11.1
5362-rwxr-xr-x root root 42984 ./usr/lib/libpcrecpp.so.0.0.2
5363lrwxrwxrwx root root 19 ./usr/lib/libpcrecpp.so.0 -> libpcrecpp.so.0.0.2
5364lrwxrwxrwx root root 19 ./usr/lib/libpcrecpp.so -> libpcrecpp.so.0.0.2
5365-rwxr-xr-x root root 14224 ./usr/lib/libpcreposix.so.0.0.7
5366lrwxrwxrwx root root 21 ./usr/lib/libpcreposix.so.0 -> libpcreposix.so.0.0.7
5367lrwxrwxrwx root root 21 ./usr/lib/libpcreposix.so -> libpcreposix.so.0.0.7
5368-rwxr-xr-x root root 489400 ./usr/lib/libpcre.so.1.2.12
5369lrwxrwxrwx root root 17 ./usr/lib/libpcre.so.1 -> libpcre.so.1.2.12
5370lrwxrwxrwx root root 17 ./usr/lib/libpcre.so -> libpcre.so.1.2.12
5371-r-xr-xr-x root root 3351136 ./usr/lib/libperl.so.5.30.0
5372lrwxrwxrwx root root 17 ./usr/lib/libperl.so.5 -> libperl.so.5.30.0
5373lrwxrwxrwx root root 17 ./usr/lib/libperl.so -> libperl.so.5.30.0
5374-rwxr-xr-x root root 686072 ./usr/lib/libpixman-1.so.0.38.4
5375lrwxrwxrwx root root 21 ./usr/lib/libpixman-1.so.0 -> libpixman-1.so.0.38.4
5376lrwxrwxrwx root root 16 ./usr/lib/libpixman-1.so -> libpixman-1.so.0
5377-rwxr-xr-x root root 219024 ./usr/lib/libpng16.so.16.37.0
5378lrwxrwxrwx root root 19 ./usr/lib/libpng16.so.16 -> libpng16.so.16.37.0
5379lrwxrwxrwx root root 19 ./usr/lib/libpng16.so -> libpng16.so.16.37.0
5380lrwxrwxrwx root root 11 ./usr/lib/libpng.so -> libpng16.so
5381-rwxr-xr-x root root 79888 ./usr/lib/libprocps.so.8.0.2
5382lrwxrwxrwx root root 18 ./usr/lib/libprocps.so.8 -> libprocps.so.8.0.2
5383lrwxrwxrwx root root 18 ./usr/lib/libprocps.so -> libprocps.so.8.0.2
5384lrwxrwxrwx root root 25 ./usr/lib/libpthread.so -> ../../lib/libpthread.so.0
5385-rwxr-xr-x root root 3267712 ./usr/lib/libpython3.8.so.1.0
5386lrwxrwxrwx root root 19 ./usr/lib/libpython3.8.so -> libpython3.8.so.1.0
5387-rwxr-xr-x root root 13920 ./usr/lib/libpython3.so
5388-rwxr-xr-x root root 330696 ./usr/lib/libreadline.so.8.0
5389lrwxrwxrwx root root 18 ./usr/lib/libreadline.so.8 -> libreadline.so.8.0
5390lrwxrwxrwx root root 18 ./usr/lib/libreadline.so -> libreadline.so.8.0
5391lrwxrwxrwx root root 24 ./usr/lib/libresolv.so -> ../../lib/libresolv.so.2
5392lrwxrwxrwx root root 20 ./usr/lib/librt.so -> ../../lib/librt.so.1
5393lrwxrwxrwx root root 31 ./usr/lib/libsmartcols.so -> ../../lib/libsmartcols.so.1.1.0
5394-rwxr-xr-x root root 38736 ./usr/lib/libSM.so.6.0.1
5395lrwxrwxrwx root root 14 ./usr/lib/libSM.so.6 -> libSM.so.6.0.1
5396lrwxrwxrwx root root 14 ./usr/lib/libSM.so -> libSM.so.6.0.1
5397-rwxr-xr-x root root 1244736 ./usr/lib/libsqlite3.so.0.8.6
5398lrwxrwxrwx root root 19 ./usr/lib/libsqlite3.so.0 -> libsqlite3.so.0.8.6
5399lrwxrwxrwx root root 19 ./usr/lib/libsqlite3.so -> libsqlite3.so.0.8.6
5400-rwxr-xr-x root root 593728 ./usr/lib/libssl.so.1.1
5401lrwxrwxrwx root root 13 ./usr/lib/libssl.so -> libssl.so.1.1
5402-rwxr-xr-x root root 1866240 ./usr/lib/libstdc++.so.6.0.28
5403lrwxrwxrwx root root 19 ./usr/lib/libstdc++.so.6 -> libstdc++.so.6.0.28
5404lrwxrwxrwx root root 19 ./usr/lib/libstdc++.so -> libstdc++.so.6.0.28
5405-rw-r--r-- root root 46 ./usr/lib/libtermcap.so
5406lrwxrwxrwx root root 27 ./usr/lib/libthread_db.so -> ../../lib/libthread_db.so.1
5407-rwxr-xr-x root root 67472 ./usr/lib/libtic.so.5.9
5408lrwxrwxrwx root root 13 ./usr/lib/libtic.so.5 -> libtic.so.5.9
5409lrwxrwxrwx root root 11 ./usr/lib/libtic.so -> libtic.so.5
5410-rwxr-xr-x root root 67472 ./usr/lib/libticw.so.5.9
5411lrwxrwxrwx root root 14 ./usr/lib/libticw.so.5 -> libticw.so.5.9
5412lrwxrwxrwx root root 12 ./usr/lib/libticw.so -> libticw.so.5
5413lrwxrwxrwx root root 23 ./usr/lib/libtinfo.so -> ../../lib/libtinfo.so.5
5414-rwxr-xr-x root root 161888 ./usr/lib/libtirpc.so.3.0.0
5415lrwxrwxrwx root root 17 ./usr/lib/libtirpc.so.3 -> libtirpc.so.3.0.0
5416lrwxrwxrwx root root 17 ./usr/lib/libtirpc.so -> libtirpc.so.3.0.0
5417lrwxrwxrwx root root 26 ./usr/lib/libudev.so -> ../../lib/libudev.so.1.6.3
5418lrwxrwxrwx root root 22 ./usr/lib/libutil.so -> ../../lib/libutil.so.1
5419lrwxrwxrwx root root 26 ./usr/lib/libuuid.so -> ../../lib/libuuid.so.1.3.0
5420-rwxr-xr-x root root 68272 ./usr/lib/libwayland-client.so.0.3.0
5421lrwxrwxrwx root root 26 ./usr/lib/libwayland-client.so.0 -> libwayland-client.so.0.3.0
5422lrwxrwxrwx root root 22 ./usr/lib/libwayland-client.so -> libwayland-client.so.0
5423-rwxr-xr-x root root 30720 ./usr/lib/libwayland-cursor.so.0.0.0
5424lrwxrwxrwx root root 26 ./usr/lib/libwayland-cursor.so.0 -> libwayland-cursor.so.0.0.0
5425lrwxrwxrwx root root 22 ./usr/lib/libwayland-cursor.so -> libwayland-cursor.so.0
5426-rwxr-xr-x root root 14080 ./usr/lib/libwayland-egl.so.1.0.0
5427lrwxrwxrwx root root 23 ./usr/lib/libwayland-egl.so.1 -> libwayland-egl.so.1.0.0
5428lrwxrwxrwx root root 19 ./usr/lib/libwayland-egl.so -> libwayland-egl.so.1
5429-rwxr-xr-x root root 88784 ./usr/lib/libwayland-server.so.0.1.0
5430lrwxrwxrwx root root 26 ./usr/lib/libwayland-server.so.0 -> libwayland-server.so.0.1.0
5431lrwxrwxrwx root root 22 ./usr/lib/libwayland-server.so -> libwayland-server.so.0
5432lrwxrwxrwx root root 26 ./usr/lib/libwrap.so -> ../../lib/libwrap.so.0.7.6
5433-rwxr-xr-x root root 1308960 ./usr/lib/libX11.so.6.3.0
5434lrwxrwxrwx root root 15 ./usr/lib/libX11.so.6 -> libX11.so.6.3.0
5435lrwxrwxrwx root root 15 ./usr/lib/libX11.so -> libX11.so.6.3.0
5436-rwxr-xr-x root root 13848 ./usr/lib/libX11-xcb.so.1.0.0
5437lrwxrwxrwx root root 19 ./usr/lib/libX11-xcb.so.1 -> libX11-xcb.so.1.0.0
5438lrwxrwxrwx root root 19 ./usr/lib/libX11-xcb.so -> libX11-xcb.so.1.0.0
5439-rwxr-xr-x root root 14144 ./usr/lib/libXau.so.6.0.0
5440lrwxrwxrwx root root 15 ./usr/lib/libXau.so.6 -> libXau.so.6.0.0
5441lrwxrwxrwx root root 15 ./usr/lib/libXau.so -> libXau.so.6.0.0
5442-rwxr-xr-x root root 14256 ./usr/lib/libxcb-composite.so.0.0.0
5443lrwxrwxrwx root root 25 ./usr/lib/libxcb-composite.so.0 -> libxcb-composite.so.0.0.0
5444lrwxrwxrwx root root 25 ./usr/lib/libxcb-composite.so -> libxcb-composite.so.0.0.0
5445-rwxr-xr-x root root 14248 ./usr/lib/libxcb-damage.so.0.0.0
5446lrwxrwxrwx root root 22 ./usr/lib/libxcb-damage.so.0 -> libxcb-damage.so.0.0.0
5447lrwxrwxrwx root root 22 ./usr/lib/libxcb-damage.so -> libxcb-damage.so.0.0.0
5448-rwxr-xr-x root root 14248 ./usr/lib/libxcb-dpms.so.0.0.0
5449lrwxrwxrwx root root 20 ./usr/lib/libxcb-dpms.so.0 -> libxcb-dpms.so.0.0.0
5450lrwxrwxrwx root root 20 ./usr/lib/libxcb-dpms.so -> libxcb-dpms.so.0.0.0
5451-rwxr-xr-x root root 22440 ./usr/lib/libxcb-dri2.so.0.0.0
5452lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri2.so.0 -> libxcb-dri2.so.0.0.0
5453lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri2.so -> libxcb-dri2.so.0.0.0
5454-rwxr-xr-x root root 18344 ./usr/lib/libxcb-dri3.so.0.0.0
5455lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri3.so.0 -> libxcb-dri3.so.0.0.0
5456lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri3.so -> libxcb-dri3.so.0.0.0
5457-rwxr-xr-x root root 116648 ./usr/lib/libxcb-glx.so.0.0.0
5458lrwxrwxrwx root root 19 ./usr/lib/libxcb-glx.so.0 -> libxcb-glx.so.0.0.0
5459lrwxrwxrwx root root 19 ./usr/lib/libxcb-glx.so -> libxcb-glx.so.0.0.0
5460-rwxr-xr-x root root 14248 ./usr/lib/libxcb-present.so.0.0.0
5461lrwxrwxrwx root root 23 ./usr/lib/libxcb-present.so.0 -> libxcb-present.so.0.0.0
5462lrwxrwxrwx root root 23 ./usr/lib/libxcb-present.so -> libxcb-present.so.0.0.0
5463-rwxr-xr-x root root 67496 ./usr/lib/libxcb-randr.so.0.1.0
5464lrwxrwxrwx root root 21 ./usr/lib/libxcb-randr.so.0 -> libxcb-randr.so.0.1.0
5465lrwxrwxrwx root root 21 ./usr/lib/libxcb-randr.so -> libxcb-randr.so.0.1.0
5466-rwxr-xr-x root root 18344 ./usr/lib/libxcb-record.so.0.0.0
5467lrwxrwxrwx root root 22 ./usr/lib/libxcb-record.so.0 -> libxcb-record.so.0.0.0
5468lrwxrwxrwx root root 22 ./usr/lib/libxcb-record.so -> libxcb-record.so.0.0.0
5469-rwxr-xr-x root root 59304 ./usr/lib/libxcb-render.so.0.0.0
5470lrwxrwxrwx root root 22 ./usr/lib/libxcb-render.so.0 -> libxcb-render.so.0.0.0
5471lrwxrwxrwx root root 22 ./usr/lib/libxcb-render.so -> libxcb-render.so.0.0.0
5472-rwxr-xr-x root root 18344 ./usr/lib/libxcb-res.so.0.0.0
5473lrwxrwxrwx root root 19 ./usr/lib/libxcb-res.so.0 -> libxcb-res.so.0.0.0
5474lrwxrwxrwx root root 19 ./usr/lib/libxcb-res.so -> libxcb-res.so.0.0.0
5475-rwxr-xr-x root root 14256 ./usr/lib/libxcb-screensaver.so.0.0.0
5476lrwxrwxrwx root root 27 ./usr/lib/libxcb-screensaver.so.0 -> libxcb-screensaver.so.0.0.0
5477lrwxrwxrwx root root 27 ./usr/lib/libxcb-screensaver.so -> libxcb-screensaver.so.0.0.0
5478-rwxr-xr-x root root 14248 ./usr/lib/libxcb-shape.so.0.0.0
5479lrwxrwxrwx root root 21 ./usr/lib/libxcb-shape.so.0 -> libxcb-shape.so.0.0.0
5480lrwxrwxrwx root root 21 ./usr/lib/libxcb-shape.so -> libxcb-shape.so.0.0.0
5481-rwxr-xr-x root root 14248 ./usr/lib/libxcb-shm.so.0.0.0
5482lrwxrwxrwx root root 19 ./usr/lib/libxcb-shm.so.0 -> libxcb-shm.so.0.0.0
5483lrwxrwxrwx root root 19 ./usr/lib/libxcb-shm.so -> libxcb-shm.so.0.0.0
5484-rwxr-xr-x root root 169920 ./usr/lib/libxcb.so.1.1.0
5485lrwxrwxrwx root root 15 ./usr/lib/libxcb.so.1 -> libxcb.so.1.1.0
5486lrwxrwxrwx root root 15 ./usr/lib/libxcb.so -> libxcb.so.1.1.0
5487-rwxr-xr-x root root 34728 ./usr/lib/libxcb-sync.so.1.0.0
5488lrwxrwxrwx root root 20 ./usr/lib/libxcb-sync.so.1 -> libxcb-sync.so.1.0.0
5489lrwxrwxrwx root root 20 ./usr/lib/libxcb-sync.so -> libxcb-sync.so.1.0.0
5490-rwxr-xr-x root root 18344 ./usr/lib/libxcb-xf86dri.so.0.0.0
5491lrwxrwxrwx root root 23 ./usr/lib/libxcb-xf86dri.so.0 -> libxcb-xf86dri.so.0.0.0
5492lrwxrwxrwx root root 23 ./usr/lib/libxcb-xf86dri.so -> libxcb-xf86dri.so.0.0.0
5493-rwxr-xr-x root root 34728 ./usr/lib/libxcb-xfixes.so.0.0.0
5494lrwxrwxrwx root root 22 ./usr/lib/libxcb-xfixes.so.0 -> libxcb-xfixes.so.0.0.0
5495lrwxrwxrwx root root 22 ./usr/lib/libxcb-xfixes.so -> libxcb-xfixes.so.0.0.0
5496-rwxr-xr-x root root 14256 ./usr/lib/libxcb-xinerama.so.0.0.0
5497lrwxrwxrwx root root 24 ./usr/lib/libxcb-xinerama.so.0 -> libxcb-xinerama.so.0.0.0
5498lrwxrwxrwx root root 24 ./usr/lib/libxcb-xinerama.so -> libxcb-xinerama.so.0.0.0
5499-rwxr-xr-x root root 149416 ./usr/lib/libxcb-xinput.so.0.1.0
5500lrwxrwxrwx root root 22 ./usr/lib/libxcb-xinput.so.0 -> libxcb-xinput.so.0.1.0
5501lrwxrwxrwx root root 22 ./usr/lib/libxcb-xinput.so -> libxcb-xinput.so.0.1.0
5502-rwxr-xr-x root root 120744 ./usr/lib/libxcb-xkb.so.1.0.0
5503lrwxrwxrwx root root 19 ./usr/lib/libxcb-xkb.so.1 -> libxcb-xkb.so.1.0.0
5504lrwxrwxrwx root root 19 ./usr/lib/libxcb-xkb.so -> libxcb-xkb.so.1.0.0
5505-rwxr-xr-x root root 14248 ./usr/lib/libxcb-xtest.so.0.0.0
5506lrwxrwxrwx root root 21 ./usr/lib/libxcb-xtest.so.0 -> libxcb-xtest.so.0.0.0
5507lrwxrwxrwx root root 21 ./usr/lib/libxcb-xtest.so -> libxcb-xtest.so.0.0.0
5508-rwxr-xr-x root root 18344 ./usr/lib/libxcb-xvmc.so.0.0.0
5509lrwxrwxrwx root root 20 ./usr/lib/libxcb-xvmc.so.0 -> libxcb-xvmc.so.0.0.0
5510lrwxrwxrwx root root 20 ./usr/lib/libxcb-xvmc.so -> libxcb-xvmc.so.0.0.0
5511-rwxr-xr-x root root 34728 ./usr/lib/libxcb-xv.so.0.0.0
5512lrwxrwxrwx root root 18 ./usr/lib/libxcb-xv.so.0 -> libxcb-xv.so.0.0.0
5513lrwxrwxrwx root root 18 ./usr/lib/libxcb-xv.so -> libxcb-xv.so.0.0.0
5514-rwxr-xr-x root root 14144 ./usr/lib/libXdamage.so.1.1.0
5515lrwxrwxrwx root root 19 ./usr/lib/libXdamage.so.1 -> libXdamage.so.1.1.0
5516lrwxrwxrwx root root 19 ./usr/lib/libXdamage.so -> libXdamage.so.1.1.0
5517-rwxr-xr-x root root 26432 ./usr/lib/libXdmcp.so.6.0.0
5518lrwxrwxrwx root root 17 ./usr/lib/libXdmcp.so.6 -> libXdmcp.so.6.0.0
5519lrwxrwxrwx root root 17 ./usr/lib/libXdmcp.so -> libXdmcp.so.6.0.0
5520-rwxr-xr-x root root 80992 ./usr/lib/libXext.so.6.4.0
5521lrwxrwxrwx root root 16 ./usr/lib/libXext.so.6 -> libXext.so.6.4.0
5522lrwxrwxrwx root root 16 ./usr/lib/libXext.so -> libXext.so.6.4.0
5523-rwxr-xr-x root root 30464 ./usr/lib/libXfixes.so.3.1.0
5524lrwxrwxrwx root root 18 ./usr/lib/libXfixes.so.3 -> libXfixes.so.3.1.0
5525lrwxrwxrwx root root 18 ./usr/lib/libXfixes.so -> libXfixes.so.3.1.0
5526-rwxr-xr-x root root 1409880 ./usr/lib/libxml2.so.2.9.10
5527lrwxrwxrwx root root 17 ./usr/lib/libxml2.so.2 -> libxml2.so.2.9.10
5528lrwxrwxrwx root root 17 ./usr/lib/libxml2.so -> libxml2.so.2.9.10
5529-rwxr-xr-x root root 47024 ./usr/lib/libXrandr.so.2.2.0
5530lrwxrwxrwx root root 18 ./usr/lib/libXrandr.so.2 -> libXrandr.so.2.2.0
5531lrwxrwxrwx root root 18 ./usr/lib/libXrandr.so -> libXrandr.so.2.2.0
5532-rwxr-xr-x root root 47184 ./usr/lib/libXrender.so.1.3.0
5533lrwxrwxrwx root root 19 ./usr/lib/libXrender.so.1 -> libXrender.so.1.3.0
5534lrwxrwxrwx root root 19 ./usr/lib/libXrender.so -> libXrender.so.1.3.0
5535-rwxr-xr-x root root 14152 ./usr/lib/libxshmfence.so.1.0.0
5536lrwxrwxrwx root root 21 ./usr/lib/libxshmfence.so.1 -> libxshmfence.so.1.0.0
5537lrwxrwxrwx root root 21 ./usr/lib/libxshmfence.so -> libxshmfence.so.1.0.0
5538-rwxr-xr-x root root 63384 ./usr/lib/libxtables.so.12.2.0
5539lrwxrwxrwx root root 20 ./usr/lib/libxtables.so.12 -> libxtables.so.12.2.0
5540lrwxrwxrwx root root 20 ./usr/lib/libxtables.so -> libxtables.so.12.2.0
5541-rwxr-xr-x root root 22456 ./usr/lib/libXxf86vm.so.1.0.0
5542lrwxrwxrwx root root 19 ./usr/lib/libXxf86vm.so.1 -> libXxf86vm.so.1.0.0
5543lrwxrwxrwx root root 19 ./usr/lib/libXxf86vm.so -> libXxf86vm.so.1.0.0
5544lrwxrwxrwx root root 24 ./usr/lib/libz.so -> ../../lib/libz.so.1.2.11
5545-rw-r--r-- root root 1368 ./usr/lib/Mcrt1.o
5546drwxr-xr-x root root 4096 ./usr/lib/opkg
5547drwxr-xr-x root root 12288 ./usr/lib/opkg/alternatives
5548-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/[[
5549-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/addgroup
5550-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/addr2line
5551-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/adduser
5552-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ar
5553-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/arch
5554-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/as
5555-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/ash
5556-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/awk
5557-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/base64
5558-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/basename
5559-rw-r--r-- root root 29 ./usr/lib/opkg/alternatives/bash
5560-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/bc
5561-rw-r--r-- root root 30 ./usr/lib/opkg/alternatives/bin-lsmod
5562-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/blkid
5563-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/blockdev
5564-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/bunzip2
5565-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/bzcat
5566-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/bzip2
5567-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/cal
5568-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/cat
5569-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/c++filt
5570-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/chattr
5571-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/chcon
5572-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/chfn
5573-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chgrp
5574-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chmod
5575-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chown
5576-rw-r--r-- root root 49 ./usr/lib/opkg/alternatives/chpasswd
5577-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/chroot
5578-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/chrt
5579-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/chsh
5580-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/chvt
5581-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/cksum
5582-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/clear
5583-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/cmp
5584-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/comm
5585-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/cp
5586-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/cpio
5587-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/csplit
5588-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/cut
5589-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/date
5590-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/dc
5591-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/dd
5592-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/deallocvt
5593-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/delgroup
5594-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/deluser
5595-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/depmod
5596-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/df
5597-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/diff
5598-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/dir
5599-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/dircolors
5600-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/dirname
5601-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/dmesg
5602-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/dnsdomainname
5603-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/du
5604-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/dumpkmap
5605-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/dumpleases
5606-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/dwp
5607-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/echo
5608-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/egrep
5609-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/eject
5610-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/elfedit
5611-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/env
5612-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/expand
5613-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/expr
5614-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/factor
5615-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/fallocate
5616-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/false
5617-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/fbset
5618-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/fdisk
5619-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/fgrep
5620-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/find
5621-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/flock
5622-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/fmt
5623-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/fold
5624-rw-r--r-- root root 62 ./usr/lib/opkg/alternatives/free
5625-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/fsck
5626-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/fsfreeze
5627-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/fstrim
5628-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/fuser
5629-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/getopt
5630-rw-r--r-- root root 51 ./usr/lib/opkg/alternatives/getty
5631-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/gprof
5632-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/grep
5633-rw-r--r-- root root 96 ./usr/lib/opkg/alternatives/groups
5634-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/gunzip
5635-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/gzip
5636-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/halt
5637-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/head
5638-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/hexdump
5639-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/hostid
5640-rw-r--r-- root root 64 ./usr/lib/opkg/alternatives/hostname
5641-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/hwclock
5642-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/id
5643-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/ifconfig
5644-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/ifdown
5645-rw-r--r-- root root 34 ./usr/lib/opkg/alternatives/ifup
5646-rw-r--r-- root root 34 ./usr/lib/opkg/alternatives/init
5647-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/insmod
5648-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/install
5649-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ionice
5650-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ip
5651-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/join
5652-rw-r--r-- root root 102 ./usr/lib/opkg/alternatives/kill
5653-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/killall
5654-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/klogd
5655-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/last
5656-rw-r--r-- root root 72 ./usr/lib/opkg/alternatives/lastb
5657-rw-r--r-- root root 66 ./usr/lib/opkg/alternatives/lbracket
5658-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ld
5659-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ld.bfd
5660-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/ld.gold
5661-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/less
5662-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/link
5663-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/ln
5664-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/loadfont
5665-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/loadkmap
5666-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/logger
5667-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/login
5668-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/logname
5669-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/logread
5670-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/losetup
5671-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/ls
5672-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/lsmod
5673-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/lzcat
5674-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/lzma
5675-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/md5sum
5676-rw-r--r-- root root 92 ./usr/lib/opkg/alternatives/mesg
5677-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/microcom
5678-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mkdir
5679-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/mke2fs
5680-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/mkfifo
5681-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/mkfs.ext2
5682-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mknod
5683-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/mkswap
5684-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/mktemp
5685-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/modinfo
5686-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/modprobe
5687-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/more
5688-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mount
5689-rw-r--r-- root root 97 ./usr/lib/opkg/alternatives/mountpoint
5690-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/mv
5691-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/nc
5692-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/netstat
5693-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/newgrp
5694-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/nice
5695-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/nl
5696-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/nm
5697-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nohup
5698-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nologin
5699-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nproc
5700-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/nsenter
5701-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/nslookup
5702-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/objcopy
5703-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/objdump
5704-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/od
5705-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/openvt
5706-rw-r--r-- root root 64 ./usr/lib/opkg/alternatives/passwd
5707-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/paste
5708-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/patch
5709-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/pathchk
5710-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/pgrep
5711-rw-r--r-- root root 80 ./usr/lib/opkg/alternatives/pidof
5712-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/ping
5713-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/ping6
5714-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/pinky
5715-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/pivot_root
5716-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/pkill
5717-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/pmap
5718-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/poweroff
5719-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/pr
5720-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/printenv
5721-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/printf
5722-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/ps
5723-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/ptx
5724-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/pwd
5725-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/pwdx
5726-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/python3-config
5727-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ranlib
5728-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/rdate
5729-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/readelf
5730-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/readlink
5731-rw-r--r-- root root 58 ./usr/lib/opkg/alternatives/readprofile
5732-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/realpath
5733-rw-r--r-- root root 62 ./usr/lib/opkg/alternatives/reboot
5734-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/renice
5735-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/reset
5736-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/resize
5737-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/rev
5738-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/rfkill
5739-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/rm
5740-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/rmdir
5741-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/rmmod
5742-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/route
5743-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/runcon
5744-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/runlevel
5745-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/run-parts
5746-rw-r--r-- root root 49 ./usr/lib/opkg/alternatives/sed
5747-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/seq
5748-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/setconsole
5749-rw-r--r-- root root 45 ./usr/lib/opkg/alternatives/setfattr
5750-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/setpriv
5751-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/setsid
5752-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/sh
5753-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/sha1sum
5754-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha224sum
5755-rw-r--r-- root root 75 ./usr/lib/opkg/alternatives/sha256sum
5756-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha384sum
5757-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha512sum
5758-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/shred
5759-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/shuf
5760-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/shutdown
5761-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/size
5762-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/skill
5763-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/sleep
5764-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/snice
5765-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/sort
5766-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/split
5767-rw-r--r-- root root 47 ./usr/lib/opkg/alternatives/start-stop-daemon
5768-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/stat
5769-rw-r--r-- root root 79 ./usr/lib/opkg/alternatives/strings
5770-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/strip
5771-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/stty
5772-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/su
5773-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/sulogin
5774-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/sum
5775-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/swapoff
5776-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/swapon
5777-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/switch_root
5778-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/sync
5779-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/sysctl
5780-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/syslogd
5781-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/tac
5782-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/tail
5783-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/tar
5784-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/taskset
5785-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/tee
5786-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/telnet
5787-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/test
5788-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/tftp
5789-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/time
5790-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/timeout
5791-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/top
5792-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/touch
5793-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/tr
5794-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/traceroute
5795-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/true
5796-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/truncate
5797-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/ts
5798-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/tsort
5799-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/tty
5800-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/udhcpc
5801-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/udhcpd
5802-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/umount
5803-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/uname
5804-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/unexpand
5805-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/uniq
5806-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/unlink
5807-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/unlzma
5808-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/unshare
5809-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/unxz
5810-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/unzip
5811-rw-r--r-- root root 96 ./usr/lib/opkg/alternatives/uptime
5812-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/users
5813-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/usleep
5814-rw-r--r-- root root 81 ./usr/lib/opkg/alternatives/utmpdump
5815-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/vdir
5816-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/vi
5817-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/vigr
5818-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/vipw
5819-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/vlock
5820-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/w
5821-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/wall
5822-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/watch
5823-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/wc
5824-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/wget
5825-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/which
5826-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/who
5827-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/whoami
5828-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/xargs
5829-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/xz
5830-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/xzcat
5831-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/yes
5832-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/zcat
5833drwxr-xr-x root root 4096 ./usr/lib/perl5
5834drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2
5835-rwxr-xr-x root root 3305 ./usr/lib/perl5/5.30.2/Config.pm
5836drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/ExtUtils
5837-r--r--r-- root root 1105 ./usr/lib/perl5/5.30.2/ExtUtils/MANIFEST.SKIP
5838-rwxr-xr-x root root 11315 ./usr/lib/perl5/5.30.2/ExtUtils/typemap
5839-r--r--r-- root root 5071 ./usr/lib/perl5/5.30.2/ExtUtils/xsubpp
5840-r--r--r-- root root 4738 ./usr/lib/perl5/5.30.2/strict.pm
5841-r--r--r-- root root 2458 ./usr/lib/perl5/5.30.2/vars.pm
5842drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/warnings
5843-r--r--r-- root root 49989 ./usr/lib/perl5/5.30.2/warnings.pm
5844-r--r--r-- root root 759 ./usr/lib/perl5/5.30.2/warnings/register.pm
5845drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/x86_64-linux
5846-r--r--r-- root root 409 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_git.pl
5847-r--r--r-- root root 43123 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_heavy.pl
5848lrwxrwxrwx root root 15 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_heavy-target.pl -> Config_heavy.pl
5849-r--r--r-- root root 3305 ./usr/lib/perl5/5.30.2/x86_64-linux/Config.pm
5850drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE
5851-r--r--r-- root root 3294 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/av.h
5852-r--r--r-- root root 850 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/bitcount.h
5853-r--r--r-- root root 4114121 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/charclass_invlists.h
5854-r--r--r-- root root 162839 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/config.h
5855-r--r--r-- root root 40671 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/cop.h
5856-r--r--r-- root root 12323 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/cv.h
5857-r--r--r-- root root 5461 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/dosish.h
5858-r--r--r-- root root 1861 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/dquote_inline.h
5859-r--r--r-- root root 49548 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/ebcdic_tables.h
5860-r--r--r-- root root 102635 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/embed.h
5861-r--r--r-- root root 23467 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/embedvar.h
5862-r--r--r-- root root 1652 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/EXTERN.h
5863-r--r--r-- root root 3210 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/fakesdio.h
5864-r--r--r-- root root 5046 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/feature.h
5865-r--r--r-- root root 1463 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/form.h
5866-r--r--r-- root root 357 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/git_version.h
5867-r--r--r-- root root 10711 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/gv.h
5868-r--r--r-- root root 126538 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/handy.h
5869-r--r--r-- root root 10786 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv_func.h
5870-r--r--r-- root root 25545 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv.h
5871-r--r--r-- root root 2953 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv_macro.h
5872-r--r--r-- root root 68866 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/inline.h
5873-r--r--r-- root root 1309 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/INTERN.h
5874-r--r--r-- root root 29425 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/intrpvar.h
5875-r--r--r-- root root 2976 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/invlist_inline.h
5876-r--r--r-- root root 48759 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/iperlsys.h
5877-r--r--r-- root root 6587 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/keywords.h
5878-r--r--r-- root root 126938 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/l1_char_class_tab.h
5879lrwxrwxrwx root root 29 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/libperl.so -> ../../../../libperl.so.5.30.0
5880-r--r--r-- root root 1524 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/malloc_ctl.h
5881-r--r--r-- root root 952 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/metaconfig.h
5882-r--r--r-- root root 5021 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_data.h
5883-r--r--r-- root root 3013 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg.h
5884-r--r--r-- root root 4377 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_raw.h
5885-r--r--r-- root root 9562 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_vtable.h
5886-r--r--r-- root root 1693 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mydtrace.h
5887-r--r--r-- root root 3392 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/nostdio.h
5888-r--r--r-- root root 93275 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/opcode.h
5889-r--r--r-- root root 36350 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/op.h
5890-r--r--r-- root root 8860 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/opnames.h
5891-r--r--r-- root root 5911 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/op_reg_common.h
5892-r--r--r-- root root 3276 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/overload.h
5893-r--r--r-- root root 17220 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pad.h
5894-r--r--r-- root root 6993 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/parser.h
5895-r--r--r-- root root 5321 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/patchlevel.h
5896-r--r--r-- root root 10170 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlapi.h
5897-r--r--r-- root root 270251 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl.h
5898-r--r--r-- root root 6223 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl_inc_macro.h
5899-r--r--r-- root root 9464 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlio.h
5900-r--r--r-- root root 13761 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perliol.h
5901-r--r--r-- root root 2973 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl_langinfo.h
5902-r--r--r-- root root 527 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlsdio.h
5903-r--r--r-- root root 13314 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlvars.h
5904-r--r--r-- root root 4434 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perly.h
5905-r--r--r-- root root 28969 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pp.h
5906-r--r--r-- root root 12131 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pp_proto.h
5907-r--r--r-- root root 258888 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/proto.h
5908-r--r--r-- root root 78454 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/reentr.h
5909-r--r--r-- root root 140155 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regcharclass.h
5910-r--r--r-- root root 48923 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regcomp.h
5911-r--r--r-- root root 36671 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regexp.h
5912-r--r--r-- root root 38053 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regnodes.h
5913-r--r--r-- root root 57294 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/sbox32_hash.h
5914-r--r--r-- root root 11887 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/scope.h
5915-r--r--r-- root root 10477 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/stadtx_hash.h
5916-r--r--r-- root root 85432 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/sv.h
5917-r--r--r-- root root 12095 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/thread.h
5918-r--r--r-- root root 2048 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/time64_config.h
5919-r--r--r-- root root 1588 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/time64.h
5920-r--r--r-- root root 44 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/try.h
5921-r--r--r-- root root 163425 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uconfig.h
5922-r--r--r-- root root 8027 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/unicode_constants.h
5923-r--r--r-- root root 535594 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uni_keywords.h
5924-r--r--r-- root root 5193 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/unixish.h
5925-r--r--r-- root root 47587 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/utf8.h
5926-r--r--r-- root root 67051 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/utfebcdic.h
5927-r--r--r-- root root 10011 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/util.h
5928-r--r--r-- root root 904 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uudmap.h
5929-r--r--r-- root root 7993 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/vutil.h
5930-r--r--r-- root root 8230 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/warnings.h
5931-r--r--r-- root root 24399 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/XSUB.h
5932-r--r--r-- root root 10541 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/zaphod32_hash.h
5933-rwxr-xr-x root root 36089 ./usr/lib/perl5/config.sh
5934drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl
5935drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl/5.30.2
5936drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl/5.30.2/x86_64-linux
5937drwxr-xr-x root root 4096 ./usr/lib/pkgconfig
5938-rw-r--r-- root root 155 ./usr/lib/pkgconfig/applewmproto.pc
5939-rw-r--r-- root root 900 ./usr/lib/pkgconfig/bash.pc
5940-rw-r--r-- root root 155 ./usr/lib/pkgconfig/bigreqsproto.pc
5941-rw-r--r-- root root 191 ./usr/lib/pkgconfig/blkid.pc
5942-rw-r--r-- root root 242 ./usr/lib/pkgconfig/cairo-fc.pc
5943-rw-r--r-- root root 239 ./usr/lib/pkgconfig/cairo-ft.pc
5944-rw-r--r-- root root 223 ./usr/lib/pkgconfig/cairo-gl.pc
5945-rw-r--r-- root root 217 ./usr/lib/pkgconfig/cairo-glx.pc
5946-rw-r--r-- root root 276 ./usr/lib/pkgconfig/cairo-gobject.pc
5947-rw-r--r-- root root 446 ./usr/lib/pkgconfig/cairo.pc
5948-rw-r--r-- root root 222 ./usr/lib/pkgconfig/cairo-pdf.pc
5949-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-png.pc
5950-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-ps.pc
5951-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-script.pc
5952-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-svg.pc
5953-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-tee.pc
5954-rw-r--r-- root root 247 ./usr/lib/pkgconfig/cairo-xcb.pc
5955-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-xcb-shm.pc
5956-rw-r--r-- root root 229 ./usr/lib/pkgconfig/cairo-xlib.pc
5957-rw-r--r-- root root 256 ./usr/lib/pkgconfig/cairo-xlib-xrender.pc
5958-rw-r--r-- root root 247 ./usr/lib/pkgconfig/com_err.pc
5959-rw-r--r-- root root 159 ./usr/lib/pkgconfig/compositeproto.pc
5960-rw-r--r-- root root 153 ./usr/lib/pkgconfig/damageproto.pc
5961-rw-r--r-- root root 607 ./usr/lib/pkgconfig/dbus-1.pc
5962-rw-r--r-- root root 275 ./usr/lib/pkgconfig/dbus-python.pc
5963-rw-r--r-- root root 147 ./usr/lib/pkgconfig/dmxproto.pc
5964-rw-r--r-- root root 147 ./usr/lib/pkgconfig/dpmsproto.pc
5965-rw-r--r-- root root 147 ./usr/lib/pkgconfig/dri2proto.pc
5966-rw-r--r-- root root 147 ./usr/lib/pkgconfig/dri3proto.pc
5967-rw-r--r-- root root 226 ./usr/lib/pkgconfig/e2p.pc
5968-rw-r--r-- root root 206 ./usr/lib/pkgconfig/expat.pc
5969-rw-r--r-- root root 223 ./usr/lib/pkgconfig/ext2fs.pc
5970-rw-r--r-- root root 213 ./usr/lib/pkgconfig/fdisk.pc
5971-rw-r--r-- root root 149 ./usr/lib/pkgconfig/fixesproto.pc
5972-rw-r--r-- root root 407 ./usr/lib/pkgconfig/fontconfig.pc
5973-rw-r--r-- root root 151 ./usr/lib/pkgconfig/fontsproto.pc
5974-rw-r--r-- root root 469 ./usr/lib/pkgconfig/form.pc
5975-rw-r--r-- root root 454 ./usr/lib/pkgconfig/formw.pc
5976-rw-r--r-- root root 310 ./usr/lib/pkgconfig/freetype2.pc
5977-rw-r--r-- root root 631 ./usr/lib/pkgconfig/gio-2.0.pc
5978-rw-r--r-- root root 232 ./usr/lib/pkgconfig/gio-unix-2.0.pc
5979-rw-r--r-- root root 378 ./usr/lib/pkgconfig/glib-2.0.pc
5980-rw-r--r-- root root 355 ./usr/lib/pkgconfig/gl.pc
5981-rw-r--r-- root root 146 ./usr/lib/pkgconfig/glproto.pc
5982-rw-r--r-- root root 254 ./usr/lib/pkgconfig/gmodule-2.0.pc
5983-rw-r--r-- root root 254 ./usr/lib/pkgconfig/gmodule-export-2.0.pc
5984-rw-r--r-- root root 273 ./usr/lib/pkgconfig/gmodule-no-export-2.0.pc
5985-rw-r--r-- root root 225 ./usr/lib/pkgconfig/gmp.pc
5986-rw-r--r-- root root 260 ./usr/lib/pkgconfig/gmpxx.pc
5987-rw-r--r-- root root 287 ./usr/lib/pkgconfig/gobject-2.0.pc
5988-rw-r--r-- root root 649 ./usr/lib/pkgconfig/gobject-introspection-1.0.pc
5989-rw-r--r-- root root 612 ./usr/lib/pkgconfig/gobject-introspection-no-export-1.0.pc
5990-rw-r--r-- root root 223 ./usr/lib/pkgconfig/gthread-2.0.pc
5991-rw-r--r-- root root 206 ./usr/lib/pkgconfig/ice.pc
5992-rw-r--r-- root root 151 ./usr/lib/pkgconfig/inputproto.pc
5993-rw-r--r-- root root 145 ./usr/lib/pkgconfig/kbproto.pc
5994-rw-r--r-- root root 204 ./usr/lib/pkgconfig/libacl.pc
5995-rw-r--r-- root root 217 ./usr/lib/pkgconfig/libattr.pc
5996-rw-r--r-- root root 208 ./usr/lib/pkgconfig/libcap-ng.pc
5997-rw-r--r-- root root 209 ./usr/lib/pkgconfig/libcap.pc
5998-rw-r--r-- root root 275 ./usr/lib/pkgconfig/libcrypto.pc
5999lrwxrwxrwx root root 12 ./usr/lib/pkgconfig/libcrypt.pc -> libxcrypt.pc
6000-rw-r--r-- root root 270 ./usr/lib/pkgconfig/libdrm_amdgpu.pc
6001-rw-r--r-- root root 267 ./usr/lib/pkgconfig/libdrm_etnaviv.pc
6002-rw-r--r-- root root 301 ./usr/lib/pkgconfig/libdrm_freedreno.pc
6003-rw-r--r-- root root 255 ./usr/lib/pkgconfig/libdrm_intel.pc
6004-rw-r--r-- root root 300 ./usr/lib/pkgconfig/libdrm_nouveau.pc
6005-rw-r--r-- root root 277 ./usr/lib/pkgconfig/libdrm_omap.pc
6006-rw-r--r-- root root 220 ./usr/lib/pkgconfig/libdrm.pc
6007-rw-r--r-- root root 270 ./usr/lib/pkgconfig/libdrm_radeon.pc
6008-rw-r--r-- root root 206 ./usr/lib/pkgconfig/libdrm_vc4.pc
6009-rw-r--r-- root root 633 ./usr/lib/pkgconfig/libdw.pc
6010-rw-r--r-- root root 262 ./usr/lib/pkgconfig/libelf.pc
6011-rw-r--r-- root root 237 ./usr/lib/pkgconfig/libffi.pc
6012-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libip4tc.pc
6013-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libip6tc.pc
6014-rw-r--r-- root root 190 ./usr/lib/pkgconfig/libiptc.pc
6015-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libkmod.pc
6016-rw-r--r-- root root 259 ./usr/lib/pkgconfig/libkms.pc
6017-rw-r--r-- root root 390 ./usr/lib/pkgconfig/liblzma.pc
6018-rw-r--r-- root root 292 ./usr/lib/pkgconfig/libmnl.pc
6019-rw-r--r-- root root 247 ./usr/lib/pkgconfig/libnsl.pc
6020-rw-r--r-- root root 243 ./usr/lib/pkgconfig/libpcrecpp.pc
6021-rw-r--r-- root root 305 ./usr/lib/pkgconfig/libpcre.pc
6022-rw-r--r-- root root 285 ./usr/lib/pkgconfig/libpcreposix.pc
6023-rw-r--r-- root root 239 ./usr/lib/pkgconfig/libpng16.pc
6024lrwxrwxrwx root root 11 ./usr/lib/pkgconfig/libpng.pc -> libpng16.pc
6025-rw-r--r-- root root 223 ./usr/lib/pkgconfig/libprocps.pc
6026-rw-r--r-- root root 254 ./usr/lib/pkgconfig/libpsx.pc
6027-rw-r--r-- root root 254 ./usr/lib/pkgconfig/libssl.pc
6028-rw-r--r-- root root 235 ./usr/lib/pkgconfig/libtirpc.pc
6029-rw-r--r-- root root 493 ./usr/lib/pkgconfig/libudev.pc
6030-rw-r--r-- root root 367 ./usr/lib/pkgconfig/libxcrypt.pc
6031-rw-r--r-- root root 243 ./usr/lib/pkgconfig/libxml-2.0.pc
6032-rw-r--r-- root root 500 ./usr/lib/pkgconfig/lzo2.pc
6033-rw-r--r-- root root 469 ./usr/lib/pkgconfig/menu.pc
6034-rw-r--r-- root root 454 ./usr/lib/pkgconfig/menuw.pc
6035-rw-r--r-- root root 627 ./usr/lib/pkgconfig/mount.pc
6036-rw-r--r-- root root 469 ./usr/lib/pkgconfig/ncurses.pc
6037-rw-r--r-- root root 498 ./usr/lib/pkgconfig/ncurses++.pc
6038-rw-r--r-- root root 486 ./usr/lib/pkgconfig/ncurses++w.pc
6039-rw-r--r-- root root 453 ./usr/lib/pkgconfig/ncursesw.pc
6040-rw-r--r-- root root 208 ./usr/lib/pkgconfig/openssl.pc
6041-rw-r--r-- root root 471 ./usr/lib/pkgconfig/panel.pc
6042-rw-r--r-- root root 456 ./usr/lib/pkgconfig/panelw.pc
6043-rw-r--r-- root root 228 ./usr/lib/pkgconfig/pciaccess.pc
6044-rw-r--r-- root root 198 ./usr/lib/pkgconfig/pixman-1.pc
6045-rw-r--r-- root root 153 ./usr/lib/pkgconfig/presentproto.pc
6046-rw-r--r-- root root 224 ./usr/lib/pkgconfig/pthread-stubs.pc
6047-rw-r--r-- root root 183 ./usr/lib/pkgconfig/py3cairo.pc
6048-rw-r--r-- root root 706 ./usr/lib/pkgconfig/pygobject-3.0.pc
6049-rw-r--r-- root root 297 ./usr/lib/pkgconfig/python-3.8-embed.pc
6050-rw-r--r-- root root 271 ./usr/lib/pkgconfig/python-3.8.pc
6051lrwxrwxrwx root root 19 ./usr/lib/pkgconfig/python3-embed.pc -> python-3.8-embed.pc
6052lrwxrwxrwx root root 13 ./usr/lib/pkgconfig/python3.pc -> python-3.8.pc
6053-rw-r--r-- root root 151 ./usr/lib/pkgconfig/randrproto.pc
6054-rw-r--r-- root root 302 ./usr/lib/pkgconfig/readline.pc
6055-rw-r--r-- root root 154 ./usr/lib/pkgconfig/recordproto.pc
6056-rw-r--r-- root root 154 ./usr/lib/pkgconfig/renderproto.pc
6057-rw-r--r-- root root 157 ./usr/lib/pkgconfig/resourceproto.pc
6058-rw-r--r-- root root 159 ./usr/lib/pkgconfig/scrnsaverproto.pc
6059-rw-r--r-- root root 204 ./usr/lib/pkgconfig/smartcols.pc
6060-rw-r--r-- root root 222 ./usr/lib/pkgconfig/sm.pc
6061-rw-r--r-- root root 256 ./usr/lib/pkgconfig/sqlite3.pc
6062-rw-r--r-- root root 249 ./usr/lib/pkgconfig/ss.pc
6063-rw-r--r-- root root 467 ./usr/lib/pkgconfig/tic.pc
6064-rw-r--r-- root root 452 ./usr/lib/pkgconfig/ticw.pc
6065-rw-r--r-- root root 458 ./usr/lib/pkgconfig/tinfo.pc
6066-rw-r--r-- root root 204 ./usr/lib/pkgconfig/uuid.pc
6067-rw-r--r-- root root 151 ./usr/lib/pkgconfig/videoproto.pc
6068-rw-r--r-- root root 315 ./usr/lib/pkgconfig/wayland-client.pc
6069-rw-r--r-- root root 235 ./usr/lib/pkgconfig/wayland-cursor.pc
6070-rw-r--r-- root root 167 ./usr/lib/pkgconfig/wayland-egl-backend.pc
6071-rw-r--r-- root root 220 ./usr/lib/pkgconfig/wayland-egl.pc
6072-rw-r--r-- root root 270 ./usr/lib/pkgconfig/wayland-scanner.pc
6073-rw-r--r-- root root 338 ./usr/lib/pkgconfig/wayland-server.pc
6074-rw-r--r-- root root 270 ./usr/lib/pkgconfig/x11.pc
6075-rw-r--r-- root root 206 ./usr/lib/pkgconfig/x11-xcb.pc
6076-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xau.pc
6077-rw-r--r-- root root 232 ./usr/lib/pkgconfig/xcb-composite.pc
6078-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-damage.pc
6079-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dpms.pc
6080-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dri2.pc
6081-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dri3.pc
6082-rw-r--r-- root root 203 ./usr/lib/pkgconfig/xcb-glx.pc
6083-rw-r--r-- root root 251 ./usr/lib/pkgconfig/xcb.pc
6084-rw-r--r-- root root 245 ./usr/lib/pkgconfig/xcb-present.pc
6085-rw-r--r-- root root 273 ./usr/lib/pkgconfig/xcb-proto.pc
6086-rw-r--r-- root root 220 ./usr/lib/pkgconfig/xcb-randr.pc
6087-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xcb-record.pc
6088-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xcb-render.pc
6089-rw-r--r-- root root 210 ./usr/lib/pkgconfig/xcb-res.pc
6090-rw-r--r-- root root 227 ./usr/lib/pkgconfig/xcb-screensaver.pc
6091-rw-r--r-- root root 209 ./usr/lib/pkgconfig/xcb-shape.pc
6092-rw-r--r-- root root 203 ./usr/lib/pkgconfig/xcb-shm.pc
6093-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-sync.pc
6094-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-xf86dri.pc
6095-rw-r--r-- root root 233 ./usr/lib/pkgconfig/xcb-xfixes.pc
6096-rw-r--r-- root root 218 ./usr/lib/pkgconfig/xcb-xinerama.pc
6097-rw-r--r-- root root 238 ./usr/lib/pkgconfig/xcb-xinput.pc
6098-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-xkb.pc
6099-rw-r--r-- root root 209 ./usr/lib/pkgconfig/xcb-xtest.pc
6100-rw-r--r-- root root 213 ./usr/lib/pkgconfig/xcb-xvmc.pc
6101-rw-r--r-- root root 208 ./usr/lib/pkgconfig/xcb-xv.pc
6102-rw-r--r-- root root 153 ./usr/lib/pkgconfig/xcmiscproto.pc
6103-rw-r--r-- root root 254 ./usr/lib/pkgconfig/xdamage.pc
6104-rw-r--r-- root root 220 ./usr/lib/pkgconfig/xdmcp.pc
6105-rw-r--r-- root root 225 ./usr/lib/pkgconfig/xext.pc
6106-rw-r--r-- root root 149 ./usr/lib/pkgconfig/xextproto.pc
6107-rw-r--r-- root root 163 ./usr/lib/pkgconfig/xf86bigfontproto.pc
6108-rw-r--r-- root root 153 ./usr/lib/pkgconfig/xf86dgaproto.pc
6109-rw-r--r-- root root 163 ./usr/lib/pkgconfig/xf86driproto.pc
6110-rw-r--r-- root root 163 ./usr/lib/pkgconfig/xf86vidmodeproto.pc
6111-rw-r--r-- root root 236 ./usr/lib/pkgconfig/xfixes.pc
6112-rw-r--r-- root root 157 ./usr/lib/pkgconfig/xineramaproto.pc
6113-rw-r--r-- root root 144 ./usr/lib/pkgconfig/xproto.pc
6114-rw-r--r-- root root 248 ./usr/lib/pkgconfig/xrandr.pc
6115-rw-r--r-- root root 244 ./usr/lib/pkgconfig/xrender.pc
6116-rw-r--r-- root root 216 ./usr/lib/pkgconfig/xshmfence.pc
6117-rw-r--r-- root root 261 ./usr/lib/pkgconfig/xtables.pc
6118-rw-r--r-- root root 255 ./usr/lib/pkgconfig/xxf86vm.pc
6119-rw-r--r-- root root 233 ./usr/lib/pkgconfig/zlib.pc
6120drwxr-xr-x root root 4096 ./usr/lib/python3.8
6121-rw-r--r-- root root 4489 ./usr/lib/python3.8/abc.py
6122-rw-r--r-- root root 96015 ./usr/lib/python3.8/argparse.py
6123-rw-r--r-- root root 18474 ./usr/lib/python3.8/ast.py
6124-rwxr-xr-x root root 20382 ./usr/lib/python3.8/base64.py
6125-rw-r--r-- root root 2214 ./usr/lib/python3.8/bisect.py
6126-rw-r--r-- root root 1801 ./usr/lib/python3.8/_bootlocale.py
6127-rw-r--r-- root root 12558 ./usr/lib/python3.8/bz2.py
6128-rw-r--r-- root root 24832 ./usr/lib/python3.8/calendar.py
6129-rw-r--r-- root root 14860 ./usr/lib/python3.8/cmd.py
6130-rw-r--r-- root root 36590 ./usr/lib/python3.8/codecs.py
6131-rw-r--r-- root root 6059 ./usr/lib/python3.8/codeop.py
6132-rw-r--r-- root root 10622 ./usr/lib/python3.8/code.py
6133drwxr-xr-x root root 4096 ./usr/lib/python3.8/collections
6134-rw-r--r-- root root 26100 ./usr/lib/python3.8/_collections_abc.py
6135-rw-r--r-- root root 68 ./usr/lib/python3.8/collections/abc.py
6136-rw-r--r-- root root 47521 ./usr/lib/python3.8/collections/__init__.py
6137drwxr-xr-x root root 4096 ./usr/lib/python3.8/collections/__pycache__
6138-rw-r--r-- root root 179 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.opt-1.pyc
6139-rw-r--r-- root root 179 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.opt-2.pyc
6140-rw-r--r-- root root 179 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.pyc
6141-rw-r--r-- root root 46423 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.opt-1.pyc
6142-rw-r--r-- root root 35834 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.opt-2.pyc
6143-rw-r--r-- root root 46423 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.pyc
6144-rw-r--r-- root root 8749 ./usr/lib/python3.8/_compat_pickle.py
6145-rw-r--r-- root root 5340 ./usr/lib/python3.8/_compression.py
6146drwxr-xr-x root root 4096 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu
6147-rw-r--r-- root root 3303 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/config.c
6148-rw-r--r-- root root 1623 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/config.c.in
6149-rwxr-xr-x root root 15368 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/install-sh
6150-rw-r--r-- root root 78513 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Makefile
6151-rwxr-xr-x root root 7848 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/makesetup
6152drwxr-xr-x root root 4096 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__
6153-rw-r--r-- root root 1931 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.opt-1.pyc
6154-rw-r--r-- root root 1931 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.opt-2.pyc
6155-rw-r--r-- root root 1931 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.pyc
6156-rwxr-xr-x root root 2114 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/python-config.py
6157-rw-r--r-- root root 4488 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/python.o
6158-rw-r--r-- root root 14786 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Setup
6159-rw-r--r-- root root 13 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Setup.local
6160-rw-r--r-- root root 54374 ./usr/lib/python3.8/configparser.py
6161-rw-r--r-- root root 24995 ./usr/lib/python3.8/contextlib.py
6162-rw-r--r-- root root 8661 ./usr/lib/python3.8/copy.py
6163-rw-r--r-- root root 7135 ./usr/lib/python3.8/copyreg.py
6164-rw-r--r-- root root 3610 ./usr/lib/python3.8/crypt.py
6165-rw-r--r-- root root 16144 ./usr/lib/python3.8/csv.py
6166-rw-r--r-- root root 88074 ./usr/lib/python3.8/datetime.py
6167-rw-r--r-- root root 20566 ./usr/lib/python3.8/dis.py
6168drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils
6169-rw-r--r-- root root 8572 ./usr/lib/python3.8/distutils/archive_util.py
6170-rw-r--r-- root root 14935 ./usr/lib/python3.8/distutils/bcppcompiler.py
6171-rw-r--r-- root root 47433 ./usr/lib/python3.8/distutils/ccompiler.py
6172-rw-r--r-- root root 18079 ./usr/lib/python3.8/distutils/cmd.py
6173drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/command
6174-rw-r--r-- root root 4913 ./usr/lib/python3.8/distutils/command/bdist_dumb.py
6175-rw-r--r-- root root 35295 ./usr/lib/python3.8/distutils/command/bdist_msi.py
6176-rw-r--r-- root root 5562 ./usr/lib/python3.8/distutils/command/bdist.py
6177-rw-r--r-- root root 21577 ./usr/lib/python3.8/distutils/command/bdist_rpm.py
6178-rw-r--r-- root root 16043 ./usr/lib/python3.8/distutils/command/bdist_wininst.py
6179-rw-r--r-- root root 8022 ./usr/lib/python3.8/distutils/command/build_clib.py
6180-rw-r--r-- root root 31568 ./usr/lib/python3.8/distutils/command/build_ext.py
6181-rw-r--r-- root root 5767 ./usr/lib/python3.8/distutils/command/build.py
6182-rw-r--r-- root root 17164 ./usr/lib/python3.8/distutils/command/build_py.py
6183-rw-r--r-- root root 6232 ./usr/lib/python3.8/distutils/command/build_scripts.py
6184-rw-r--r-- root root 5599 ./usr/lib/python3.8/distutils/command/check.py
6185-rw-r--r-- root root 2776 ./usr/lib/python3.8/distutils/command/clean.py
6186-rw-r--r-- root root 633 ./usr/lib/python3.8/distutils/command/command_template
6187-rw-r--r-- root root 13117 ./usr/lib/python3.8/distutils/command/config.py
6188-rw-r--r-- root root 799 ./usr/lib/python3.8/distutils/command/__init__.py
6189-rw-r--r-- root root 2822 ./usr/lib/python3.8/distutils/command/install_data.py
6190-rw-r--r-- root root 2603 ./usr/lib/python3.8/distutils/command/install_egg_info.py
6191-rw-r--r-- root root 1298 ./usr/lib/python3.8/distutils/command/install_headers.py
6192-rw-r--r-- root root 8397 ./usr/lib/python3.8/distutils/command/install_lib.py
6193-rw-r--r-- root root 26774 ./usr/lib/python3.8/distutils/command/install.py
6194-rw-r--r-- root root 2017 ./usr/lib/python3.8/distutils/command/install_scripts.py
6195drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/command/__pycache__
6196-rw-r--r-- root root 3648 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.opt-1.pyc
6197-rw-r--r-- root root 3454 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.opt-2.pyc
6198-rw-r--r-- root root 3648 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.pyc
6199-rw-r--r-- root root 3574 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.opt-1.pyc
6200-rw-r--r-- root root 3374 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.opt-2.pyc
6201-rw-r--r-- root root 3574 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.pyc
6202-rw-r--r-- root root 19517 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.opt-1.pyc
6203-rw-r--r-- root root 17976 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.opt-2.pyc
6204-rw-r--r-- root root 19605 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.pyc
6205-rw-r--r-- root root 12344 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.opt-1.pyc
6206-rw-r--r-- root root 12025 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.opt-2.pyc
6207-rw-r--r-- root root 12410 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.pyc
6208-rw-r--r-- root root 8405 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.opt-1.pyc
6209-rw-r--r-- root root 8266 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.opt-2.pyc
6210-rw-r--r-- root root 8471 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.pyc
6211-rw-r--r-- root root 4796 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.opt-1.pyc
6212-rw-r--r-- root root 4242 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.opt-2.pyc
6213-rw-r--r-- root root 4796 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.pyc
6214-rw-r--r-- root root 3863 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.opt-1.pyc
6215-rw-r--r-- root root 3780 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.opt-2.pyc
6216-rw-r--r-- root root 3863 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.pyc
6217-rw-r--r-- root root 16119 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.opt-1.pyc
6218-rw-r--r-- root root 14162 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.opt-2.pyc
6219-rw-r--r-- root root 16119 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.pyc
6220-rw-r--r-- root root 10387 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.opt-1.pyc
6221-rw-r--r-- root root 9180 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.opt-2.pyc
6222-rw-r--r-- root root 10444 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.pyc
6223-rw-r--r-- root root 4306 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.opt-1.pyc
6224-rw-r--r-- root root 3912 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.opt-2.pyc
6225-rw-r--r-- root root 4306 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.pyc
6226-rw-r--r-- root root 4867 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.opt-1.pyc
6227-rw-r--r-- root root 4299 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.opt-2.pyc
6228-rw-r--r-- root root 4867 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.pyc
6229-rw-r--r-- root root 2082 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.opt-1.pyc
6230-rw-r--r-- root root 1999 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.opt-2.pyc
6231-rw-r--r-- root root 2082 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.pyc
6232-rw-r--r-- root root 10209 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.opt-1.pyc
6233-rw-r--r-- root root 6873 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.opt-2.pyc
6234-rw-r--r-- root root 10209 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.pyc
6235-rw-r--r-- root root 525 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.opt-1.pyc
6236-rw-r--r-- root root 416 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.opt-2.pyc
6237-rw-r--r-- root root 525 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.pyc
6238-rw-r--r-- root root 13550 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.opt-1.pyc
6239-rw-r--r-- root root 12495 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.opt-2.pyc
6240-rw-r--r-- root root 13550 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.pyc
6241-rw-r--r-- root root 2271 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.opt-1.pyc
6242-rw-r--r-- root root 2126 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.opt-2.pyc
6243-rw-r--r-- root root 2271 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.pyc
6244-rw-r--r-- root root 2978 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.opt-1.pyc
6245-rw-r--r-- root root 2299 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.opt-2.pyc
6246-rw-r--r-- root root 2978 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.pyc
6247-rw-r--r-- root root 1690 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.opt-1.pyc
6248-rw-r--r-- root root 1524 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.opt-2.pyc
6249-rw-r--r-- root root 1690 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.pyc
6250-rw-r--r-- root root 5095 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.opt-1.pyc
6251-rw-r--r-- root root 4514 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.opt-2.pyc
6252-rw-r--r-- root root 5095 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.pyc
6253-rw-r--r-- root root 2123 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.opt-1.pyc
6254-rw-r--r-- root root 1989 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.opt-2.pyc
6255-rw-r--r-- root root 2123 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.pyc
6256-rw-r--r-- root root 8437 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.opt-1.pyc
6257-rw-r--r-- root root 7172 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.opt-2.pyc
6258-rw-r--r-- root root 8437 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.pyc
6259-rw-r--r-- root root 14498 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.opt-1.pyc
6260-rw-r--r-- root root 11139 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.opt-2.pyc
6261-rw-r--r-- root root 14498 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.pyc
6262-rw-r--r-- root root 4921 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.opt-1.pyc
6263-rw-r--r-- root root 4795 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.opt-2.pyc
6264-rw-r--r-- root root 4921 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.pyc
6265-rw-r--r-- root root 11712 ./usr/lib/python3.8/distutils/command/register.py
6266-rw-r--r-- root root 19005 ./usr/lib/python3.8/distutils/command/sdist.py
6267-rw-r--r-- root root 7001 ./usr/lib/python3.8/distutils/command/upload.py
6268-rw-r--r-- root root 222208 ./usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
6269-rw-r--r-- root root 190976 ./usr/lib/python3.8/distutils/command/wininst-10.0.exe
6270-rw-r--r-- root root 587776 ./usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
6271-rw-r--r-- root root 458240 ./usr/lib/python3.8/distutils/command/wininst-14.0.exe
6272-rw-r--r-- root root 61440 ./usr/lib/python3.8/distutils/command/wininst-6.0.exe
6273-rw-r--r-- root root 65536 ./usr/lib/python3.8/distutils/command/wininst-7.1.exe
6274-rw-r--r-- root root 61440 ./usr/lib/python3.8/distutils/command/wininst-8.0.exe
6275-rw-r--r-- root root 224256 ./usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
6276-rw-r--r-- root root 196096 ./usr/lib/python3.8/distutils/command/wininst-9.0.exe
6277-rw-r--r-- root root 4827 ./usr/lib/python3.8/distutils/config.py
6278-rw-r--r-- root root 8876 ./usr/lib/python3.8/distutils/core.py
6279-rw-r--r-- root root 16478 ./usr/lib/python3.8/distutils/cygwinccompiler.py
6280-rw-r--r-- root root 139 ./usr/lib/python3.8/distutils/debug.py
6281-rw-r--r-- root root 3491 ./usr/lib/python3.8/distutils/dep_util.py
6282-rw-r--r-- root root 7778 ./usr/lib/python3.8/distutils/dir_util.py
6283-rw-r--r-- root root 50385 ./usr/lib/python3.8/distutils/dist.py
6284-rw-r--r-- root root 3577 ./usr/lib/python3.8/distutils/errors.py
6285-rw-r--r-- root root 10515 ./usr/lib/python3.8/distutils/extension.py
6286-rw-r--r-- root root 17784 ./usr/lib/python3.8/distutils/fancy_getopt.py
6287-rw-r--r-- root root 12832 ./usr/lib/python3.8/distutils/filelist.py
6288-rw-r--r-- root root 8148 ./usr/lib/python3.8/distutils/file_util.py
6289-rw-r--r-- root root 236 ./usr/lib/python3.8/distutils/__init__.py
6290-rw-r--r-- root root 1969 ./usr/lib/python3.8/distutils/log.py
6291-rw-r--r-- root root 30511 ./usr/lib/python3.8/distutils/msvc9compiler.py
6292-rw-r--r-- root root 21931 ./usr/lib/python3.8/distutils/_msvccompiler.py
6293-rw-r--r-- root root 23564 ./usr/lib/python3.8/distutils/msvccompiler.py
6294drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/__pycache__
6295-rw-r--r-- root root 6529 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.opt-1.pyc
6296-rw-r--r-- root root 4487 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.opt-2.pyc
6297-rw-r--r-- root root 6529 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.pyc
6298-rw-r--r-- root root 6513 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.opt-1.pyc
6299-rw-r--r-- root root 6225 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.opt-2.pyc
6300-rw-r--r-- root root 6513 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.pyc
6301-rw-r--r-- root root 33160 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.opt-1.pyc
6302-rw-r--r-- root root 16854 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.opt-2.pyc
6303-rw-r--r-- root root 33287 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.pyc
6304-rw-r--r-- root root 13938 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.opt-1.pyc
6305-rw-r--r-- root root 8072 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.opt-2.pyc
6306-rw-r--r-- root root 13938 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.pyc
6307-rw-r--r-- root root 3499 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.opt-1.pyc
6308-rw-r--r-- root root 3108 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.opt-2.pyc
6309-rw-r--r-- root root 3499 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.pyc
6310-rw-r--r-- root root 6604 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.opt-1.pyc
6311-rw-r--r-- root root 3217 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.opt-2.pyc
6312-rw-r--r-- root root 6604 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.pyc
6313-rw-r--r-- root root 8602 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.opt-1.pyc
6314-rw-r--r-- root root 6972 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.opt-2.pyc
6315-rw-r--r-- root root 8602 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.pyc
6316-rw-r--r-- root root 184 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.opt-1.pyc
6317-rw-r--r-- root root 184 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.opt-2.pyc
6318-rw-r--r-- root root 184 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.pyc
6319-rw-r--r-- root root 2704 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.opt-1.pyc
6320-rw-r--r-- root root 1260 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.opt-2.pyc
6321-rw-r--r-- root root 2704 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.pyc
6322-rw-r--r-- root root 5813 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.opt-1.pyc
6323-rw-r--r-- root root 3435 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.opt-2.pyc
6324-rw-r--r-- root root 5813 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.pyc
6325-rw-r--r-- root root 34482 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.opt-1.pyc
6326-rw-r--r-- root root 25191 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.opt-2.pyc
6327-rw-r--r-- root root 34482 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.pyc
6328-rw-r--r-- root root 5240 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.opt-1.pyc
6329-rw-r--r-- root root 2692 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.opt-2.pyc
6330-rw-r--r-- root root 5240 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.pyc
6331-rw-r--r-- root root 6913 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.opt-1.pyc
6332-rw-r--r-- root root 3423 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.opt-2.pyc
6333-rw-r--r-- root root 6913 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.pyc
6334-rw-r--r-- root root 10502 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.opt-1.pyc
6335-rw-r--r-- root root 7699 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.opt-2.pyc
6336-rw-r--r-- root root 10646 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.pyc
6337-rw-r--r-- root root 9767 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.opt-1.pyc
6338-rw-r--r-- root root 6896 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.opt-2.pyc
6339-rw-r--r-- root root 9857 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.pyc
6340-rw-r--r-- root root 5923 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.opt-1.pyc
6341-rw-r--r-- root root 3786 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.opt-2.pyc
6342-rw-r--r-- root root 5923 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.pyc
6343-rw-r--r-- root root 374 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.opt-1.pyc
6344-rw-r--r-- root root 192 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.opt-2.pyc
6345-rw-r--r-- root root 374 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.pyc
6346-rw-r--r-- root root 2305 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.opt-1.pyc
6347-rw-r--r-- root root 2244 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.opt-2.pyc
6348-rw-r--r-- root root 2305 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.pyc
6349-rw-r--r-- root root 17441 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.opt-1.pyc
6350-rw-r--r-- root root 15820 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.opt-2.pyc
6351-rw-r--r-- root root 17500 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.pyc
6352-rw-r--r-- root root 13907 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.opt-1.pyc
6353-rw-r--r-- root root 14713 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.opt-1.pyc
6354-rw-r--r-- root root 12757 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.opt-2.pyc
6355-rw-r--r-- root root 13138 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.opt-2.pyc
6356-rw-r--r-- root root 13970 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.pyc
6357-rw-r--r-- root root 14713 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.pyc
6358-rw-r--r-- root root 5096 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.opt-1.pyc
6359-rw-r--r-- root root 3792 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.opt-2.pyc
6360-rw-r--r-- root root 5096 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.pyc
6361-rw-r--r-- root root 12091 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.opt-1.pyc
6362-rw-r--r-- root root 8606 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.opt-2.pyc
6363-rw-r--r-- root root 12091 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.pyc
6364-rw-r--r-- root root 8429 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.opt-1.pyc
6365-rw-r--r-- root root 3331 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.opt-2.pyc
6366-rw-r--r-- root root 8429 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.pyc
6367-rw-r--r-- root root 6608 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.opt-1.pyc
6368-rw-r--r-- root root 6019 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.opt-2.pyc
6369-rw-r--r-- root root 6608 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.pyc
6370-rw-r--r-- root root 15536 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.opt-1.pyc
6371-rw-r--r-- root root 9652 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.opt-2.pyc
6372-rw-r--r-- root root 15536 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.pyc
6373-rw-r--r-- root root 7256 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.opt-1.pyc
6374-rw-r--r-- root root 3971 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.opt-2.pyc
6375-rw-r--r-- root root 7301 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.pyc
6376-rw-r--r-- root root 5125 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.opt-1.pyc
6377-rw-r--r-- root root 2645 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.opt-2.pyc
6378-rw-r--r-- root root 5125 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.pyc
6379-rw-r--r-- root root 242 ./usr/lib/python3.8/distutils/README
6380-rw-r--r-- root root 7843 ./usr/lib/python3.8/distutils/spawn.py
6381-rw-r--r-- root root 20390 ./usr/lib/python3.8/distutils/sysconfig.py
6382-rw-r--r-- root root 12483 ./usr/lib/python3.8/distutils/text_file.py
6383-rw-r--r-- root root 14696 ./usr/lib/python3.8/distutils/unixccompiler.py
6384-rw-r--r-- root root 20892 ./usr/lib/python3.8/distutils/util.py
6385-rw-r--r-- root root 5133 ./usr/lib/python3.8/distutils/versionpredicate.py
6386-rw-r--r-- root root 12345 ./usr/lib/python3.8/distutils/version.py
6387-rw-r--r-- root root 6027 ./usr/lib/python3.8/_dummy_thread.py
6388drwxr-xr-x root root 4096 ./usr/lib/python3.8/email
6389-rw-r--r-- root root 9561 ./usr/lib/python3.8/email/architecture.rst
6390-rw-r--r-- root root 3558 ./usr/lib/python3.8/email/base64mime.py
6391-rw-r--r-- root root 17128 ./usr/lib/python3.8/email/charset.py
6392-rw-r--r-- root root 10672 ./usr/lib/python3.8/email/contentmanager.py
6393-rw-r--r-- root root 8524 ./usr/lib/python3.8/email/_encoded_words.py
6394-rw-r--r-- root root 1786 ./usr/lib/python3.8/email/encoders.py
6395-rw-r--r-- root root 3647 ./usr/lib/python3.8/email/errors.py
6396-rw-r--r-- root root 22780 ./usr/lib/python3.8/email/feedparser.py
6397-rw-r--r-- root root 19975 ./usr/lib/python3.8/email/generator.py
6398-rw-r--r-- root root 24102 ./usr/lib/python3.8/email/header.py
6399-rw-r--r-- root root 20591 ./usr/lib/python3.8/email/headerregistry.py
6400-rw-r--r-- root root 106460 ./usr/lib/python3.8/email/_header_value_parser.py
6401-rw-r--r-- root root 1766 ./usr/lib/python3.8/email/__init__.py
6402-rw-r--r-- root root 2135 ./usr/lib/python3.8/email/iterators.py
6403-rw-r--r-- root root 47072 ./usr/lib/python3.8/email/message.py
6404drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/mime
6405-rw-r--r-- root root 1321 ./usr/lib/python3.8/email/mime/application.py
6406-rw-r--r-- root root 2739 ./usr/lib/python3.8/email/mime/audio.py
6407-rw-r--r-- root root 916 ./usr/lib/python3.8/email/mime/base.py
6408-rw-r--r-- root root 1829 ./usr/lib/python3.8/email/mime/image.py
6409-rw-r--r-- root root 0 ./usr/lib/python3.8/email/mime/__init__.py
6410-rw-r--r-- root root 1317 ./usr/lib/python3.8/email/mime/message.py
6411-rw-r--r-- root root 1621 ./usr/lib/python3.8/email/mime/multipart.py
6412-rw-r--r-- root root 691 ./usr/lib/python3.8/email/mime/nonmultipart.py
6413drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/mime/__pycache__
6414-rw-r--r-- root root 1448 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.opt-1.pyc
6415-rw-r--r-- root root 794 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.opt-2.pyc
6416-rw-r--r-- root root 1448 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.pyc
6417-rw-r--r-- root root 2613 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.opt-1.pyc
6418-rw-r--r-- root root 1173 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.opt-2.pyc
6419-rw-r--r-- root root 2613 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.pyc
6420-rw-r--r-- root root 1030 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.opt-1.pyc
6421-rw-r--r-- root root 706 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.opt-2.pyc
6422-rw-r--r-- root root 1030 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.pyc
6423-rw-r--r-- root root 1893 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.opt-1.pyc
6424-rw-r--r-- root root 816 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.opt-2.pyc
6425-rw-r--r-- root root 1893 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.pyc
6426-rw-r--r-- root root 121 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.opt-1.pyc
6427-rw-r--r-- root root 121 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.opt-2.pyc
6428-rw-r--r-- root root 121 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.pyc
6429-rw-r--r-- root root 1271 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.opt-1.pyc
6430-rw-r--r-- root root 779 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.opt-2.pyc
6431-rw-r--r-- root root 1271 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.pyc
6432-rw-r--r-- root root 1491 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.opt-1.pyc
6433-rw-r--r-- root root 695 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.opt-2.pyc
6434-rw-r--r-- root root 1491 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.pyc
6435-rw-r--r-- root root 753 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.opt-1.pyc
6436-rw-r--r-- root root 618 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.opt-2.pyc
6437-rw-r--r-- root root 753 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.pyc
6438-rw-r--r-- root root 1300 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.opt-1.pyc
6439-rw-r--r-- root root 789 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.opt-2.pyc
6440-rw-r--r-- root root 1300 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.pyc
6441-rw-r--r-- root root 1437 ./usr/lib/python3.8/email/mime/text.py
6442-rw-r--r-- root root 17604 ./usr/lib/python3.8/email/_parseaddr.py
6443-rw-r--r-- root root 5041 ./usr/lib/python3.8/email/parser.py
6444-rw-r--r-- root root 15073 ./usr/lib/python3.8/email/_policybase.py
6445-rw-r--r-- root root 10383 ./usr/lib/python3.8/email/policy.py
6446drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/__pycache__
6447-rw-r--r-- root root 3229 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.opt-1.pyc
6448-rw-r--r-- root root 1452 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.opt-2.pyc
6449-rw-r--r-- root root 3229 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.pyc
6450-rw-r--r-- root root 11416 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.opt-1.pyc
6451-rw-r--r-- root root 5087 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.opt-2.pyc
6452-rw-r--r-- root root 11453 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.pyc
6453-rw-r--r-- root root 7337 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.opt-1.pyc
6454-rw-r--r-- root root 7337 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.opt-2.pyc
6455-rw-r--r-- root root 7337 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.pyc
6456-rw-r--r-- root root 5680 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.opt-1.pyc
6457-rw-r--r-- root root 3794 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.opt-2.pyc
6458-rw-r--r-- root root 5680 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.pyc
6459-rw-r--r-- root root 1606 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.opt-1.pyc
6460-rw-r--r-- root root 1255 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.opt-2.pyc
6461-rw-r--r-- root root 1606 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.pyc
6462-rw-r--r-- root root 5899 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.opt-1.pyc
6463-rw-r--r-- root root 4467 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.opt-2.pyc
6464-rw-r--r-- root root 5899 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.pyc
6465-rw-r--r-- root root 10484 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.opt-1.pyc
6466-rw-r--r-- root root 8821 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.opt-2.pyc
6467-rw-r--r-- root root 10636 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.pyc
6468-rw-r--r-- root root 12476 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.opt-1.pyc
6469-rw-r--r-- root root 8777 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.opt-2.pyc
6470-rw-r--r-- root root 12476 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.pyc
6471-rw-r--r-- root root 16433 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.opt-1.pyc
6472-rw-r--r-- root root 10809 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.opt-2.pyc
6473-rw-r--r-- root root 16433 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.pyc
6474-rw-r--r-- root root 21842 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.opt-1.pyc
6475-rw-r--r-- root root 16079 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.opt-2.pyc
6476-rw-r--r-- root root 21894 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.pyc
6477-rw-r--r-- root root 79733 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.opt-1.pyc
6478-rw-r--r-- root root 62861 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.opt-2.pyc
6479-rw-r--r-- root root 79781 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.pyc
6480-rw-r--r-- root root 1685 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.opt-1.pyc
6481-rw-r--r-- root root 1060 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.opt-2.pyc
6482-rw-r--r-- root root 1685 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.pyc
6483-rw-r--r-- root root 1914 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.opt-1.pyc
6484-rw-r--r-- root root 1294 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.opt-2.pyc
6485-rw-r--r-- root root 1914 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.pyc
6486-rw-r--r-- root root 37872 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.opt-1.pyc
6487-rw-r--r-- root root 21310 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.opt-2.pyc
6488-rw-r--r-- root root 37872 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.pyc
6489-rw-r--r-- root root 12448 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.opt-1.pyc
6490-rw-r--r-- root root 9488 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.opt-2.pyc
6491-rw-r--r-- root root 12448 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.pyc
6492-rw-r--r-- root root 5716 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.opt-1.pyc
6493-rw-r--r-- root root 2698 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.opt-2.pyc
6494-rw-r--r-- root root 5716 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.pyc
6495-rw-r--r-- root root 14804 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.opt-1.pyc
6496-rw-r--r-- root root 5976 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.opt-2.pyc
6497-rw-r--r-- root root 14804 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.pyc
6498-rw-r--r-- root root 9652 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.opt-1.pyc
6499-rw-r--r-- root root 3437 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.opt-2.pyc
6500-rw-r--r-- root root 9652 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.pyc
6501-rw-r--r-- root root 7672 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.opt-1.pyc
6502-rw-r--r-- root root 4199 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.opt-2.pyc
6503-rw-r--r-- root root 7672 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.pyc
6504-rw-r--r-- root root 9541 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.opt-1.pyc
6505-rw-r--r-- root root 6212 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.opt-2.pyc
6506-rw-r--r-- root root 9541 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.pyc
6507-rw-r--r-- root root 9858 ./usr/lib/python3.8/email/quoprimime.py
6508-rw-r--r-- root root 13488 ./usr/lib/python3.8/email/utils.py
6509drwxr-xr-x root root 4096 ./usr/lib/python3.8/encodings
6510-rw-r--r-- root root 15693 ./usr/lib/python3.8/encodings/aliases.py
6511-rw-r--r-- root root 1248 ./usr/lib/python3.8/encodings/ascii.py
6512-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/base64_codec.py
6513-rw-r--r-- root root 1039 ./usr/lib/python3.8/encodings/big5hkscs.py
6514-rw-r--r-- root root 1019 ./usr/lib/python3.8/encodings/big5.py
6515-rw-r--r-- root root 2249 ./usr/lib/python3.8/encodings/bz2_codec.py
6516-rw-r--r-- root root 2084 ./usr/lib/python3.8/encodings/charmap.py
6517-rw-r--r-- root root 13121 ./usr/lib/python3.8/encodings/cp037.py
6518-rw-r--r-- root root 13568 ./usr/lib/python3.8/encodings/cp1006.py
6519-rw-r--r-- root root 13113 ./usr/lib/python3.8/encodings/cp1026.py
6520-rw-r--r-- root root 34597 ./usr/lib/python3.8/encodings/cp1125.py
6521-rw-r--r-- root root 13105 ./usr/lib/python3.8/encodings/cp1140.py
6522-rw-r--r-- root root 13686 ./usr/lib/python3.8/encodings/cp1250.py
6523-rw-r--r-- root root 13361 ./usr/lib/python3.8/encodings/cp1251.py
6524-rw-r--r-- root root 13511 ./usr/lib/python3.8/encodings/cp1252.py
6525-rw-r--r-- root root 13094 ./usr/lib/python3.8/encodings/cp1253.py
6526-rw-r--r-- root root 13502 ./usr/lib/python3.8/encodings/cp1254.py
6527-rw-r--r-- root root 12466 ./usr/lib/python3.8/encodings/cp1255.py
6528-rw-r--r-- root root 12814 ./usr/lib/python3.8/encodings/cp1256.py
6529-rw-r--r-- root root 13374 ./usr/lib/python3.8/encodings/cp1257.py
6530-rw-r--r-- root root 13364 ./usr/lib/python3.8/encodings/cp1258.py
6531-rw-r--r-- root root 14132 ./usr/lib/python3.8/encodings/cp273.py
6532-rw-r--r-- root root 12055 ./usr/lib/python3.8/encodings/cp424.py
6533-rw-r--r-- root root 34564 ./usr/lib/python3.8/encodings/cp437.py
6534-rw-r--r-- root root 13121 ./usr/lib/python3.8/encodings/cp500.py
6535-rw-r--r-- root root 13686 ./usr/lib/python3.8/encodings/cp720.py
6536-rw-r--r-- root root 34681 ./usr/lib/python3.8/encodings/cp737.py
6537-rw-r--r-- root root 34476 ./usr/lib/python3.8/encodings/cp775.py
6538-rw-r--r-- root root 34105 ./usr/lib/python3.8/encodings/cp850.py
6539-rw-r--r-- root root 35002 ./usr/lib/python3.8/encodings/cp852.py
6540-rw-r--r-- root root 33850 ./usr/lib/python3.8/encodings/cp855.py
6541-rw-r--r-- root root 12423 ./usr/lib/python3.8/encodings/cp856.py
6542-rw-r--r-- root root 33908 ./usr/lib/python3.8/encodings/cp857.py
6543-rw-r--r-- root root 34015 ./usr/lib/python3.8/encodings/cp858.py
6544-rw-r--r-- root root 34681 ./usr/lib/python3.8/encodings/cp860.py
6545-rw-r--r-- root root 34633 ./usr/lib/python3.8/encodings/cp861.py
6546-rw-r--r-- root root 33370 ./usr/lib/python3.8/encodings/cp862.py
6547-rw-r--r-- root root 34252 ./usr/lib/python3.8/encodings/cp863.py
6548-rw-r--r-- root root 33663 ./usr/lib/python3.8/encodings/cp864.py
6549-rw-r--r-- root root 34618 ./usr/lib/python3.8/encodings/cp865.py
6550-rw-r--r-- root root 34396 ./usr/lib/python3.8/encodings/cp866.py
6551-rw-r--r-- root root 32965 ./usr/lib/python3.8/encodings/cp869.py
6552-rw-r--r-- root root 12595 ./usr/lib/python3.8/encodings/cp874.py
6553-rw-r--r-- root root 12854 ./usr/lib/python3.8/encodings/cp875.py
6554-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp932.py
6555-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp949.py
6556-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp950.py
6557-rw-r--r-- root root 1051 ./usr/lib/python3.8/encodings/euc_jis_2004.py
6558-rw-r--r-- root root 1051 ./usr/lib/python3.8/encodings/euc_jisx0213.py
6559-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/euc_jp.py
6560-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/euc_kr.py
6561-rw-r--r-- root root 1031 ./usr/lib/python3.8/encodings/gb18030.py
6562-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/gb2312.py
6563-rw-r--r-- root root 1015 ./usr/lib/python3.8/encodings/gbk.py
6564-rw-r--r-- root root 1508 ./usr/lib/python3.8/encodings/hex_codec.py
6565-rw-r--r-- root root 13475 ./usr/lib/python3.8/encodings/hp_roman8.py
6566-rw-r--r-- root root 1011 ./usr/lib/python3.8/encodings/hz.py
6567-rw-r--r-- root root 9170 ./usr/lib/python3.8/encodings/idna.py
6568-rw-r--r-- root root 5588 ./usr/lib/python3.8/encodings/__init__.py
6569-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_1.py
6570-rw-r--r-- root root 1073 ./usr/lib/python3.8/encodings/iso2022_jp_2004.py
6571-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_2.py
6572-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_3.py
6573-rw-r--r-- root root 1069 ./usr/lib/python3.8/encodings/iso2022_jp_ext.py
6574-rw-r--r-- root root 1053 ./usr/lib/python3.8/encodings/iso2022_jp.py
6575-rw-r--r-- root root 1053 ./usr/lib/python3.8/encodings/iso2022_kr.py
6576-rw-r--r-- root root 13589 ./usr/lib/python3.8/encodings/iso8859_10.py
6577-rw-r--r-- root root 12335 ./usr/lib/python3.8/encodings/iso8859_11.py
6578-rw-r--r-- root root 13271 ./usr/lib/python3.8/encodings/iso8859_13.py
6579-rw-r--r-- root root 13652 ./usr/lib/python3.8/encodings/iso8859_14.py
6580-rw-r--r-- root root 13212 ./usr/lib/python3.8/encodings/iso8859_15.py
6581-rw-r--r-- root root 13557 ./usr/lib/python3.8/encodings/iso8859_16.py
6582-rw-r--r-- root root 13176 ./usr/lib/python3.8/encodings/iso8859_1.py
6583-rw-r--r-- root root 13404 ./usr/lib/python3.8/encodings/iso8859_2.py
6584-rw-r--r-- root root 13089 ./usr/lib/python3.8/encodings/iso8859_3.py
6585-rw-r--r-- root root 13376 ./usr/lib/python3.8/encodings/iso8859_4.py
6586-rw-r--r-- root root 13015 ./usr/lib/python3.8/encodings/iso8859_5.py
6587-rw-r--r-- root root 10833 ./usr/lib/python3.8/encodings/iso8859_6.py
6588-rw-r--r-- root root 12844 ./usr/lib/python3.8/encodings/iso8859_7.py
6589-rw-r--r-- root root 11036 ./usr/lib/python3.8/encodings/iso8859_8.py
6590-rw-r--r-- root root 13156 ./usr/lib/python3.8/encodings/iso8859_9.py
6591-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/johab.py
6592-rw-r--r-- root root 13779 ./usr/lib/python3.8/encodings/koi8_r.py
6593-rw-r--r-- root root 13193 ./usr/lib/python3.8/encodings/koi8_t.py
6594-rw-r--r-- root root 13762 ./usr/lib/python3.8/encodings/koi8_u.py
6595-rw-r--r-- root root 13723 ./usr/lib/python3.8/encodings/kz1048.py
6596-rw-r--r-- root root 1264 ./usr/lib/python3.8/encodings/latin_1.py
6597-rw-r--r-- root root 36467 ./usr/lib/python3.8/encodings/mac_arabic.py
6598-rw-r--r-- root root 14102 ./usr/lib/python3.8/encodings/mac_centeuro.py
6599-rw-r--r-- root root 13633 ./usr/lib/python3.8/encodings/mac_croatian.py
6600-rw-r--r-- root root 13454 ./usr/lib/python3.8/encodings/mac_cyrillic.py
6601-rw-r--r-- root root 15170 ./usr/lib/python3.8/encodings/mac_farsi.py
6602-rw-r--r-- root root 13721 ./usr/lib/python3.8/encodings/mac_greek.py
6603-rw-r--r-- root root 13498 ./usr/lib/python3.8/encodings/mac_iceland.py
6604-rw-r--r-- root root 14118 ./usr/lib/python3.8/encodings/mac_latin2.py
6605-rw-r--r-- root root 13661 ./usr/lib/python3.8/encodings/mac_romanian.py
6606-rw-r--r-- root root 13480 ./usr/lib/python3.8/encodings/mac_roman.py
6607-rw-r--r-- root root 13513 ./usr/lib/python3.8/encodings/mac_turkish.py
6608-rw-r--r-- root root 1211 ./usr/lib/python3.8/encodings/mbcs.py
6609-rw-r--r-- root root 1019 ./usr/lib/python3.8/encodings/oem.py
6610-rw-r--r-- root root 13519 ./usr/lib/python3.8/encodings/palmos.py
6611-rw-r--r-- root root 14015 ./usr/lib/python3.8/encodings/ptcp154.py
6612-rw-r--r-- root root 6881 ./usr/lib/python3.8/encodings/punycode.py
6613drwxr-xr-x root root 24576 ./usr/lib/python3.8/encodings/__pycache__
6614-rw-r--r-- root root 6320 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.opt-1.pyc
6615-rw-r--r-- root root 5728 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.opt-2.pyc
6616-rw-r--r-- root root 6320 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.pyc
6617-rw-r--r-- root root 1871 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.opt-1.pyc
6618-rw-r--r-- root root 1725 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.opt-2.pyc
6619-rw-r--r-- root root 1871 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.pyc
6620-rw-r--r-- root root 2285 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.opt-1.pyc
6621-rw-r--r-- root root 2110 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.opt-2.pyc
6622-rw-r--r-- root root 2389 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.pyc
6623-rw-r--r-- root root 1399 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.opt-1.pyc
6624-rw-r--r-- root root 1399 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.opt-2.pyc
6625-rw-r--r-- root root 1399 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.pyc
6626-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.opt-1.pyc
6627-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.opt-2.pyc
6628-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.pyc
6629-rw-r--r-- root root 3190 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.opt-1.pyc
6630-rw-r--r-- root root 2894 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.opt-2.pyc
6631-rw-r--r-- root root 3280 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.pyc
6632-rw-r--r-- root root 2881 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.opt-1.pyc
6633-rw-r--r-- root root 2587 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.opt-2.pyc
6634-rw-r--r-- root root 2881 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.pyc
6635-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.opt-1.pyc
6636-rw-r--r-- root root 2280 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.opt-2.pyc
6637-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.pyc
6638-rw-r--r-- root root 2488 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.opt-1.pyc
6639-rw-r--r-- root root 2363 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.opt-2.pyc
6640-rw-r--r-- root root 2488 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.pyc
6641-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.opt-1.pyc
6642-rw-r--r-- root root 2282 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.opt-2.pyc
6643-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.pyc
6644-rw-r--r-- root root 8119 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.opt-1.pyc
6645-rw-r--r-- root root 8056 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.opt-2.pyc
6646-rw-r--r-- root root 8119 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.pyc
6647-rw-r--r-- root root 2402 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.opt-1.pyc
6648-rw-r--r-- root root 2283 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.opt-2.pyc
6649-rw-r--r-- root root 2402 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.pyc
6650-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.opt-1.pyc
6651-rw-r--r-- root root 2304 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.opt-2.pyc
6652-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.pyc
6653-rw-r--r-- root root 2436 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.opt-1.pyc
6654-rw-r--r-- root root 2301 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.opt-2.pyc
6655-rw-r--r-- root root 2436 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.pyc
6656-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.opt-1.pyc
6657-rw-r--r-- root root 2304 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.opt-2.pyc
6658-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.pyc
6659-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.opt-1.pyc
6660-rw-r--r-- root root 2317 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.opt-2.pyc
6661-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.pyc
6662-rw-r--r-- root root 2441 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.opt-1.pyc
6663-rw-r--r-- root root 2306 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.opt-2.pyc
6664-rw-r--r-- root root 2441 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.pyc
6665-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.opt-1.pyc
6666-rw-r--r-- root root 2325 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.opt-2.pyc
6667-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.pyc
6668-rw-r--r-- root root 2438 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.opt-1.pyc
6669-rw-r--r-- root root 2303 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.opt-2.pyc
6670-rw-r--r-- root root 2438 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.pyc
6671-rw-r--r-- root root 2446 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.opt-1.pyc
6672-rw-r--r-- root root 2311 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.opt-2.pyc
6673-rw-r--r-- root root 2446 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.pyc
6674-rw-r--r-- root root 2444 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.opt-1.pyc
6675-rw-r--r-- root root 2309 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.opt-2.pyc
6676-rw-r--r-- root root 2444 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.pyc
6677-rw-r--r-- root root 2398 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.opt-1.pyc
6678-rw-r--r-- root root 2281 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.opt-2.pyc
6679-rw-r--r-- root root 2398 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.pyc
6680-rw-r--r-- root root 2442 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.opt-1.pyc
6681-rw-r--r-- root root 2319 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.opt-2.pyc
6682-rw-r--r-- root root 2442 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.pyc
6683-rw-r--r-- root root 7836 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.opt-1.pyc
6684-rw-r--r-- root root 7715 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.opt-2.pyc
6685-rw-r--r-- root root 7836 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.pyc
6686-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.opt-1.pyc
6687-rw-r--r-- root root 2280 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.opt-2.pyc
6688-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.pyc
6689-rw-r--r-- root root 2509 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.opt-1.pyc
6690-rw-r--r-- root root 2334 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.opt-2.pyc
6691-rw-r--r-- root root 2509 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.pyc
6692-rw-r--r-- root root 8158 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.opt-1.pyc
6693-rw-r--r-- root root 8037 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.opt-2.pyc
6694-rw-r--r-- root root 8158 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.pyc
6695-rw-r--r-- root root 7866 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.opt-1.pyc
6696-rw-r--r-- root root 7745 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.opt-2.pyc
6697-rw-r--r-- root root 7866 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.pyc
6698-rw-r--r-- root root 7497 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.opt-1.pyc
6699-rw-r--r-- root root 7382 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.opt-2.pyc
6700-rw-r--r-- root root 7497 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.pyc
6701-rw-r--r-- root root 7874 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.opt-1.pyc
6702-rw-r--r-- root root 7759 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.opt-2.pyc
6703-rw-r--r-- root root 7874 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.pyc
6704-rw-r--r-- root root 8127 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.opt-1.pyc
6705-rw-r--r-- root root 8012 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.opt-2.pyc
6706-rw-r--r-- root root 8127 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.pyc
6707-rw-r--r-- root root 2474 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.opt-1.pyc
6708-rw-r--r-- root root 2351 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.opt-2.pyc
6709-rw-r--r-- root root 2474 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.pyc
6710-rw-r--r-- root root 7477 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.opt-1.pyc
6711-rw-r--r-- root root 7362 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.opt-2.pyc
6712-rw-r--r-- root root 7477 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.pyc
6713-rw-r--r-- root root 7467 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.opt-1.pyc
6714-rw-r--r-- root root 7383 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.opt-2.pyc
6715-rw-r--r-- root root 7467 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.pyc
6716-rw-r--r-- root root 7815 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.opt-1.pyc
6717-rw-r--r-- root root 7700 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.opt-2.pyc
6718-rw-r--r-- root root 7815 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.pyc
6719-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.opt-1.pyc
6720-rw-r--r-- root root 7715 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.opt-2.pyc
6721-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.pyc
6722-rw-r--r-- root root 8019 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.opt-1.pyc
6723-rw-r--r-- root root 7904 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.opt-2.pyc
6724-rw-r--r-- root root 8019 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.pyc
6725-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.opt-1.pyc
6726-rw-r--r-- root root 7715 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.opt-2.pyc
6727-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.pyc
6728-rw-r--r-- root root 7974 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.opt-1.pyc
6729-rw-r--r-- root root 7859 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.opt-2.pyc
6730-rw-r--r-- root root 7974 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.pyc
6731-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.opt-1.pyc
6732-rw-r--r-- root root 7715 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.opt-2.pyc
6733-rw-r--r-- root root 7830 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.pyc
6734-rw-r--r-- root root 8163 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.opt-1.pyc
6735-rw-r--r-- root root 8048 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.opt-2.pyc
6736-rw-r--r-- root root 8163 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.pyc
6737-rw-r--r-- root root 7854 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.opt-1.pyc
6738-rw-r--r-- root root 7739 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.opt-2.pyc
6739-rw-r--r-- root root 7854 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.pyc
6740-rw-r--r-- root root 2540 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.opt-1.pyc
6741-rw-r--r-- root root 2407 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.opt-2.pyc
6742-rw-r--r-- root root 2540 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.pyc
6743-rw-r--r-- root root 2409 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.opt-1.pyc
6744-rw-r--r-- root root 2277 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.opt-2.pyc
6745-rw-r--r-- root root 2409 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.pyc
6746-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.opt-1.pyc
6747-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.opt-2.pyc
6748-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.pyc
6749-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.opt-1.pyc
6750-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.opt-2.pyc
6751-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.pyc
6752-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.opt-1.pyc
6753-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.opt-2.pyc
6754-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.pyc
6755-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.opt-1.pyc
6756-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.opt-2.pyc
6757-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.pyc
6758-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.opt-1.pyc
6759-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.opt-2.pyc
6760-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.pyc
6761-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.opt-1.pyc
6762-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.opt-2.pyc
6763-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.pyc
6764-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.opt-1.pyc
6765-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.opt-2.pyc
6766-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.pyc
6767-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.opt-1.pyc
6768-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.opt-2.pyc
6769-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.pyc
6770-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.opt-1.pyc
6771-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.opt-2.pyc
6772-rw-r--r-- root root 1403 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.pyc
6773-rw-r--r-- root root 1397 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.opt-1.pyc
6774-rw-r--r-- root root 1397 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.opt-2.pyc
6775-rw-r--r-- root root 1397 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.pyc
6776-rw-r--r-- root root 2272 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.opt-1.pyc
6777-rw-r--r-- root root 2095 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.opt-2.pyc
6778-rw-r--r-- root root 2376 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.pyc
6779-rw-r--r-- root root 2613 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.opt-1.pyc
6780-rw-r--r-- root root 2292 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.opt-2.pyc
6781-rw-r--r-- root root 2613 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.pyc
6782-rw-r--r-- root root 1395 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.opt-1.pyc
6783-rw-r--r-- root root 1395 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.opt-2.pyc
6784-rw-r--r-- root root 1395 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.pyc
6785-rw-r--r-- root root 5607 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.opt-1.pyc
6786-rw-r--r-- root root 5607 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.opt-2.pyc
6787-rw-r--r-- root root 5607 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.pyc
6788-rw-r--r-- root root 3893 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.opt-1.pyc
6789-rw-r--r-- root root 2438 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.opt-2.pyc
6790-rw-r--r-- root root 3893 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.pyc
6791-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.opt-1.pyc
6792-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.opt-2.pyc
6793-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.pyc
6794-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.opt-1.pyc
6795-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.opt-2.pyc
6796-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.pyc
6797-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.opt-1.pyc
6798-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.opt-2.pyc
6799-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.pyc
6800-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.opt-1.pyc
6801-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.opt-2.pyc
6802-rw-r--r-- root root 1420 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.pyc
6803-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.opt-1.pyc
6804-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.opt-2.pyc
6805-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.pyc
6806-rw-r--r-- root root 1424 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.opt-1.pyc
6807-rw-r--r-- root root 1424 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.opt-2.pyc
6808-rw-r--r-- root root 1424 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.pyc
6809-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.opt-1.pyc
6810-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.opt-2.pyc
6811-rw-r--r-- root root 1416 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.pyc
6812-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.opt-1.pyc
6813-rw-r--r-- root root 2291 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.opt-2.pyc
6814-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.pyc
6815-rw-r--r-- root root 2510 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.opt-1.pyc
6816-rw-r--r-- root root 2385 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.opt-2.pyc
6817-rw-r--r-- root root 2510 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.pyc
6818-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.opt-1.pyc
6819-rw-r--r-- root root 2294 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.opt-2.pyc
6820-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.pyc
6821-rw-r--r-- root root 2437 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.opt-1.pyc
6822-rw-r--r-- root root 2312 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.opt-2.pyc
6823-rw-r--r-- root root 2437 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.pyc
6824-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.opt-1.pyc
6825-rw-r--r-- root root 2291 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.opt-2.pyc
6826-rw-r--r-- root root 2416 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.pyc
6827-rw-r--r-- root root 2418 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.opt-1.pyc
6828-rw-r--r-- root root 2293 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.opt-2.pyc
6829-rw-r--r-- root root 2418 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.pyc
6830-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.opt-1.pyc
6831-rw-r--r-- root root 2288 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.opt-2.pyc
6832-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.pyc
6833-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.opt-1.pyc
6834-rw-r--r-- root root 2288 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.opt-2.pyc
6835-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.pyc
6836-rw-r--r-- root root 2418 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.opt-1.pyc
6837-rw-r--r-- root root 2295 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.opt-2.pyc
6838-rw-r--r-- root root 2418 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.pyc
6839-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.opt-1.pyc
6840-rw-r--r-- root root 2288 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.opt-2.pyc
6841-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.pyc
6842-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.opt-1.pyc
6843-rw-r--r-- root root 2289 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.opt-2.pyc
6844-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.pyc
6845-rw-r--r-- root root 2456 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.opt-1.pyc
6846-rw-r--r-- root root 2333 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.opt-2.pyc
6847-rw-r--r-- root root 2456 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.pyc
6848-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.opt-1.pyc
6849-rw-r--r-- root root 2296 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.opt-2.pyc
6850-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.pyc
6851-rw-r--r-- root root 2450 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.opt-1.pyc
6852-rw-r--r-- root root 2327 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.opt-2.pyc
6853-rw-r--r-- root root 2450 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.pyc
6854-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.opt-1.pyc
6855-rw-r--r-- root root 2288 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.opt-2.pyc
6856-rw-r--r-- root root 2411 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.pyc
6857-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.opt-1.pyc
6858-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.opt-2.pyc
6859-rw-r--r-- root root 1401 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.pyc
6860-rw-r--r-- root root 2463 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.opt-1.pyc
6861-rw-r--r-- root root 2338 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.opt-2.pyc
6862-rw-r--r-- root root 2463 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.pyc
6863-rw-r--r-- root root 2374 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.opt-1.pyc
6864-rw-r--r-- root root 2318 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.opt-2.pyc
6865-rw-r--r-- root root 2374 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.pyc
6866-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.opt-1.pyc
6867-rw-r--r-- root root 2330 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.opt-2.pyc
6868-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.pyc
6869-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.opt-1.pyc
6870-rw-r--r-- root root 2301 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.opt-2.pyc
6871-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.pyc
6872-rw-r--r-- root root 1883 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.opt-1.pyc
6873-rw-r--r-- root root 1735 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.opt-2.pyc
6874-rw-r--r-- root root 1883 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.pyc
6875-rw-r--r-- root root 7730 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.opt-1.pyc
6876-rw-r--r-- root root 7618 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.opt-2.pyc
6877-rw-r--r-- root root 7730 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.pyc
6878-rw-r--r-- root root 2450 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.opt-1.pyc
6879-rw-r--r-- root root 2316 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.opt-2.pyc
6880-rw-r--r-- root root 2450 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.pyc
6881-rw-r--r-- root root 2458 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.opt-1.pyc
6882-rw-r--r-- root root 2324 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.opt-2.pyc
6883-rw-r--r-- root root 2458 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.pyc
6884-rw-r--r-- root root 2448 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.opt-1.pyc
6885-rw-r--r-- root root 2314 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.opt-2.pyc
6886-rw-r--r-- root root 2448 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.pyc
6887-rw-r--r-- root root 2392 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.opt-1.pyc
6888-rw-r--r-- root root 2264 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.opt-2.pyc
6889-rw-r--r-- root root 2392 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.pyc
6890-rw-r--r-- root root 2432 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.opt-1.pyc
6891-rw-r--r-- root root 2304 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.opt-2.pyc
6892-rw-r--r-- root root 2432 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.pyc
6893-rw-r--r-- root root 2451 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.opt-1.pyc
6894-rw-r--r-- root root 2319 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.opt-2.pyc
6895-rw-r--r-- root root 2451 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.pyc
6896-rw-r--r-- root root 2592 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.opt-1.pyc
6897-rw-r--r-- root root 2312 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.opt-2.pyc
6898-rw-r--r-- root root 2592 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.pyc
6899-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.opt-1.pyc
6900-rw-r--r-- root root 2321 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.opt-2.pyc
6901-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.pyc
6902-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.opt-1.pyc
6903-rw-r--r-- root root 2325 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.opt-2.pyc
6904-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.pyc
6905-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.opt-1.pyc
6906-rw-r--r-- root root 2320 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.opt-2.pyc
6907-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.pyc
6908-rw-r--r-- root root 1701 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.opt-1.pyc
6909-rw-r--r-- root root 1468 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.opt-2.pyc
6910-rw-r--r-- root root 1701 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.pyc
6911-rw-r--r-- root root 1514 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.opt-1.pyc
6912-rw-r--r-- root root 1464 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.opt-2.pyc
6913-rw-r--r-- root root 1514 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.pyc
6914-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.opt-1.pyc
6915-rw-r--r-- root root 2302 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.opt-2.pyc
6916-rw-r--r-- root root 2439 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.pyc
6917-rw-r--r-- root root 2533 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.opt-1.pyc
6918-rw-r--r-- root root 2294 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.opt-2.pyc
6919-rw-r--r-- root root 2533 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.pyc
6920-rw-r--r-- root root 6301 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.opt-1.pyc
6921-rw-r--r-- root root 5709 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.opt-2.pyc
6922-rw-r--r-- root root 6301 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.pyc
6923-rw-r--r-- root root 2348 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.opt-1.pyc
6924-rw-r--r-- root root 2250 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.opt-2.pyc
6925-rw-r--r-- root root 2405 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.pyc
6926-rw-r--r-- root root 1752 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.opt-1.pyc
6927-rw-r--r-- root root 1593 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.opt-2.pyc
6928-rw-r--r-- root root 1752 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.pyc
6929-rw-r--r-- root root 2991 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.opt-1.pyc
6930-rw-r--r-- root root 2841 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.opt-2.pyc
6931-rw-r--r-- root root 2991 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.pyc
6932-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.opt-1.pyc
6933-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.opt-2.pyc
6934-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.pyc
6935-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.opt-1.pyc
6936-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.opt-2.pyc
6937-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.pyc
6938-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.opt-1.pyc
6939-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.opt-2.pyc
6940-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.pyc
6941-rw-r--r-- root root 2501 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.opt-1.pyc
6942-rw-r--r-- root root 2380 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.opt-2.pyc
6943-rw-r--r-- root root 2501 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.pyc
6944-rw-r--r-- root root 2085 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.opt-1.pyc
6945-rw-r--r-- root root 1756 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.opt-2.pyc
6946-rw-r--r-- root root 2085 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.pyc
6947-rw-r--r-- root root 1732 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.opt-1.pyc
6948-rw-r--r-- root root 1577 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.opt-2.pyc
6949-rw-r--r-- root root 1732 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.pyc
6950-rw-r--r-- root root 1640 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.opt-1.pyc
6951-rw-r--r-- root root 1490 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.opt-2.pyc
6952-rw-r--r-- root root 1640 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.pyc
6953-rw-r--r-- root root 4862 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.opt-1.pyc
6954-rw-r--r-- root root 4715 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.opt-2.pyc
6955-rw-r--r-- root root 4862 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.pyc
6956-rw-r--r-- root root 1640 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.opt-1.pyc
6957-rw-r--r-- root root 1490 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.opt-2.pyc
6958-rw-r--r-- root root 1640 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.pyc
6959-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.opt-1.pyc
6960-rw-r--r-- root root 1490 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.opt-2.pyc
6961-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.pyc
6962-rw-r--r-- root root 4755 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.opt-1.pyc
6963-rw-r--r-- root root 4715 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.opt-2.pyc
6964-rw-r--r-- root root 4755 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.pyc
6965-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.opt-1.pyc
6966-rw-r--r-- root root 1490 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.opt-2.pyc
6967-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.pyc
6968-rw-r--r-- root root 1561 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.opt-1.pyc
6969-rw-r--r-- root root 1474 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.opt-2.pyc
6970-rw-r--r-- root root 1561 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.pyc
6971-rw-r--r-- root root 1620 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.opt-1.pyc
6972-rw-r--r-- root root 1474 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.opt-2.pyc
6973-rw-r--r-- root root 1620 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.pyc
6974-rw-r--r-- root root 4536 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.opt-1.pyc
6975-rw-r--r-- root root 4234 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.opt-2.pyc
6976-rw-r--r-- root root 4536 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.pyc
6977-rw-r--r-- root root 3180 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.opt-1.pyc
6978-rw-r--r-- root root 2887 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.opt-2.pyc
6979-rw-r--r-- root root 3239 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.pyc
6980-rw-r--r-- root root 3009 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.opt-1.pyc
6981-rw-r--r-- root root 2843 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.opt-2.pyc
6982-rw-r--r-- root root 3099 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.pyc
6983-rw-r--r-- root root 1525 ./usr/lib/python3.8/encodings/quopri_codec.py
6984-rw-r--r-- root root 1208 ./usr/lib/python3.8/encodings/raw_unicode_escape.py
6985-rwxr-xr-x root root 2448 ./usr/lib/python3.8/encodings/rot_13.py
6986-rw-r--r-- root root 1059 ./usr/lib/python3.8/encodings/shift_jis_2004.py
6987-rw-r--r-- root root 1039 ./usr/lib/python3.8/encodings/shift_jis.py
6988-rw-r--r-- root root 1059 ./usr/lib/python3.8/encodings/shift_jisx0213.py
6989-rw-r--r-- root root 12300 ./usr/lib/python3.8/encodings/tis_620.py
6990-rw-r--r-- root root 1299 ./usr/lib/python3.8/encodings/undefined.py
6991-rw-r--r-- root root 1184 ./usr/lib/python3.8/encodings/unicode_escape.py
6992-rw-r--r-- root root 1037 ./usr/lib/python3.8/encodings/utf_16_be.py
6993-rw-r--r-- root root 1037 ./usr/lib/python3.8/encodings/utf_16_le.py
6994-rw-r--r-- root root 5236 ./usr/lib/python3.8/encodings/utf_16.py
6995-rw-r--r-- root root 930 ./usr/lib/python3.8/encodings/utf_32_be.py
6996-rw-r--r-- root root 930 ./usr/lib/python3.8/encodings/utf_32_le.py
6997-rw-r--r-- root root 5129 ./usr/lib/python3.8/encodings/utf_32.py
6998-rw-r--r-- root root 946 ./usr/lib/python3.8/encodings/utf_7.py
6999-rw-r--r-- root root 1005 ./usr/lib/python3.8/encodings/utf_8.py
7000-rw-r--r-- root root 4133 ./usr/lib/python3.8/encodings/utf_8_sig.py
7001-rw-r--r-- root root 2851 ./usr/lib/python3.8/encodings/uu_codec.py
7002-rw-r--r-- root root 2204 ./usr/lib/python3.8/encodings/zlib_codec.py
7003-rw-r--r-- root root 34616 ./usr/lib/python3.8/enum.py
7004-rw-r--r-- root root 4056 ./usr/lib/python3.8/fnmatch.py
7005-rw-r--r-- root root 34768 ./usr/lib/python3.8/ftplib.py
7006-rw-r--r-- root root 37376 ./usr/lib/python3.8/functools.py
7007-rw-r--r-- root root 5101 ./usr/lib/python3.8/__future__.py
7008-rw-r--r-- root root 4975 ./usr/lib/python3.8/genericpath.py
7009-rw-r--r-- root root 7489 ./usr/lib/python3.8/getopt.py
7010-rw-r--r-- root root 27138 ./usr/lib/python3.8/gettext.py
7011-rw-r--r-- root root 5697 ./usr/lib/python3.8/glob.py
7012-rw-r--r-- root root 21441 ./usr/lib/python3.8/gzip.py
7013-rw-r--r-- root root 9730 ./usr/lib/python3.8/hashlib.py
7014-rw-r--r-- root root 22877 ./usr/lib/python3.8/heapq.py
7015-rw-r--r-- root root 6629 ./usr/lib/python3.8/hmac.py
7016drwxr-xr-x root root 4096 ./usr/lib/python3.8/http
7017-rw-r--r-- root root 54496 ./usr/lib/python3.8/http/client.py
7018-rw-r--r-- root root 76835 ./usr/lib/python3.8/http/cookiejar.py
7019-rw-r--r-- root root 20412 ./usr/lib/python3.8/http/cookies.py
7020-rw-r--r-- root root 6378 ./usr/lib/python3.8/http/__init__.py
7021drwxr-xr-x root root 4096 ./usr/lib/python3.8/http/__pycache__
7022-rw-r--r-- root root 33915 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.opt-1.pyc
7023-rw-r--r-- root root 25008 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.opt-2.pyc
7024-rw-r--r-- root root 34014 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.pyc
7025-rw-r--r-- root root 53437 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.opt-1.pyc
7026-rw-r--r-- root root 37800 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.opt-2.pyc
7027-rw-r--r-- root root 53637 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.pyc
7028-rw-r--r-- root root 15215 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.opt-1.pyc
7029-rw-r--r-- root root 10818 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.opt-2.pyc
7030-rw-r--r-- root root 15263 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.pyc
7031-rw-r--r-- root root 6059 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.opt-1.pyc
7032-rw-r--r-- root root 5378 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.opt-2.pyc
7033-rw-r--r-- root root 6059 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.pyc
7034-rw-r--r-- root root 34387 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.opt-1.pyc
7035-rw-r--r-- root root 22451 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.opt-2.pyc
7036-rw-r--r-- root root 34387 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.pyc
7037-rw-r--r-- root root 47254 ./usr/lib/python3.8/http/server.py
7038-rw-r--r-- root root 53606 ./usr/lib/python3.8/imaplib.py
7039drwxr-xr-x root root 4096 ./usr/lib/python3.8/importlib
7040-rw-r--r-- root root 12873 ./usr/lib/python3.8/importlib/abc.py
7041-rw-r--r-- root root 62357 ./usr/lib/python3.8/importlib/_bootstrap_external.py
7042-rw-r--r-- root root 39644 ./usr/lib/python3.8/importlib/_bootstrap.py
7043-rw-r--r-- root root 6061 ./usr/lib/python3.8/importlib/__init__.py
7044-rw-r--r-- root root 844 ./usr/lib/python3.8/importlib/machinery.py
7045-rw-r--r-- root root 17607 ./usr/lib/python3.8/importlib/metadata.py
7046drwxr-xr-x root root 4096 ./usr/lib/python3.8/importlib/__pycache__
7047-rw-r--r-- root root 13563 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.opt-1.pyc
7048-rw-r--r-- root root 6752 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.opt-2.pyc
7049-rw-r--r-- root root 13563 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.pyc
7050-rw-r--r-- root root 28563 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.opt-1.pyc
7051-rw-r--r-- root root 21804 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.opt-2.pyc
7052-rw-r--r-- root root 28595 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.pyc
7053-rw-r--r-- root root 43396 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.opt-1.pyc
7054-rw-r--r-- root root 32275 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.opt-2.pyc
7055-rw-r--r-- root root 43700 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.pyc
7056-rw-r--r-- root root 3748 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.opt-1.pyc
7057-rw-r--r-- root root 3069 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.opt-2.pyc
7058-rw-r--r-- root root 3748 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.pyc
7059-rw-r--r-- root root 952 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.opt-1.pyc
7060-rw-r--r-- root root 812 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.opt-2.pyc
7061-rw-r--r-- root root 952 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.pyc
7062-rw-r--r-- root root 20830 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.opt-1.pyc
7063-rw-r--r-- root root 15063 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.opt-2.pyc
7064-rw-r--r-- root root 20830 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.pyc
7065-rw-r--r-- root root 6470 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.opt-1.pyc
7066-rw-r--r-- root root 5125 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.opt-2.pyc
7067-rw-r--r-- root root 6470 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.pyc
7068-rw-r--r-- root root 9282 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.opt-1.pyc
7069-rw-r--r-- root root 6413 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.opt-2.pyc
7070-rw-r--r-- root root 9282 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.pyc
7071-rw-r--r-- root root 9437 ./usr/lib/python3.8/importlib/resources.py
7072-rw-r--r-- root root 11319 ./usr/lib/python3.8/importlib/util.py
7073-rw-r--r-- root root 10536 ./usr/lib/python3.8/imp.py
7074-rw-r--r-- root root 118039 ./usr/lib/python3.8/inspect.py
7075-rw-r--r-- root root 3541 ./usr/lib/python3.8/io.py
7076-rw-r--r-- root root 71160 ./usr/lib/python3.8/ipaddress.py
7077-rw-r--r-- root root 945 ./usr/lib/python3.8/keyword.py
7078drwxr-xr-x root root 4096 ./usr/lib/python3.8/lib-dynload
7079-rwxr-xr-x root root 65816 ./usr/lib/python3.8/lib-dynload/array.cpython-38-x86_64-linux-gnu.so
7080-rwxr-xr-x root root 31736 ./usr/lib/python3.8/lib-dynload/binascii.cpython-38-x86_64-linux-gnu.so
7081-rwxr-xr-x root root 14760 ./usr/lib/python3.8/lib-dynload/_bisect.cpython-38-x86_64-linux-gnu.so
7082-rwxr-xr-x root root 44664 ./usr/lib/python3.8/lib-dynload/_blake2.cpython-38-x86_64-linux-gnu.so
7083-rwxr-xr-x root root 27896 ./usr/lib/python3.8/lib-dynload/_bz2.cpython-38-x86_64-linux-gnu.so
7084-rwxr-xr-x root root 43896 ./usr/lib/python3.8/lib-dynload/cmath.cpython-38-x86_64-linux-gnu.so
7085-rwxr-xr-x root root 14384 ./usr/lib/python3.8/lib-dynload/_crypt.cpython-38-x86_64-linux-gnu.so
7086-rwxr-xr-x root root 37240 ./usr/lib/python3.8/lib-dynload/_csv.cpython-38-x86_64-linux-gnu.so
7087-rwxr-xr-x root root 99712 ./usr/lib/python3.8/lib-dynload/_datetime.cpython-38-x86_64-linux-gnu.so
7088-rwxr-xr-x root root 76160 ./usr/lib/python3.8/lib-dynload/_elementtree.cpython-38-x86_64-linux-gnu.so
7089-rwxr-xr-x root root 18856 ./usr/lib/python3.8/lib-dynload/grp.cpython-38-x86_64-linux-gnu.so
7090-rwxr-xr-x root root 36600 ./usr/lib/python3.8/lib-dynload/_hashlib.cpython-38-x86_64-linux-gnu.so
7091-rwxr-xr-x root root 22640 ./usr/lib/python3.8/lib-dynload/_heapq.cpython-38-x86_64-linux-gnu.so
7092-rwxr-xr-x root root 40920 ./usr/lib/python3.8/lib-dynload/_lzma.cpython-38-x86_64-linux-gnu.so
7093-rwxr-xr-x root root 57208 ./usr/lib/python3.8/lib-dynload/math.cpython-38-x86_64-linux-gnu.so
7094-rwxr-xr-x root root 19352 ./usr/lib/python3.8/lib-dynload/_md5.cpython-38-x86_64-linux-gnu.so
7095-rwxr-xr-x root root 14520 ./usr/lib/python3.8/lib-dynload/_opcode.cpython-38-x86_64-linux-gnu.so
7096-rwxr-xr-x root root 27856 ./usr/lib/python3.8/lib-dynload/parser.cpython-38-x86_64-linux-gnu.so
7097-rwxr-xr-x root root 113208 ./usr/lib/python3.8/lib-dynload/_pickle.cpython-38-x86_64-linux-gnu.so
7098-rwxr-xr-x root root 22680 ./usr/lib/python3.8/lib-dynload/_posixsubprocess.cpython-38-x86_64-linux-gnu.so
7099-rwxr-xr-x root root 233072 ./usr/lib/python3.8/lib-dynload/pyexpat.cpython-38-x86_64-linux-gnu.so
7100-rwxr-xr-x root root 19320 ./usr/lib/python3.8/lib-dynload/_queue.cpython-38-x86_64-linux-gnu.so
7101-rwxr-xr-x root root 19024 ./usr/lib/python3.8/lib-dynload/_random.cpython-38-x86_64-linux-gnu.so
7102-rwxr-xr-x root root 35672 ./usr/lib/python3.8/lib-dynload/readline.cpython-38-x86_64-linux-gnu.so
7103-rwxr-xr-x root root 32632 ./usr/lib/python3.8/lib-dynload/select.cpython-38-x86_64-linux-gnu.so
7104-rwxr-xr-x root root 15256 ./usr/lib/python3.8/lib-dynload/_sha1.cpython-38-x86_64-linux-gnu.so
7105-rwxr-xr-x root root 24024 ./usr/lib/python3.8/lib-dynload/_sha256.cpython-38-x86_64-linux-gnu.so
7106-rwxr-xr-x root root 82960 ./usr/lib/python3.8/lib-dynload/_sha3.cpython-38-x86_64-linux-gnu.so
7107-rwxr-xr-x root root 28120 ./usr/lib/python3.8/lib-dynload/_sha512.cpython-38-x86_64-linux-gnu.so
7108-rwxr-xr-x root root 99056 ./usr/lib/python3.8/lib-dynload/_socket.cpython-38-x86_64-linux-gnu.so
7109-rwxr-xr-x root root 140280 ./usr/lib/python3.8/lib-dynload/_ssl.cpython-38-x86_64-linux-gnu.so
7110-rwxr-xr-x root root 50392 ./usr/lib/python3.8/lib-dynload/_struct.cpython-38-x86_64-linux-gnu.so
7111-rwxr-xr-x root root 30576 ./usr/lib/python3.8/lib-dynload/termios.cpython-38-x86_64-linux-gnu.so
7112-rwxr-xr-x root root 1091200 ./usr/lib/python3.8/lib-dynload/unicodedata.cpython-38-x86_64-linux-gnu.so
7113-rwxr-xr-x root root 14384 ./usr/lib/python3.8/lib-dynload/_uuid.cpython-38-x86_64-linux-gnu.so
7114-rwxr-xr-x root root 40888 ./usr/lib/python3.8/lib-dynload/zlib.cpython-38-x86_64-linux-gnu.so
7115-rw-r--r-- root root 5312 ./usr/lib/python3.8/linecache.py
7116-rw-r--r-- root root 78191 ./usr/lib/python3.8/locale.py
7117drwxr-xr-x root root 4096 ./usr/lib/python3.8/logging
7118-rw-r--r-- root root 36357 ./usr/lib/python3.8/logging/config.py
7119-rw-r--r-- root root 57885 ./usr/lib/python3.8/logging/handlers.py
7120-rw-r--r-- root root 77642 ./usr/lib/python3.8/logging/__init__.py
7121drwxr-xr-x root root 4096 ./usr/lib/python3.8/logging/__pycache__
7122-rw-r--r-- root root 23170 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.opt-1.pyc
7123-rw-r--r-- root root 19060 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.opt-2.pyc
7124-rw-r--r-- root root 23216 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.pyc
7125-rw-r--r-- root root 43148 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.opt-1.pyc
7126-rw-r--r-- root root 24441 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.opt-2.pyc
7127-rw-r--r-- root root 43148 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.pyc
7128-rw-r--r-- root root 64831 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.opt-1.pyc
7129-rw-r--r-- root root 36333 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.opt-2.pyc
7130-rw-r--r-- root root 64863 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.pyc
7131-rw-r--r-- root root 12983 ./usr/lib/python3.8/lzma.py
7132-rw-r--r-- root root 14598 ./usr/lib/python3.8/_markupbase.py
7133-rw-r--r-- root root 21604 ./usr/lib/python3.8/mimetypes.py
7134-rw-r--r-- root root 43261 ./usr/lib/python3.8/nntplib.py
7135-rw-r--r-- root root 27734 ./usr/lib/python3.8/ntpath.py
7136-rw-r--r-- root root 5808 ./usr/lib/python3.8/opcode.py
7137-rw-r--r-- root root 10711 ./usr/lib/python3.8/operator.py
7138-rw-r--r-- root root 60369 ./usr/lib/python3.8/optparse.py
7139-rw-r--r-- root root 38995 ./usr/lib/python3.8/os.py
7140-rw-r--r-- root root 51531 ./usr/lib/python3.8/pathlib.py
7141-rw-r--r-- root root 64395 ./usr/lib/python3.8/pickle.py
7142-rw-r--r-- root root 93486 ./usr/lib/python3.8/pickletools.py
7143-rw-r--r-- root root 8916 ./usr/lib/python3.8/pipes.py
7144-rw-r--r-- root root 21461 ./usr/lib/python3.8/pkgutil.py
7145-rwxr-xr-x root root 40306 ./usr/lib/python3.8/platform.py
7146-rw-r--r-- root root 15077 ./usr/lib/python3.8/poplib.py
7147-rw-r--r-- root root 15627 ./usr/lib/python3.8/posixpath.py
7148drwxr-xr-x root root 20480 ./usr/lib/python3.8/__pycache__
7149-rw-r--r-- root root 5334 ./usr/lib/python3.8/__pycache__/abc.cpython-38.opt-1.pyc
7150-rw-r--r-- root root 3212 ./usr/lib/python3.8/__pycache__/abc.cpython-38.opt-2.pyc
7151-rw-r--r-- root root 5334 ./usr/lib/python3.8/__pycache__/abc.cpython-38.pyc
7152-rw-r--r-- root root 62128 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.opt-1.pyc
7153-rw-r--r-- root root 52887 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.opt-2.pyc
7154-rw-r--r-- root root 62277 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.pyc
7155-rw-r--r-- root root 16301 ./usr/lib/python3.8/__pycache__/ast.cpython-38.opt-1.pyc
7156-rw-r--r-- root root 9889 ./usr/lib/python3.8/__pycache__/ast.cpython-38.opt-2.pyc
7157-rw-r--r-- root root 16336 ./usr/lib/python3.8/__pycache__/ast.cpython-38.pyc
7158-rw-r--r-- root root 16908 ./usr/lib/python3.8/__pycache__/base64.cpython-38.opt-1.pyc
7159-rw-r--r-- root root 11324 ./usr/lib/python3.8/__pycache__/base64.cpython-38.opt-2.pyc
7160-rw-r--r-- root root 17071 ./usr/lib/python3.8/__pycache__/base64.cpython-38.pyc
7161-rw-r--r-- root root 2354 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.opt-1.pyc
7162-rw-r--r-- root root 1042 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.opt-2.pyc
7163-rw-r--r-- root root 2354 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.pyc
7164-rw-r--r-- root root 1217 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.opt-1.pyc
7165-rw-r--r-- root root 992 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.opt-2.pyc
7166-rw-r--r-- root root 1243 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.pyc
7167-rw-r--r-- root root 11445 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.opt-1.pyc
7168-rw-r--r-- root root 6387 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.opt-2.pyc
7169-rw-r--r-- root root 11445 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.pyc
7170-rw-r--r-- root root 27064 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.opt-1.pyc
7171-rw-r--r-- root root 22472 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.opt-2.pyc
7172-rw-r--r-- root root 27064 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.pyc
7173-rw-r--r-- root root 12626 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.opt-1.pyc
7174-rw-r--r-- root root 7201 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.opt-2.pyc
7175-rw-r--r-- root root 12626 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.pyc
7176-rw-r--r-- root root 9913 ./usr/lib/python3.8/__pycache__/code.cpython-38.opt-1.pyc
7177-rw-r--r-- root root 4642 ./usr/lib/python3.8/__pycache__/code.cpython-38.opt-2.pyc
7178-rw-r--r-- root root 9913 ./usr/lib/python3.8/__pycache__/code.cpython-38.pyc
7179-rw-r--r-- root root 33913 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.opt-1.pyc
7180-rw-r--r-- root root 18347 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.opt-2.pyc
7181-rw-r--r-- root root 33913 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.pyc
7182-rw-r--r-- root root 6297 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.opt-1.pyc
7183-rw-r--r-- root root 2259 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.opt-2.pyc
7184-rw-r--r-- root root 6297 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.pyc
7185-rw-r--r-- root root 28741 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.opt-1.pyc
7186-rw-r--r-- root root 23682 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.opt-2.pyc
7187-rw-r--r-- root root 28741 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.pyc
7188-rw-r--r-- root root 5443 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.opt-1.pyc
7189-rw-r--r-- root root 5443 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.opt-2.pyc
7190-rw-r--r-- root root 5501 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.pyc
7191-rw-r--r-- root root 4146 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.opt-1.pyc
7192-rw-r--r-- root root 3932 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.opt-2.pyc
7193-rw-r--r-- root root 4146 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.pyc
7194-rw-r--r-- root root 45718 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.opt-1.pyc
7195-rw-r--r-- root root 30792 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.opt-2.pyc
7196-rw-r--r-- root root 45718 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.pyc
7197-rw-r--r-- root root 20176 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.opt-1.pyc
7198-rw-r--r-- root root 14596 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.opt-2.pyc
7199-rw-r--r-- root root 20229 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.pyc
7200-rw-r--r-- root root 6987 ./usr/lib/python3.8/__pycache__/copy.cpython-38.opt-1.pyc
7201-rw-r--r-- root root 4673 ./usr/lib/python3.8/__pycache__/copy.cpython-38.opt-2.pyc
7202-rw-r--r-- root root 6987 ./usr/lib/python3.8/__pycache__/copy.cpython-38.pyc
7203-rw-r--r-- root root 4283 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.opt-1.pyc
7204-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.opt-2.pyc
7205-rw-r--r-- root root 4318 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.pyc
7206-rw-r--r-- root root 3387 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.opt-1.pyc
7207-rw-r--r-- root root 2725 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.opt-2.pyc
7208-rw-r--r-- root root 3387 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.pyc
7209-rw-r--r-- root root 11910 ./usr/lib/python3.8/__pycache__/csv.cpython-38.opt-1.pyc
7210-rw-r--r-- root root 9871 ./usr/lib/python3.8/__pycache__/csv.cpython-38.opt-2.pyc
7211-rw-r--r-- root root 11910 ./usr/lib/python3.8/__pycache__/csv.cpython-38.pyc
7212-rw-r--r-- root root 55741 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.opt-1.pyc
7213-rw-r--r-- root root 47501 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.opt-2.pyc
7214-rw-r--r-- root root 56978 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.pyc
7215-rw-r--r-- root root 15802 ./usr/lib/python3.8/__pycache__/dis.cpython-38.opt-1.pyc
7216-rw-r--r-- root root 11995 ./usr/lib/python3.8/__pycache__/dis.cpython-38.opt-2.pyc
7217-rw-r--r-- root root 15802 ./usr/lib/python3.8/__pycache__/dis.cpython-38.pyc
7218-rw-r--r-- root root 6037 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.opt-1.pyc
7219-rw-r--r-- root root 3392 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.opt-2.pyc
7220-rw-r--r-- root root 6037 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.pyc
7221-rw-r--r-- root root 24399 ./usr/lib/python3.8/__pycache__/enum.cpython-38.opt-1.pyc
7222-rw-r--r-- root root 20110 ./usr/lib/python3.8/__pycache__/enum.cpython-38.opt-2.pyc
7223-rw-r--r-- root root 24399 ./usr/lib/python3.8/__pycache__/enum.cpython-38.pyc
7224-rw-r--r-- root root 3332 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.opt-1.pyc
7225-rw-r--r-- root root 2147 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.opt-2.pyc
7226-rw-r--r-- root root 3332 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.pyc
7227-rw-r--r-- root root 27849 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.opt-1.pyc
7228-rw-r--r-- root root 18116 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.opt-2.pyc
7229-rw-r--r-- root root 27849 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.pyc
7230-rw-r--r-- root root 27897 ./usr/lib/python3.8/__pycache__/functools.cpython-38.opt-1.pyc
7231-rw-r--r-- root root 21244 ./usr/lib/python3.8/__pycache__/functools.cpython-38.opt-2.pyc
7232-rw-r--r-- root root 27897 ./usr/lib/python3.8/__pycache__/functools.cpython-38.pyc
7233-rw-r--r-- root root 4131 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.opt-1.pyc
7234-rw-r--r-- root root 2159 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.opt-2.pyc
7235-rw-r--r-- root root 4131 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.pyc
7236-rw-r--r-- root root 4001 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.opt-1.pyc
7237-rw-r--r-- root root 2865 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.opt-2.pyc
7238-rw-r--r-- root root 4001 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.pyc
7239-rw-r--r-- root root 6237 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.opt-1.pyc
7240-rw-r--r-- root root 3683 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.opt-2.pyc
7241-rw-r--r-- root root 6271 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.pyc
7242-rw-r--r-- root root 17883 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.opt-1.pyc
7243-rw-r--r-- root root 17192 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.opt-2.pyc
7244-rw-r--r-- root root 17883 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.pyc
7245-rw-r--r-- root root 4278 ./usr/lib/python3.8/__pycache__/glob.cpython-38.opt-1.pyc
7246-rw-r--r-- root root 3418 ./usr/lib/python3.8/__pycache__/glob.cpython-38.opt-2.pyc
7247-rw-r--r-- root root 4343 ./usr/lib/python3.8/__pycache__/glob.cpython-38.pyc
7248-rw-r--r-- root root 18191 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.opt-1.pyc
7249-rw-r--r-- root root 14323 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.opt-2.pyc
7250-rw-r--r-- root root 18191 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.pyc
7251-rw-r--r-- root root 6727 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.opt-1.pyc
7252-rw-r--r-- root root 6159 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.opt-2.pyc
7253-rw-r--r-- root root 6727 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.pyc
7254-rw-r--r-- root root 14070 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.opt-1.pyc
7255-rw-r--r-- root root 11054 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.opt-2.pyc
7256-rw-r--r-- root root 14070 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.pyc
7257-rw-r--r-- root root 6388 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.opt-1.pyc
7258-rw-r--r-- root root 3871 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.opt-2.pyc
7259-rw-r--r-- root root 6388 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.pyc
7260-rw-r--r-- root root 39159 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.opt-1.pyc
7261-rw-r--r-- root root 27182 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.opt-2.pyc
7262-rw-r--r-- root root 41342 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.pyc
7263-rw-r--r-- root root 9809 ./usr/lib/python3.8/__pycache__/imp.cpython-38.opt-1.pyc
7264-rw-r--r-- root root 7444 ./usr/lib/python3.8/__pycache__/imp.cpython-38.opt-2.pyc
7265-rw-r--r-- root root 9809 ./usr/lib/python3.8/__pycache__/imp.cpython-38.pyc
7266-rw-r--r-- root root 80098 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.opt-1.pyc
7267-rw-r--r-- root root 54985 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.opt-2.pyc
7268-rw-r--r-- root root 80383 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.pyc
7269-rw-r--r-- root root 3454 ./usr/lib/python3.8/__pycache__/io.cpython-38.opt-1.pyc
7270-rw-r--r-- root root 1965 ./usr/lib/python3.8/__pycache__/io.cpython-38.opt-2.pyc
7271-rw-r--r-- root root 3454 ./usr/lib/python3.8/__pycache__/io.cpython-38.pyc
7272-rw-r--r-- root root 59559 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.opt-1.pyc
7273-rw-r--r-- root root 35711 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.opt-2.pyc
7274-rw-r--r-- root root 59559 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.pyc
7275-rw-r--r-- root root 998 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.opt-1.pyc
7276-rw-r--r-- root root 571 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.opt-2.pyc
7277-rw-r--r-- root root 998 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.pyc
7278-rw-r--r-- root root 3839 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.opt-1.pyc
7279-rw-r--r-- root root 2734 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.opt-2.pyc
7280-rw-r--r-- root root 3839 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.pyc
7281-rw-r--r-- root root 34689 ./usr/lib/python3.8/__pycache__/locale.cpython-38.opt-1.pyc
7282-rw-r--r-- root root 30074 ./usr/lib/python3.8/__pycache__/locale.cpython-38.opt-2.pyc
7283-rw-r--r-- root root 34689 ./usr/lib/python3.8/__pycache__/locale.cpython-38.pyc
7284-rw-r--r-- root root 12018 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.opt-1.pyc
7285-rw-r--r-- root root 5849 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.opt-2.pyc
7286-rw-r--r-- root root 12018 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.pyc
7287-rw-r--r-- root root 7618 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.opt-1.pyc
7288-rw-r--r-- root root 7240 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.opt-2.pyc
7289-rw-r--r-- root root 7790 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.pyc
7290-rw-r--r-- root root 15988 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.opt-1.pyc
7291-rw-r--r-- root root 9973 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.opt-2.pyc
7292-rw-r--r-- root root 15988 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.pyc
7293-rw-r--r-- root root 33974 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.opt-1.pyc
7294-rw-r--r-- root root 21464 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.opt-2.pyc
7295-rw-r--r-- root root 33974 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.pyc
7296-rw-r--r-- root root 14657 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.opt-1.pyc
7297-rw-r--r-- root root 12606 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.opt-2.pyc
7298-rw-r--r-- root root 14657 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.pyc
7299-rw-r--r-- root root 5420 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.opt-1.pyc
7300-rw-r--r-- root root 5280 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.opt-2.pyc
7301-rw-r--r-- root root 5420 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.pyc
7302-rw-r--r-- root root 13691 ./usr/lib/python3.8/__pycache__/operator.cpython-38.opt-1.pyc
7303-rw-r--r-- root root 11322 ./usr/lib/python3.8/__pycache__/operator.cpython-38.opt-2.pyc
7304-rw-r--r-- root root 13691 ./usr/lib/python3.8/__pycache__/operator.cpython-38.pyc
7305-rw-r--r-- root root 47974 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.opt-1.pyc
7306-rw-r--r-- root root 35659 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.opt-2.pyc
7307-rw-r--r-- root root 48057 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.pyc
7308-rw-r--r-- root root 31365 ./usr/lib/python3.8/__pycache__/os.cpython-38.opt-1.pyc
7309-rw-r--r-- root root 19174 ./usr/lib/python3.8/__pycache__/os.cpython-38.opt-2.pyc
7310-rw-r--r-- root root 31397 ./usr/lib/python3.8/__pycache__/os.cpython-38.pyc
7311-rw-r--r-- root root 43498 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.opt-1.pyc
7312-rw-r--r-- root root 35441 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.opt-2.pyc
7313-rw-r--r-- root root 43498 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.pyc
7314-rw-r--r-- root root 46761 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.opt-1.pyc
7315-rw-r--r-- root root 40889 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.opt-2.pyc
7316-rw-r--r-- root root 46878 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.pyc
7317-rw-r--r-- root root 66314 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.opt-1.pyc
7318-rw-r--r-- root root 57221 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.opt-2.pyc
7319-rw-r--r-- root root 67204 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.pyc
7320-rw-r--r-- root root 7795 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.opt-1.pyc
7321-rw-r--r-- root root 4928 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.opt-2.pyc
7322-rw-r--r-- root root 7795 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.pyc
7323-rw-r--r-- root root 16309 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.opt-1.pyc
7324-rw-r--r-- root root 11053 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.opt-2.pyc
7325-rw-r--r-- root root 16309 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.pyc
7326-rw-r--r-- root root 24221 ./usr/lib/python3.8/__pycache__/platform.cpython-38.opt-1.pyc
7327-rw-r--r-- root root 16345 ./usr/lib/python3.8/__pycache__/platform.cpython-38.opt-2.pyc
7328-rw-r--r-- root root 24221 ./usr/lib/python3.8/__pycache__/platform.cpython-38.pyc
7329-rw-r--r-- root root 13459 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.opt-1.pyc
7330-rw-r--r-- root root 8528 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.opt-2.pyc
7331-rw-r--r-- root root 13459 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.pyc
7332-rw-r--r-- root root 10428 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.opt-1.pyc
7333-rw-r--r-- root root 8713 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.opt-2.pyc
7334-rw-r--r-- root root 10428 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.pyc
7335-rw-r--r-- root root 74059 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.opt-1.pyc
7336-rw-r--r-- root root 51166 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.opt-2.pyc
7337-rw-r--r-- root root 74079 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.pyc
7338-rw-r--r-- root root 10626 ./usr/lib/python3.8/__pycache__/queue.cpython-38.opt-1.pyc
7339-rw-r--r-- root root 6289 ./usr/lib/python3.8/__pycache__/queue.cpython-38.opt-2.pyc
7340-rw-r--r-- root root 10626 ./usr/lib/python3.8/__pycache__/queue.cpython-38.pyc
7341-rw-r--r-- root root 5573 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.opt-1.pyc
7342-rw-r--r-- root root 4537 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.opt-2.pyc
7343-rw-r--r-- root root 5748 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.pyc
7344-rw-r--r-- root root 20108 ./usr/lib/python3.8/__pycache__/random.cpython-38.opt-1.pyc
7345-rw-r--r-- root root 13132 ./usr/lib/python3.8/__pycache__/random.cpython-38.opt-2.pyc
7346-rw-r--r-- root root 20108 ./usr/lib/python3.8/__pycache__/random.cpython-38.pyc
7347-rw-r--r-- root root 14308 ./usr/lib/python3.8/__pycache__/re.cpython-38.opt-1.pyc
7348-rw-r--r-- root root 6084 ./usr/lib/python3.8/__pycache__/re.cpython-38.opt-2.pyc
7349-rw-r--r-- root root 14308 ./usr/lib/python3.8/__pycache__/re.cpython-38.pyc
7350-rw-r--r-- root root 5303 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.opt-1.pyc
7351-rw-r--r-- root root 5147 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.opt-2.pyc
7352-rw-r--r-- root root 5303 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.pyc
7353-rw-r--r-- root root 5755 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.opt-1.pyc
7354-rw-r--r-- root root 3092 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.opt-2.pyc
7355-rw-r--r-- root root 5755 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.pyc
7356-rw-r--r-- root root 8104 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.opt-1.pyc
7357-rw-r--r-- root root 6538 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.opt-2.pyc
7358-rw-r--r-- root root 8104 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.pyc
7359-rw-r--r-- root root 16935 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.opt-1.pyc
7360-rw-r--r-- root root 12900 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.opt-2.pyc
7361-rw-r--r-- root root 16935 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.pyc
7362-rw-r--r-- root root 9490 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.opt-1.pyc
7363-rw-r--r-- root root 5339 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.opt-2.pyc
7364-rw-r--r-- root root 9490 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.pyc
7365-rw-r--r-- root root 7536 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.opt-1.pyc
7366-rw-r--r-- root root 6979 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.opt-2.pyc
7367-rw-r--r-- root root 7536 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.pyc
7368-rw-r--r-- root root 36569 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.opt-1.pyc
7369-rw-r--r-- root root 25114 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.opt-2.pyc
7370-rw-r--r-- root root 36569 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.pyc
7371-rw-r--r-- root root 2843 ./usr/lib/python3.8/__pycache__/signal.cpython-38.opt-1.pyc
7372-rw-r--r-- root root 2619 ./usr/lib/python3.8/__pycache__/signal.cpython-38.opt-2.pyc
7373-rw-r--r-- root root 2843 ./usr/lib/python3.8/__pycache__/signal.cpython-38.pyc
7374-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.opt-1.pyc
7375-rw-r--r-- root root 2957 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.opt-2.pyc
7376-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.pyc
7377-rw-r--r-- root root 16700 ./usr/lib/python3.8/__pycache__/site.cpython-38.opt-1.pyc
7378-rw-r--r-- root root 11164 ./usr/lib/python3.8/__pycache__/site.cpython-38.opt-2.pyc
7379-rw-r--r-- root root 16700 ./usr/lib/python3.8/__pycache__/site.cpython-38.pyc
7380-rw-r--r-- root root 35252 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.opt-1.pyc
7381-rw-r--r-- root root 18892 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.opt-2.pyc
7382-rw-r--r-- root root 35313 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.pyc
7383-rw-r--r-- root root 27747 ./usr/lib/python3.8/__pycache__/socket.cpython-38.opt-1.pyc
7384-rw-r--r-- root root 19424 ./usr/lib/python3.8/__pycache__/socket.cpython-38.opt-2.pyc
7385-rw-r--r-- root root 27787 ./usr/lib/python3.8/__pycache__/socket.cpython-38.pyc
7386-rw-r--r-- root root 14916 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.opt-1.pyc
7387-rw-r--r-- root root 14502 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.opt-2.pyc
7388-rw-r--r-- root root 15142 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.pyc
7389-rw-r--r-- root root 6359 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.opt-1.pyc
7390-rw-r--r-- root root 5934 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.opt-2.pyc
7391-rw-r--r-- root root 6359 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.pyc
7392-rw-r--r-- root root 21600 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.opt-1.pyc
7393-rw-r--r-- root root 21552 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.opt-2.pyc
7394-rw-r--r-- root root 21647 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.pyc
7395-rw-r--r-- root root 44596 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.opt-1.pyc
7396-rw-r--r-- root root 33618 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.opt-2.pyc
7397-rw-r--r-- root root 44596 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.pyc
7398-rw-r--r-- root root 4372 ./usr/lib/python3.8/__pycache__/stat.cpython-38.opt-1.pyc
7399-rw-r--r-- root root 3589 ./usr/lib/python3.8/__pycache__/stat.cpython-38.opt-2.pyc
7400-rw-r--r-- root root 4372 ./usr/lib/python3.8/__pycache__/stat.cpython-38.pyc
7401-rw-r--r-- root root 7300 ./usr/lib/python3.8/__pycache__/string.cpython-38.opt-1.pyc
7402-rw-r--r-- root root 6194 ./usr/lib/python3.8/__pycache__/string.cpython-38.opt-2.pyc
7403-rw-r--r-- root root 7300 ./usr/lib/python3.8/__pycache__/string.cpython-38.pyc
7404-rw-r--r-- root root 10959 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.opt-1.pyc
7405-rw-r--r-- root root 10739 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.opt-2.pyc
7406-rw-r--r-- root root 11017 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.pyc
7407-rw-r--r-- root root 16044 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.opt-1.pyc
7408-rw-r--r-- root root 12316 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.opt-2.pyc
7409-rw-r--r-- root root 16044 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.pyc
7410-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.opt-1.pyc
7411-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.opt-2.pyc
7412-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.pyc
7413-rw-r--r-- root root 41843 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.opt-1.pyc
7414-rw-r--r-- root root 29913 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.opt-2.pyc
7415-rw-r--r-- root root 41940 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.pyc
7416-rw-r--r-- root root 2404 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.opt-1.pyc
7417-rw-r--r-- root root 2328 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.opt-2.pyc
7418-rw-r--r-- root root 2404 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.pyc
7419-rw-r--r-- root root 15462 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.opt-1.pyc
7420-rw-r--r-- root root 13084 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.opt-2.pyc
7421-rw-r--r-- root root 15462 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.pyc
7422-rw-r--r-- root root 62519 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.opt-1.pyc
7423-rw-r--r-- root root 48629 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.opt-2.pyc
7424-rw-r--r-- root root 62550 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.pyc
7425-rw-r--r-- root root 18237 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.opt-1.pyc
7426-rw-r--r-- root root 10735 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.opt-2.pyc
7427-rw-r--r-- root root 18237 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.pyc
7428-rw-r--r-- root root 23459 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.opt-1.pyc
7429-rw-r--r-- root root 16875 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.opt-2.pyc
7430-rw-r--r-- root root 23459 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.pyc
7431-rw-r--r-- root root 13445 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.opt-1.pyc
7432-rw-r--r-- root root 6236 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.opt-2.pyc
7433-rw-r--r-- root root 13519 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.pyc
7434-rw-r--r-- root root 39378 ./usr/lib/python3.8/__pycache__/threading.cpython-38.opt-1.pyc
7435-rw-r--r-- root root 22801 ./usr/lib/python3.8/__pycache__/threading.cpython-38.opt-2.pyc
7436-rw-r--r-- root root 39929 ./usr/lib/python3.8/__pycache__/threading.cpython-38.pyc
7437-rw-r--r-- root root 6446 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.opt-1.pyc
7438-rw-r--r-- root root 3126 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.opt-2.pyc
7439-rw-r--r-- root root 6446 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.pyc
7440-rw-r--r-- root root 2485 ./usr/lib/python3.8/__pycache__/token.cpython-38.opt-1.pyc
7441-rw-r--r-- root root 2452 ./usr/lib/python3.8/__pycache__/token.cpython-38.opt-2.pyc
7442-rw-r--r-- root root 2485 ./usr/lib/python3.8/__pycache__/token.cpython-38.pyc
7443-rw-r--r-- root root 17116 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.opt-1.pyc
7444-rw-r--r-- root root 13352 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.opt-2.pyc
7445-rw-r--r-- root root 17160 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.pyc
7446-rw-r--r-- root root 19890 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.opt-1.pyc
7447-rw-r--r-- root root 10986 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.opt-2.pyc
7448-rw-r--r-- root root 19890 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.pyc
7449-rw-r--r-- root root 9177 ./usr/lib/python3.8/__pycache__/types.cpython-38.opt-1.pyc
7450-rw-r--r-- root root 7955 ./usr/lib/python3.8/__pycache__/types.cpython-38.opt-2.pyc
7451-rw-r--r-- root root 9177 ./usr/lib/python3.8/__pycache__/types.cpython-38.pyc
7452-rw-r--r-- root root 3605 ./usr/lib/python3.8/__pycache__/uu.cpython-38.opt-1.pyc
7453-rw-r--r-- root root 3361 ./usr/lib/python3.8/__pycache__/uu.cpython-38.opt-2.pyc
7454-rw-r--r-- root root 3605 ./usr/lib/python3.8/__pycache__/uu.cpython-38.pyc
7455-rw-r--r-- root root 23532 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.opt-1.pyc
7456-rw-r--r-- root root 16376 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.opt-2.pyc
7457-rw-r--r-- root root 23666 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.pyc
7458-rw-r--r-- root root 13192 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.opt-1.pyc
7459-rw-r--r-- root root 10917 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.opt-2.pyc
7460-rw-r--r-- root root 13652 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.pyc
7461-rw-r--r-- root root 19488 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.opt-1.pyc
7462-rw-r--r-- root root 16204 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.opt-2.pyc
7463-rw-r--r-- root root 19518 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.pyc
7464-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.opt-1.pyc
7465-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.opt-2.pyc
7466-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.pyc
7467-rw-r--r-- root root 58599 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.opt-1.pyc
7468-rw-r--r-- root root 49927 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.opt-2.pyc
7469-rw-r--r-- root root 58636 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.pyc
7470-rw-r--r-- root root 93177 ./usr/lib/python3.8/_pyio.py
7471-rw-r--r-- root root 11356 ./usr/lib/python3.8/queue.py
7472-rwxr-xr-x root root 7254 ./usr/lib/python3.8/quopri.py
7473-rw-r--r-- root root 28802 ./usr/lib/python3.8/random.py
7474-rw-r--r-- root root 5267 ./usr/lib/python3.8/reprlib.py
7475-rw-r--r-- root root 15747 ./usr/lib/python3.8/re.py
7476-rw-r--r-- root root 7097 ./usr/lib/python3.8/rlcompleter.py
7477-rw-r--r-- root root 11973 ./usr/lib/python3.8/runpy.py
7478-rw-r--r-- root root 18561 ./usr/lib/python3.8/selectors.py
7479-rw-r--r-- root root 8527 ./usr/lib/python3.8/shelve.py
7480-rw-r--r-- root root 13325 ./usr/lib/python3.8/shlex.py
7481-rw-r--r-- root root 50752 ./usr/lib/python3.8/shutil.py
7482-rw-r--r-- root root 2273 ./usr/lib/python3.8/signal.py
7483-rw-r--r-- root root 3115 ./usr/lib/python3.8/_sitebuiltins.py
7484drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages
7485drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info
7486-rw-r--r-- root root 1 ./usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info/dependency_links.txt
7487-rw-r--r-- root root 242 ./usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info/PKG-INFO
7488-rw-r--r-- root root 203 ./usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info/SOURCES.txt
7489-rw-r--r-- root root 10 ./usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info/top_level.txt
7490-rwxr-xr-x root root 45936 ./usr/lib/python3.8/site-packages/btrfsutil.cpython-38-x86_64-linux-gnu.so
7491drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/cairo
7492-rwxr-xr-x root root 220616 ./usr/lib/python3.8/site-packages/cairo/_cairo.cpython-38-x86_64-linux-gnu.so
7493drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/cairo/include
7494-rw-r--r-- root root 9152 ./usr/lib/python3.8/site-packages/cairo/include/py3cairo.h
7495-rwxr-xr-x root root 660 ./usr/lib/python3.8/site-packages/cairo/__init__.py
7496-rw-r--r-- root root 33334 ./usr/lib/python3.8/site-packages/cairo/__init__.pyi
7497-rw-r--r-- root root 0 ./usr/lib/python3.8/site-packages/cairo/py.typed
7498drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus
7499-rwxr-xr-x root root 167752 ./usr/lib/python3.8/site-packages/_dbus_bindings.so
7500-rw-r--r-- root root 17960 ./usr/lib/python3.8/site-packages/dbus/bus.py
7501-rw-r--r-- root root 148 ./usr/lib/python3.8/site-packages/dbus/_compat.py
7502-rw-r--r-- root root 27806 ./usr/lib/python3.8/site-packages/dbus/connection.py
7503-rw-r--r-- root root 8837 ./usr/lib/python3.8/site-packages/dbus/_dbus.py
7504-rw-r--r-- root root 15240 ./usr/lib/python3.8/site-packages/dbus/decorators.py
7505-rw-r--r-- root root 4707 ./usr/lib/python3.8/site-packages/dbus/exceptions.py
7506-rw-r--r-- root root 3409 ./usr/lib/python3.8/site-packages/dbus/_expat_introspect_parser.py
7507-rw-r--r-- root root 3517 ./usr/lib/python3.8/site-packages/dbus/gi_service.py
7508-rwxr-xr-x root root 22736 ./usr/lib/python3.8/site-packages/_dbus_glib_bindings.so
7509-rw-r--r-- root root 2130 ./usr/lib/python3.8/site-packages/dbus/glib.py
7510-rw-r--r-- root root 3756 ./usr/lib/python3.8/site-packages/dbus/__init__.py
7511-rw-r--r-- root root 1864 ./usr/lib/python3.8/site-packages/dbus/lowlevel.py
7512drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/mainloop
7513-rw-r--r-- root root 1806 ./usr/lib/python3.8/site-packages/dbus/mainloop/glib.py
7514-rw-r--r-- root root 2369 ./usr/lib/python3.8/site-packages/dbus/mainloop/__init__.py
7515drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__
7516-rw-r--r-- root root 655 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/glib.cpython-38.opt-1.pyc
7517-rw-r--r-- root root 655 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/glib.cpython-38.pyc
7518-rw-r--r-- root root 435 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/__init__.cpython-38.opt-1.pyc
7519-rw-r--r-- root root 435 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/__init__.cpython-38.pyc
7520drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock
7521-rw-r--r-- root root 856 ./usr/lib/python3.8/site-packages/dbusmock/__init__.py
7522-rw-r--r-- root root 4533 ./usr/lib/python3.8/site-packages/dbusmock/__main__.py
7523-rw-r--r-- root root 28848 ./usr/lib/python3.8/site-packages/dbusmock/mockobject.py
7524drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__
7525-rw-r--r-- root root 641 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/__init__.cpython-38.pyc
7526-rw-r--r-- root root 3142 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/__main__.cpython-38.pyc
7527-rw-r--r-- root root 22372 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/mockobject.cpython-38.pyc
7528-rw-r--r-- root root 7903 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/testcase.cpython-38.pyc
7529drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/templates
7530-rw-r--r-- root root 16490 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez4.py
7531-rw-r--r-- root root 10784 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez5-obex.py
7532-rw-r--r-- root root 15264 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez5.py
7533-rw-r--r-- root root 1250 ./usr/lib/python3.8/site-packages/dbusmock/templates/gnome_screensaver.py
7534-rw-r--r-- root root 382 ./usr/lib/python3.8/site-packages/dbusmock/templates/__init__.py
7535-rw-r--r-- root root 10765 ./usr/lib/python3.8/site-packages/dbusmock/templates/logind.py
7536-rw-r--r-- root root 1139 ./usr/lib/python3.8/site-packages/dbusmock/templates/low_memory_monitor.py
7537-rw-r--r-- root root 34680 ./usr/lib/python3.8/site-packages/dbusmock/templates/networkmanager.py
7538-rw-r--r-- root root 1777 ./usr/lib/python3.8/site-packages/dbusmock/templates/notification_daemon.py
7539-rw-r--r-- root root 18046 ./usr/lib/python3.8/site-packages/dbusmock/templates/ofono.py
7540-rw-r--r-- root root 2089 ./usr/lib/python3.8/site-packages/dbusmock/templates/polkitd.py
7541drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__
7542-rw-r--r-- root root 10255 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez4.cpython-38.pyc
7543-rw-r--r-- root root 9287 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez5.cpython-38.pyc
7544-rw-r--r-- root root 7996 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez5-obex.cpython-38.pyc
7545-rw-r--r-- root root 1052 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/gnome_screensaver.cpython-38.pyc
7546-rw-r--r-- root root 206 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/__init__.cpython-38.pyc
7547-rw-r--r-- root root 6563 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/logind.cpython-38.pyc
7548-rw-r--r-- root root 1111 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/low_memory_monitor.cpython-38.pyc
7549-rw-r--r-- root root 23374 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/networkmanager.cpython-38.pyc
7550-rw-r--r-- root root 1419 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/notification_daemon.cpython-38.pyc
7551-rw-r--r-- root root 9250 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/ofono.cpython-38.pyc
7552-rw-r--r-- root root 1890 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/polkitd.cpython-38.pyc
7553-rw-r--r-- root root 1342 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/timedated.cpython-38.pyc
7554-rw-r--r-- root root 6843 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/upower.cpython-38.pyc
7555-rw-r--r-- root root 2520 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/urfkill.cpython-38.pyc
7556-rw-r--r-- root root 1796 ./usr/lib/python3.8/site-packages/dbusmock/templates/timedated.py
7557-rw-r--r-- root root 10801 ./usr/lib/python3.8/site-packages/dbusmock/templates/upower.py
7558-rw-r--r-- root root 3709 ./usr/lib/python3.8/site-packages/dbusmock/templates/urfkill.py
7559-rw-r--r-- root root 9445 ./usr/lib/python3.8/site-packages/dbusmock/testcase.py
7560-rw-r--r-- root root 24821 ./usr/lib/python3.8/site-packages/dbus/proxies.py
7561drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/__pycache__
7562-rw-r--r-- root root 13609 ./usr/lib/python3.8/site-packages/dbus/__pycache__/bus.cpython-38.opt-1.pyc
7563-rw-r--r-- root root 13609 ./usr/lib/python3.8/site-packages/dbus/__pycache__/bus.cpython-38.pyc
7564-rw-r--r-- root root 218 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_compat.cpython-38.opt-1.pyc
7565-rw-r--r-- root root 218 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_compat.cpython-38.pyc
7566-rw-r--r-- root root 17806 ./usr/lib/python3.8/site-packages/dbus/__pycache__/connection.cpython-38.opt-1.pyc
7567-rw-r--r-- root root 17806 ./usr/lib/python3.8/site-packages/dbus/__pycache__/connection.cpython-38.pyc
7568-rw-r--r-- root root 7385 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_dbus.cpython-38.opt-1.pyc
7569-rw-r--r-- root root 7385 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_dbus.cpython-38.pyc
7570-rw-r--r-- root root 11569 ./usr/lib/python3.8/site-packages/dbus/__pycache__/decorators.cpython-38.opt-1.pyc
7571-rw-r--r-- root root 11569 ./usr/lib/python3.8/site-packages/dbus/__pycache__/decorators.cpython-38.pyc
7572-rw-r--r-- root root 3916 ./usr/lib/python3.8/site-packages/dbus/__pycache__/exceptions.cpython-38.opt-1.pyc
7573-rw-r--r-- root root 3916 ./usr/lib/python3.8/site-packages/dbus/__pycache__/exceptions.cpython-38.pyc
7574-rw-r--r-- root root 2206 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-38.opt-1.pyc
7575-rw-r--r-- root root 2206 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-38.pyc
7576-rw-r--r-- root root 1954 ./usr/lib/python3.8/site-packages/dbus/__pycache__/gi_service.cpython-38.opt-1.pyc
7577-rw-r--r-- root root 1954 ./usr/lib/python3.8/site-packages/dbus/__pycache__/gi_service.cpython-38.pyc
7578-rw-r--r-- root root 1018 ./usr/lib/python3.8/site-packages/dbus/__pycache__/glib.cpython-38.opt-1.pyc
7579-rw-r--r-- root root 1018 ./usr/lib/python3.8/site-packages/dbus/__pycache__/glib.cpython-38.pyc
7580-rw-r--r-- root root 2185 ./usr/lib/python3.8/site-packages/dbus/__pycache__/__init__.cpython-38.opt-1.pyc
7581-rw-r--r-- root root 2185 ./usr/lib/python3.8/site-packages/dbus/__pycache__/__init__.cpython-38.pyc
7582-rw-r--r-- root root 677 ./usr/lib/python3.8/site-packages/dbus/__pycache__/lowlevel.cpython-38.opt-1.pyc
7583-rw-r--r-- root root 677 ./usr/lib/python3.8/site-packages/dbus/__pycache__/lowlevel.cpython-38.pyc
7584-rw-r--r-- root root 17730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/proxies.cpython-38.opt-1.pyc
7585-rw-r--r-- root root 17730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/proxies.cpython-38.pyc
7586-rw-r--r-- root root 3462 ./usr/lib/python3.8/site-packages/dbus/__pycache__/server.cpython-38.opt-1.pyc
7587-rw-r--r-- root root 3462 ./usr/lib/python3.8/site-packages/dbus/__pycache__/server.cpython-38.pyc
7588-rw-r--r-- root root 22086 ./usr/lib/python3.8/site-packages/dbus/__pycache__/service.cpython-38.opt-1.pyc
7589-rw-r--r-- root root 22086 ./usr/lib/python3.8/site-packages/dbus/__pycache__/service.cpython-38.pyc
7590-rw-r--r-- root root 730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/types.cpython-38.opt-1.pyc
7591-rw-r--r-- root root 730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/types.cpython-38.pyc
7592-rw-r--r-- root root 4657 ./usr/lib/python3.8/site-packages/dbus/server.py
7593-rw-r--r-- root root 35473 ./usr/lib/python3.8/site-packages/dbus/service.py
7594-rw-r--r-- root root 561 ./usr/lib/python3.8/site-packages/dbus/types.py
7595drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi
7596-rw-r--r-- root root 1493 ./usr/lib/python3.8/site-packages/gi/_compat.py
7597-rw-r--r-- root root 1969 ./usr/lib/python3.8/site-packages/gi/_constants.py
7598-rw-r--r-- root root 6688 ./usr/lib/python3.8/site-packages/gi/docstring.py
7599-rw-r--r-- root root 2082 ./usr/lib/python3.8/site-packages/gi/_error.py
7600-rwxr-xr-x root root 22488 ./usr/lib/python3.8/site-packages/gi/_gi_cairo.cpython-38-x86_64-linux-gnu.so
7601-rwxr-xr-x root root 344488 ./usr/lib/python3.8/site-packages/gi/_gi.cpython-38-x86_64-linux-gnu.so
7602-rw-r--r-- root root 7835 ./usr/lib/python3.8/site-packages/gi/_gtktemplate.py
7603-rw-r--r-- root root 5280 ./usr/lib/python3.8/site-packages/gi/importer.py
7604-rw-r--r-- root root 5894 ./usr/lib/python3.8/site-packages/gi/__init__.py
7605-rw-r--r-- root root 9705 ./usr/lib/python3.8/site-packages/gi/module.py
7606-rw-r--r-- root root 13192 ./usr/lib/python3.8/site-packages/gi/_option.py
7607-rw-r--r-- root root 8083 ./usr/lib/python3.8/site-packages/gi/_ossighelper.py
7608drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi/overrides
7609-rw-r--r-- root root 1724 ./usr/lib/python3.8/site-packages/gi/overrides/GdkPixbuf.py
7610-rw-r--r-- root root 16239 ./usr/lib/python3.8/site-packages/gi/overrides/Gdk.py
7611-rw-r--r-- root root 2242 ./usr/lib/python3.8/site-packages/gi/overrides/GIMarshallingTests.py
7612-rw-r--r-- root root 19033 ./usr/lib/python3.8/site-packages/gi/overrides/Gio.py
7613-rw-r--r-- root root 29897 ./usr/lib/python3.8/site-packages/gi/overrides/GLib.py
7614-rw-r--r-- root root 24640 ./usr/lib/python3.8/site-packages/gi/overrides/GObject.py
7615-rw-r--r-- root root 59083 ./usr/lib/python3.8/site-packages/gi/overrides/Gtk.py
7616-rw-r--r-- root root 12590 ./usr/lib/python3.8/site-packages/gi/overrides/__init__.py
7617-rw-r--r-- root root 1705 ./usr/lib/python3.8/site-packages/gi/overrides/keysyms.py
7618-rw-r--r-- root root 1774 ./usr/lib/python3.8/site-packages/gi/overrides/Pango.py
7619-rw-r--r-- root root 14331 ./usr/lib/python3.8/site-packages/gi/_propertyhelper.py
7620-rw-r--r-- root root 766 ./usr/lib/python3.8/site-packages/gi/pygtkcompat.py
7621drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi/repository
7622-rw-r--r-- root root 1042 ./usr/lib/python3.8/site-packages/gi/repository/__init__.py
7623-rw-r--r-- root root 9303 ./usr/lib/python3.8/site-packages/gi/_signalhelper.py
7624-rw-r--r-- root root 14330 ./usr/lib/python3.8/site-packages/gi/types.py
7625-rw-r--r-- root root 1024 ./usr/lib/python3.8/site-packages/pycairo-1.19.0.egg-info
7626-rw-r--r-- root root 810 ./usr/lib/python3.8/site-packages/PyGObject-3.34.0.egg-info
7627drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/pygtkcompat
7628-rw-r--r-- root root 14200 ./usr/lib/python3.8/site-packages/pygtkcompat/generictreemodel.py
7629-rw-r--r-- root root 547 ./usr/lib/python3.8/site-packages/pygtkcompat/__init__.py
7630-rw-r--r-- root root 20890 ./usr/lib/python3.8/site-packages/pygtkcompat/pygtkcompat.py
7631drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info
7632-rw-r--r-- root root 1 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/dependency_links.txt
7633-rw-r--r-- root root 14631 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/PKG-INFO
7634-rw-r--r-- root root 1137 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/SOURCES.txt
7635-rw-r--r-- root root 9 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/top_level.txt
7636-rw-r--r-- root root 21342 ./usr/lib/python3.8/site.py
7637-rwxr-xr-x root root 44328 ./usr/lib/python3.8/smtplib.py
7638-rw-r--r-- root root 35243 ./usr/lib/python3.8/socket.py
7639-rw-r--r-- root root 26695 ./usr/lib/python3.8/sre_compile.py
7640-rw-r--r-- root root 7154 ./usr/lib/python3.8/sre_constants.py
7641-rw-r--r-- root root 40230 ./usr/lib/python3.8/sre_parse.py
7642-rw-r--r-- root root 50760 ./usr/lib/python3.8/ssl.py
7643-rw-r--r-- root root 5485 ./usr/lib/python3.8/stat.py
7644-rw-r--r-- root root 12917 ./usr/lib/python3.8/stringprep.py
7645-rw-r--r-- root root 10535 ./usr/lib/python3.8/string.py
7646-rw-r--r-- root root 25268 ./usr/lib/python3.8/_strptime.py
7647-rw-r--r-- root root 257 ./usr/lib/python3.8/struct.py
7648-rw-r--r-- root root 77289 ./usr/lib/python3.8/subprocess.py
7649-rw-r--r-- root root 2109 ./usr/lib/python3.8/symbol.py
7650-rw-r--r-- root root 26663 ./usr/lib/python3.8/_sysconfigdata__linux_x86_64-linux-gnu.py
7651-rw-r--r-- root root 24339 ./usr/lib/python3.8/sysconfig.py
7652-rwxr-xr-x root root 93575 ./usr/lib/python3.8/tarfile.py
7653-rw-r--r-- root root 23254 ./usr/lib/python3.8/telnetlib.py
7654-rw-r--r-- root root 27588 ./usr/lib/python3.8/tempfile.py
7655-rw-r--r-- root root 19407 ./usr/lib/python3.8/textwrap.py
7656-rw-r--r-- root root 7220 ./usr/lib/python3.8/_threading_local.py
7657-rw-r--r-- root root 50585 ./usr/lib/python3.8/threading.py
7658-rw-r--r-- root root 25841 ./usr/lib/python3.8/tokenize.py
7659-rw-r--r-- root root 2368 ./usr/lib/python3.8/token.py
7660-rw-r--r-- root root 23479 ./usr/lib/python3.8/traceback.py
7661-rw-r--r-- root root 9713 ./usr/lib/python3.8/types.py
7662drwxr-xr-x root root 4096 ./usr/lib/python3.8/urllib
7663-rw-r--r-- root root 2632 ./usr/lib/python3.8/urllib/error.py
7664-rw-r--r-- root root 0 ./usr/lib/python3.8/urllib/__init__.py
7665-rw-r--r-- root root 41583 ./usr/lib/python3.8/urllib/parse.py
7666drwxr-xr-x root root 4096 ./usr/lib/python3.8/urllib/__pycache__
7667-rw-r--r-- root root 2802 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.opt-1.pyc
7668-rw-r--r-- root root 2127 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.opt-2.pyc
7669-rw-r--r-- root root 2802 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.pyc
7670-rw-r--r-- root root 121 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.opt-1.pyc
7671-rw-r--r-- root root 121 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.opt-2.pyc
7672-rw-r--r-- root root 121 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.pyc
7673-rw-r--r-- root root 33925 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.opt-1.pyc
7674-rw-r--r-- root root 24489 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.opt-2.pyc
7675-rw-r--r-- root root 33925 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.pyc
7676-rw-r--r-- root root 72410 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.opt-1.pyc
7677-rw-r--r-- root root 60117 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.opt-2.pyc
7678-rw-r--r-- root root 72524 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.pyc
7679-rw-r--r-- root root 3282 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.opt-1.pyc
7680-rw-r--r-- root root 2703 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.opt-2.pyc
7681-rw-r--r-- root root 3282 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.pyc
7682-rw-r--r-- root root 7320 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.opt-1.pyc
7683-rw-r--r-- root root 5952 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.opt-2.pyc
7684-rw-r--r-- root root 7320 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.pyc
7685-rw-r--r-- root root 101308 ./usr/lib/python3.8/urllib/request.py
7686-rw-r--r-- root root 2299 ./usr/lib/python3.8/urllib/response.py
7687-rw-r--r-- root root 9424 ./usr/lib/python3.8/urllib/robotparser.py
7688-rw-r--r-- root root 30394 ./usr/lib/python3.8/uuid.py
7689-rwxr-xr-x root root 6959 ./usr/lib/python3.8/uu.py
7690-rw-r--r-- root root 19688 ./usr/lib/python3.8/warnings.py
7691-rw-r--r-- root root 21387 ./usr/lib/python3.8/weakref.py
7692-rw-r--r-- root root 5735 ./usr/lib/python3.8/_weakrefset.py
7693drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml
7694drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/dom
7695-rw-r--r-- root root 3451 ./usr/lib/python3.8/xml/dom/domreg.py
7696-rw-r--r-- root root 35756 ./usr/lib/python3.8/xml/dom/expatbuilder.py
7697-rw-r--r-- root root 4019 ./usr/lib/python3.8/xml/dom/__init__.py
7698-rw-r--r-- root root 3367 ./usr/lib/python3.8/xml/dom/minicompat.py
7699-rw-r--r-- root root 66857 ./usr/lib/python3.8/xml/dom/minidom.py
7700-rw-r--r-- root root 936 ./usr/lib/python3.8/xml/dom/NodeFilter.py
7701-rw-r--r-- root root 11997 ./usr/lib/python3.8/xml/dom/pulldom.py
7702drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/dom/__pycache__
7703-rw-r--r-- root root 2842 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.opt-1.pyc
7704-rw-r--r-- root root 1640 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.opt-2.pyc
7705-rw-r--r-- root root 2842 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.pyc
7706-rw-r--r-- root root 26798 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.opt-1.pyc
7707-rw-r--r-- root root 24193 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.opt-2.pyc
7708-rw-r--r-- root root 27333 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.pyc
7709-rw-r--r-- root root 5522 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.opt-1.pyc
7710-rw-r--r-- root root 4727 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.opt-2.pyc
7711-rw-r--r-- root root 5522 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.pyc
7712-rw-r--r-- root root 2642 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.opt-1.pyc
7713-rw-r--r-- root root 2464 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.opt-2.pyc
7714-rw-r--r-- root root 2734 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.pyc
7715-rw-r--r-- root root 55264 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.opt-1.pyc
7716-rw-r--r-- root root 53693 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.opt-2.pyc
7717-rw-r--r-- root root 55366 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.pyc
7718-rw-r--r-- root root 959 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.opt-1.pyc
7719-rw-r--r-- root root 866 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.opt-2.pyc
7720-rw-r--r-- root root 959 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.pyc
7721-rw-r--r-- root root 10683 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.opt-1.pyc
7722-rw-r--r-- root root 10247 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.opt-2.pyc
7723-rw-r--r-- root root 10683 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.pyc
7724-rw-r--r-- root root 12456 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.opt-1.pyc
7725-rw-r--r-- root root 12027 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.opt-2.pyc
7726-rw-r--r-- root root 12486 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.pyc
7727-rw-r--r-- root root 12403 ./usr/lib/python3.8/xml/dom/xmlbuilder.py
7728drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/etree
7729-rw-r--r-- root root 82 ./usr/lib/python3.8/xml/etree/cElementTree.py
7730-rw-r--r-- root root 5151 ./usr/lib/python3.8/xml/etree/ElementInclude.py
7731-rw-r--r-- root root 13118 ./usr/lib/python3.8/xml/etree/ElementPath.py
7732-rw-r--r-- root root 72728 ./usr/lib/python3.8/xml/etree/ElementTree.py
7733-rw-r--r-- root root 1604 ./usr/lib/python3.8/xml/etree/__init__.py
7734drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/etree/__pycache__
7735-rw-r--r-- root root 163 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.opt-1.pyc
7736-rw-r--r-- root root 163 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.opt-2.pyc
7737-rw-r--r-- root root 163 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.pyc
7738-rw-r--r-- root root 1569 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.opt-1.pyc
7739-rw-r--r-- root root 1569 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.opt-2.pyc
7740-rw-r--r-- root root 1569 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.pyc
7741-rw-r--r-- root root 8424 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.opt-1.pyc
7742-rw-r--r-- root root 8424 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.opt-2.pyc
7743-rw-r--r-- root root 8424 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.pyc
7744-rw-r--r-- root root 55288 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.opt-1.pyc
7745-rw-r--r-- root root 36891 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.opt-2.pyc
7746-rw-r--r-- root root 55602 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.pyc
7747-rw-r--r-- root root 121 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.opt-1.pyc
7748-rw-r--r-- root root 121 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.opt-2.pyc
7749-rw-r--r-- root root 121 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.pyc
7750-rw-r--r-- root root 557 ./usr/lib/python3.8/xml/__init__.py
7751drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/parsers
7752-rw-r--r-- root root 248 ./usr/lib/python3.8/xml/parsers/expat.py
7753-rw-r--r-- root root 167 ./usr/lib/python3.8/xml/parsers/__init__.py
7754drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/parsers/__pycache__
7755-rw-r--r-- root root 322 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.opt-1.pyc
7756-rw-r--r-- root root 256 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.opt-2.pyc
7757-rw-r--r-- root root 322 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.pyc
7758-rw-r--r-- root root 293 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.opt-1.pyc
7759-rw-r--r-- root root 121 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.opt-2.pyc
7760-rw-r--r-- root root 293 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.pyc
7761drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/__pycache__
7762-rw-r--r-- root root 688 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.opt-1.pyc
7763-rw-r--r-- root root 165 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.opt-2.pyc
7764-rw-r--r-- root root 688 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.pyc
7765drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/sax
7766-rw-r--r-- root root 4785 ./usr/lib/python3.8/xml/sax/_exceptions.py
7767-rw-r--r-- root root 15704 ./usr/lib/python3.8/xml/sax/expatreader.py
7768-rw-r--r-- root root 13922 ./usr/lib/python3.8/xml/sax/handler.py
7769-rw-r--r-- root root 3647 ./usr/lib/python3.8/xml/sax/__init__.py
7770drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/sax/__pycache__
7771-rw-r--r-- root root 5436 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.opt-1.pyc
7772-rw-r--r-- root root 2833 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.opt-2.pyc
7773-rw-r--r-- root root 5436 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.pyc
7774-rw-r--r-- root root 12487 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.opt-1.pyc
7775-rw-r--r-- root root 12076 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.opt-2.pyc
7776-rw-r--r-- root root 12487 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.pyc
7777-rw-r--r-- root root 12414 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.opt-1.pyc
7778-rw-r--r-- root root 4643 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.opt-2.pyc
7779-rw-r--r-- root root 12414 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.pyc
7780-rw-r--r-- root root 3211 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.opt-1.pyc
7781-rw-r--r-- root root 2148 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.opt-2.pyc
7782-rw-r--r-- root root 3211 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.pyc
7783-rw-r--r-- root root 12911 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.opt-1.pyc
7784-rw-r--r-- root root 11256 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.opt-2.pyc
7785-rw-r--r-- root root 12911 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.pyc
7786-rw-r--r-- root root 16836 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.opt-1.pyc
7787-rw-r--r-- root root 10399 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.opt-2.pyc
7788-rw-r--r-- root root 16836 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.pyc
7789-rw-r--r-- root root 12255 ./usr/lib/python3.8/xml/sax/saxutils.py
7790-rw-r--r-- root root 12684 ./usr/lib/python3.8/xml/sax/xmlreader.py
7791-rw-r--r-- root root 88132 ./usr/lib/python3.8/zipfile.py
7792-rw-r--r-- root root 3920 ./usr/lib/Scrt1.o
7793drwxr-xr-x root root 4096 ./usr/lib/ssl-1.1
7794lrwxrwxrwx root root 22 ./usr/lib/ssl-1.1/certs -> ../../../etc/ssl/certs
7795-rw-r--r-- root root 412 ./usr/lib/ssl-1.1/ct_log_list.cnf
7796-rw-r--r-- root root 412 ./usr/lib/ssl-1.1/ct_log_list.cnf.dist
7797-rw-r--r-- root root 10909 ./usr/lib/ssl-1.1/openssl.cnf.dist
7798lrwxrwxrwx root root 28 ./usr/lib/ssl-1.1/openssl.cnf -> ../../../etc/ssl/openssl.cnf
7799lrwxrwxrwx root root 24 ./usr/lib/ssl-1.1/private -> ../../../etc/ssl/private
7800drwxr-xr-x root root 4096 ./usr/lib/systemd
7801drwxr-xr-x root root 4096 ./usr/lib/systemd/user
7802-rw-r--r-- root root 360 ./usr/lib/systemd/user/dbus.service
7803-rw-r--r-- root root 174 ./usr/lib/systemd/user/dbus.socket
7804drwxr-xr-x root root 4096 ./usr/lib/systemd/user/sockets.target.wants
7805lrwxrwxrwx root root 14 ./usr/lib/systemd/user/sockets.target.wants/dbus.socket -> ../dbus.socket
7806drwxr-xr-x root root 4096 ./usr/lib/x86_64-poky-linux
7807drwxr-xr-x root root 4096 ./usr/lib/x86_64-poky-linux/10.1.0
7808-rw-r--r-- root root 2432 ./usr/lib/x86_64-poky-linux/10.1.0/crtbegin.o
7809-rw-r--r-- root root 2752 ./usr/lib/x86_64-poky-linux/10.1.0/crtbeginS.o
7810-rw-r--r-- root root 2944 ./usr/lib/x86_64-poky-linux/10.1.0/crtbeginT.o
7811-rw-r--r-- root root 1200 ./usr/lib/x86_64-poky-linux/10.1.0/crtend.o
7812-rw-r--r-- root root 1200 ./usr/lib/x86_64-poky-linux/10.1.0/crtendS.o
7813-rw-r--r-- root root 3848 ./usr/lib/x86_64-poky-linux/10.1.0/crtfastmath.o
7814-rw-r--r-- root root 3400 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec32.o
7815-rw-r--r-- root root 3416 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec64.o
7816-rw-r--r-- root root 3400 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec80.o
7817-rw-r--r-- root root 6179894 ./usr/lib/x86_64-poky-linux/10.1.0/libgcc.a
7818-rw-r--r-- root root 405636 ./usr/lib/x86_64-poky-linux/10.1.0/libgcc_eh.a
7819-rw-r--r-- root root 267062 ./usr/lib/x86_64-poky-linux/10.1.0/libgcov.a
7820-rw-r--r-- root root 201 ./usr/lib/xml2Conf.sh
7821drwxr-xr-x root root 4096 ./usr/lib/xtables
7822-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_ah.so
7823-rwxr-xr-x root root 14640 ./usr/lib/xtables/libip6t_DNAT.so
7824-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_DNPT.so
7825-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_dst.so
7826-rwxr-xr-x root root 14208 ./usr/lib/xtables/libip6t_eui64.so
7827-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_frag.so
7828-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_hbh.so
7829-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_hl.so
7830-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_HL.so
7831-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_icmp6.so
7832-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_ipv6header.so
7833-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_LOG.so
7834-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_MASQUERADE.so
7835-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_mh.so
7836-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_NETMAP.so
7837-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_REDIRECT.so
7838-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_REJECT.so
7839-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_rt.so
7840-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_SNAT.so
7841-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_SNPT.so
7842-rwxr-xr-x root root 22816 ./usr/lib/xtables/libip6t_srh.so
7843-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_ah.so
7844-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_CLUSTERIP.so
7845-rwxr-xr-x root root 18736 ./usr/lib/xtables/libipt_DNAT.so
7846-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_ECN.so
7847-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_icmp.so
7848-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_LOG.so
7849-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_MASQUERADE.so
7850-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_NETMAP.so
7851-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_realm.so
7852-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_REDIRECT.so
7853-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_REJECT.so
7854-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_SNAT.so
7855-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_ttl.so
7856-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_TTL.so
7857-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_ULOG.so
7858-rwxr-xr-x root root 14632 ./usr/lib/xtables/libxt_addrtype.so
7859-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_AUDIT.so
7860-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_bpf.so
7861-rwxr-xr-x root root 14816 ./usr/lib/xtables/libxt_cgroup.so
7862-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_CHECKSUM.so
7863-rwxr-xr-x root root 14648 ./usr/lib/xtables/libxt_CLASSIFY.so
7864-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_cluster.so
7865-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_comment.so
7866-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_connbytes.so
7867-rwxr-xr-x root root 15016 ./usr/lib/xtables/libxt_connlimit.so
7868-rwxr-xr-x root root 14632 ./usr/lib/xtables/libxt_connmark.so
7869-rwxr-xr-x root root 18944 ./usr/lib/xtables/libxt_CONNMARK.so
7870-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_CONNSECMARK.so
7871-rwxr-xr-x root root 32744 ./usr/lib/xtables/libxt_conntrack.so
7872-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_cpu.so
7873-rwxr-xr-x root root 19736 ./usr/lib/xtables/libxt_CT.so
7874-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_dccp.so
7875-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_devgroup.so
7876-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_dscp.so
7877-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_DSCP.so
7878-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_ecn.so
7879-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_esp.so
7880-rwxr-xr-x root root 36136 ./usr/lib/xtables/libxt_hashlimit.so
7881-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_helper.so
7882-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_HMARK.so
7883-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_IDLETIMER.so
7884-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_ipcomp.so
7885-rwxr-xr-x root root 14824 ./usr/lib/xtables/libxt_iprange.so
7886-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_ipvs.so
7887-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_LED.so
7888-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_length.so
7889-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_limit.so
7890-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_mac.so
7891-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_mark.so
7892-rwxr-xr-x root root 15168 ./usr/lib/xtables/libxt_MARK.so
7893-rwxr-xr-x root root 19112 ./usr/lib/xtables/libxt_multiport.so
7894-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_nfacct.so
7895-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_NFLOG.so
7896-rwxr-xr-x root root 15048 ./usr/lib/xtables/libxt_NFQUEUE.so
7897lrwxrwxrwx root root 11 ./usr/lib/xtables/libxt_NOTRACK.so -> libxt_CT.so
7898-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_osf.so
7899-rwxr-xr-x root root 23008 ./usr/lib/xtables/libxt_owner.so
7900-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_physdev.so
7901-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_pkttype.so
7902-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_policy.so
7903-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_quota.so
7904-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_rateest.so
7905-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_RATEEST.so
7906-rwxr-xr-x root root 18912 ./usr/lib/xtables/libxt_recent.so
7907-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_rpfilter.so
7908-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_sctp.so
7909-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_SECMARK.so
7910-rwxr-xr-x root root 23392 ./usr/lib/xtables/libxt_set.so
7911-rwxr-xr-x root root 23232 ./usr/lib/xtables/libxt_SET.so
7912-rwxr-xr-x root root 15008 ./usr/lib/xtables/libxt_socket.so
7913-rwxr-xr-x root root 14368 ./usr/lib/xtables/libxt_standard.so
7914lrwxrwxrwx root root 18 ./usr/lib/xtables/libxt_state.so -> libxt_conntrack.so
7915-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_statistic.so
7916-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_string.so
7917-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_SYNPROXY.so
7918-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_tcpmss.so
7919-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TCPMSS.so
7920-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_TCPOPTSTRIP.so
7921-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_tcp.so
7922-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TEE.so
7923-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_time.so
7924-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_tos.so
7925-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TOS.so
7926-rwxr-xr-x root root 14840 ./usr/lib/xtables/libxt_TPROXY.so
7927-rwxr-xr-x root root 14208 ./usr/lib/xtables/libxt_TRACE.so
7928-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_u32.so
7929-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_udp.so
7930drwxr-xr-x root root 4096 ./usr/sbin
7931lrwxrwxrwx root root 19 ./usr/sbin/addgroup -> /bin/busybox.nosuid
7932-rwxr-xr-x root root 26664 ./usr/sbin/addpart
7933lrwxrwxrwx root root 19 ./usr/sbin/adduser -> /bin/busybox.nosuid
7934-rwxr-xr-x root root 30760 ./usr/sbin/blkdiscard
7935-rwxr-xr-x root root 71720 ./usr/sbin/blkzone
7936-rwxr-xr-x root root 47136 ./usr/sbin/chcpu
7937-rwxr-xr-x root root 59152 ./usr/sbin/chgpasswd
7938-rwxr-xr-x root root 55056 ./usr/sbin/chpasswd.shadow
7939lrwxrwxrwx root root 25 ./usr/sbin/chpasswd -> /usr/sbin/chpasswd.shadow
7940-rwxr-xr-x root root 55464 ./usr/sbin/chroot.coreutils
7941lrwxrwxrwx root root 26 ./usr/sbin/chroot -> /usr/sbin/chroot.coreutils
7942lrwxrwxrwx root root 19 ./usr/sbin/delgroup -> /bin/busybox.nosuid
7943-rwxr-xr-x root root 26664 ./usr/sbin/delpart
7944lrwxrwxrwx root root 19 ./usr/sbin/deluser -> /bin/busybox.nosuid
7945lrwxrwxrwx root root 19 ./usr/sbin/fbset -> /bin/busybox.nosuid
7946-rwxr-xr-x root root 34856 ./usr/sbin/fdformat
7947-rwxr-xr-x root root 14368 ./usr/sbin/findfs
7948-rwxr-xr-x root root 38984 ./usr/sbin/fsck.cramfs
7949lrwxrwxrwx root root 29 ./usr/sbin/fsfreeze -> /usr/sbin/fsfreeze.util-linux
7950-rwxr-xr-x root root 14384 ./usr/sbin/fsfreeze.util-linux
7951-rwxr-xr-x root root 84336 ./usr/sbin/groupadd
7952-rwxr-xr-x root root 75952 ./usr/sbin/groupdel
7953-rwxr-xr-x root root 59160 ./usr/sbin/groupmems
7954-rwxr-xr-x root root 84272 ./usr/sbin/groupmod
7955-rwxr-xr-x root root 59120 ./usr/sbin/grpck
7956-rwxr-xr-x root root 54896 ./usr/sbin/grpconv
7957-rwxr-xr-x root root 54904 ./usr/sbin/grpunconv
7958-rwxr-xr-x root root 30936 ./usr/sbin/iconvconfig
7959lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy-restore -> xtables-legacy-multi
7960lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy-save -> xtables-legacy-multi
7961lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy -> xtables-legacy-multi
7962lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-restore -> xtables-legacy-multi
7963lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-save -> xtables-legacy-multi
7964lrwxrwxrwx root root 20 ./usr/sbin/ip6tables -> xtables-legacy-multi
7965lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy-restore -> xtables-legacy-multi
7966lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy-save -> xtables-legacy-multi
7967lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy -> xtables-legacy-multi
7968lrwxrwxrwx root root 20 ./usr/sbin/iptables-restore -> xtables-legacy-multi
7969lrwxrwxrwx root root 20 ./usr/sbin/iptables-save -> xtables-legacy-multi
7970lrwxrwxrwx root root 20 ./usr/sbin/iptables -> xtables-legacy-multi
7971-rwxr-xr-x root root 34856 ./usr/sbin/ldattach
7972lrwxrwxrwx root root 19 ./usr/sbin/loadfont -> /bin/busybox.nosuid
7973-rwxr-xr-x root root 14288 ./usr/sbin/logoutd
7974-rwxr-xr-x root root 14368 ./usr/sbin/mkfs
7975-rwxr-xr-x root root 38880 ./usr/sbin/mkfs.cramfs
7976-rwxr-xr-x root root 96560 ./usr/sbin/newusers
7977-rwxr-xr-x root root 116776 ./usr/sbin/partx
7978-rwxr-xr-x root root 55016 ./usr/sbin/pwck
7979-rwxr-xr-x root root 50792 ./usr/sbin/pwconv
7980-rwxr-xr-x root root 50808 ./usr/sbin/pwunconv
7981-rwxr-xr-x root root 14368 ./usr/sbin/raw
7982lrwxrwxrwx root root 19 ./usr/sbin/rdate -> /bin/busybox.nosuid
7983lrwxrwxrwx root root 32 ./usr/sbin/readprofile -> /usr/sbin/readprofile.util-linux
7984-rwxr-xr-x root root 22616 ./usr/sbin/readprofile.util-linux
7985-rwxr-xr-x root root 63528 ./usr/sbin/resizepart
7986lrwxrwxrwx root root 27 ./usr/sbin/rfkill -> /usr/sbin/rfkill.util-linux
7987-rwxr-xr-x root root 47152 ./usr/sbin/rfkill.util-linux
7988-rwxr-xr-x root root 47144 ./usr/sbin/rtcwake
7989-rwxr-xr-x root root 1986 ./usr/sbin/run-postinsts
7990-rwxr-xr-x root root 141352 ./usr/sbin/sfdisk
7991-rwxr-xr-x root root 18472 ./usr/sbin/swaplabel
7992lrwxrwxrwx root root 19 ./usr/sbin/udhcpd -> /bin/busybox.nosuid
7993-rwxr-xr-x root root 5990 ./usr/sbin/update-ca-certificates
7994-rwxr-xr-x root root 6365 ./usr/sbin/update-rc.d
7995-rwxr-xr-x root root 130136 ./usr/sbin/useradd
7996-rwxr-xr-x root root 88328 ./usr/sbin/userdel
7997-rwxr-xr-x root root 125880 ./usr/sbin/usermod
7998-rwxr-xr-x root root 39032 ./usr/sbin/uuidd
7999-rwxr-xr-x root root 47144 ./usr/sbin/wipefs
8000-rwxr-xr-x root root 98960 ./usr/sbin/xtables-legacy-multi
8001-rwxr-xr-x root root 112792 ./usr/sbin/zramctl
8002drwxr-xr-x root root 4096 ./usr/share
8003drwxr-xr-x root root 4096 ./usr/share/aclocal
8004-rw-r--r-- root root 2221 ./usr/share/aclocal/bison-i18n.m4
8005-rw-r--r-- root root 1184 ./usr/share/aclocal/cap-ng.m4
8006-rw-r--r-- root root 6337 ./usr/share/aclocal/freetype2.m4
8007-rw-r--r-- root root 8316 ./usr/share/aclocal/glib-2.0.m4
8008-rw-r--r-- root root 15838 ./usr/share/aclocal/glib-gettext.m4
8009-rw-r--r-- root root 3589 ./usr/share/aclocal/gsettings.m4
8010-rw-r--r-- root root 5132 ./usr/share/aclocal/introspection.m4
8011-rw-r--r-- root root 357 ./usr/share/aclocal/libxml.m4
8012-rw-r--r-- root root 428 ./usr/share/aclocal/wayland-scanner.m4
8013-rw-r--r-- root root 71315 ./usr/share/aclocal/xorg-macros.m4
8014-rw-r--r-- root root 6537 ./usr/share/aclocal/xtrans.m4
8015drwxr-xr-x root root 4096 ./usr/share/awk
8016-rw-r--r-- root root 383 ./usr/share/awk/assert.awk
8017-rw-r--r-- root root 334 ./usr/share/awk/bits2str.awk
8018-rw-r--r-- root root 307 ./usr/share/awk/cliff_rand.awk
8019-rw-r--r-- root root 234 ./usr/share/awk/ctime.awk
8020-rw-r--r-- root root 315 ./usr/share/awk/ftrans.awk
8021-rw-r--r-- root root 2202 ./usr/share/awk/getopt.awk
8022-rw-r--r-- root root 2491 ./usr/share/awk/gettime.awk
8023-rw-r--r-- root root 1765 ./usr/share/awk/group.awk
8024-rw-r--r-- root root 221 ./usr/share/awk/have_mpfr.awk
8025-rw-r--r-- root root 1992 ./usr/share/awk/inplace.awk
8026-rw-r--r-- root root 462 ./usr/share/awk/intdiv0.awk
8027-rw-r--r-- root root 378 ./usr/share/awk/join.awk
8028-rw-r--r-- root root 238 ./usr/share/awk/libintl.awk
8029-rw-r--r-- root root 422 ./usr/share/awk/noassign.awk
8030-rw-r--r-- root root 1282 ./usr/share/awk/ns_passwd.awk
8031-rw-r--r-- root root 937 ./usr/share/awk/ord.awk
8032-rw-r--r-- root root 1199 ./usr/share/awk/passwd.awk
8033-rw-r--r-- root root 355 ./usr/share/awk/processarray.awk
8034-rw-r--r-- root root 1031 ./usr/share/awk/quicksort.awk
8035-rw-r--r-- root root 489 ./usr/share/awk/readable.awk
8036-rw-r--r-- root root 267 ./usr/share/awk/readfile.awk
8037-rw-r--r-- root root 404 ./usr/share/awk/rewind.awk
8038-rw-r--r-- root root 661 ./usr/share/awk/round.awk
8039-rw-r--r-- root root 472 ./usr/share/awk/shellquote.awk
8040-rw-r--r-- root root 1454 ./usr/share/awk/strtonum.awk
8041-rw-r--r-- root root 214 ./usr/share/awk/walkarray.awk
8042-rw-r--r-- root root 424 ./usr/share/awk/zerofile.awk
8043drwxr-xr-x root root 4096 ./usr/share/bash-completion
8044-rw-r--r-- root root 74302 ./usr/share/bash-completion/bash_completion
8045drwxr-xr-x root root 4096 ./usr/share/bison
8046-rw-r--r-- root root 1147 ./usr/share/bison/bison-default.css
8047drwxr-xr-x root root 4096 ./usr/share/bison/m4sugar
8048-rw-r--r-- root root 14755 ./usr/share/bison/m4sugar/foreach.m4
8049-rw-r--r-- root root 122297 ./usr/share/bison/m4sugar/m4sugar.m4
8050-rw-r--r-- root root 6832 ./usr/share/bison/README.md
8051drwxr-xr-x root root 4096 ./usr/share/bison/skeletons
8052-rw-r--r-- root root 39019 ./usr/share/bison/skeletons/bison.m4
8053-rw-r--r-- root root 2404 ./usr/share/bison/skeletons/c-like.m4
8054-rw-r--r-- root root 29832 ./usr/share/bison/skeletons/c.m4
8055-rw-r--r-- root root 19123 ./usr/share/bison/skeletons/c++.m4
8056-rw-r--r-- root root 1163 ./usr/share/bison/skeletons/c-skel.m4
8057-rw-r--r-- root root 1169 ./usr/share/bison/skeletons/c++-skel.m4
8058-rw-r--r-- root root 9790 ./usr/share/bison/skeletons/d.m4
8059-rw-r--r-- root root 1135 ./usr/share/bison/skeletons/d-skel.m4
8060-rw-r--r-- root root 87461 ./usr/share/bison/skeletons/glr.c
8061-rw-r--r-- root root 11938 ./usr/share/bison/skeletons/glr.cc
8062-rw-r--r-- root root 10796 ./usr/share/bison/skeletons/java.m4
8063-rw-r--r-- root root 1166 ./usr/share/bison/skeletons/java-skel.m4
8064-rw-r--r-- root root 46677 ./usr/share/bison/skeletons/lalr1.cc
8065-rw-r--r-- root root 29428 ./usr/share/bison/skeletons/lalr1.d
8066-rw-r--r-- root root 34757 ./usr/share/bison/skeletons/lalr1.java
8067-rw-r--r-- root root 10331 ./usr/share/bison/skeletons/location.cc
8068-rw-r--r-- root root 1898 ./usr/share/bison/skeletons/README-D.txt
8069-rw-r--r-- root root 3854 ./usr/share/bison/skeletons/stack.hh
8070-rw-r--r-- root root 12992 ./usr/share/bison/skeletons/variant.hh
8071-rw-r--r-- root root 66135 ./usr/share/bison/skeletons/yacc.c
8072drwxr-xr-x root root 4096 ./usr/share/bison/xslt
8073-rw-r--r-- root root 3364 ./usr/share/bison/xslt/bison.xsl
8074-rw-r--r-- root root 12820 ./usr/share/bison/xslt/xml2dot.xsl
8075-rw-r--r-- root root 18554 ./usr/share/bison/xslt/xml2text.xsl
8076-rw-r--r-- root root 22678 ./usr/share/bison/xslt/xml2xhtml.xsl
8077drwxr-xr-x root root 4096 ./usr/share/ca-certificates
8078drwxr-xr-x root root 12288 ./usr/share/ca-certificates/mozilla
8079-rw-r--r-- root root 2772 ./usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt
8080-rw-r--r-- root root 1972 ./usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt
8081-rw-r--r-- root root 2049 ./usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt
8082-rw-r--r-- root root 1521 ./usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt
8083-rw-r--r-- root root 1204 ./usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt
8084-rw-r--r-- root root 1204 ./usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt
8085-rw-r--r-- root root 1891 ./usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt
8086-rw-r--r-- root root 753 ./usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt
8087-rw-r--r-- root root 1188 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt
8088-rw-r--r-- root root 1883 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt
8089-rw-r--r-- root root 656 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt
8090-rw-r--r-- root root 737 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt
8091-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt
8092-rw-r--r-- root root 2167 ./usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt
8093-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt
8094-rw-r--r-- root root 1915 ./usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt
8095-rw-r--r-- root root 1915 ./usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt
8096-rw-r--r-- root root 1935 ./usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt
8097-rw-r--r-- root root 1330 ./usr/share/ca-certificates/mozilla/Certigna.crt
8098-rw-r--r-- root root 1992 ./usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt
8099-rw-r--r-- root root 1298 ./usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt
8100-rw-r--r-- root root 1176 ./usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt
8101-rw-r--r-- root root 2078 ./usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt
8102-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt
8103-rw-r--r-- root root 1984 ./usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt
8104-rw-r--r-- root root 2594 ./usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt
8105-rw-r--r-- root root 1517 ./usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt
8106-rw-r--r-- root root 1489 ./usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt
8107-rw-r--r-- root root 940 ./usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt
8108-rw-r--r-- root root 2086 ./usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt
8109-rw-r--r-- root root 1318 ./usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt
8110-rw-r--r-- root root 1318 ./usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt
8111-rw-r--r-- root root 1350 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt
8112-rw-r--r-- root root 1306 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt
8113-rw-r--r-- root root 851 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt
8114-rw-r--r-- root root 1338 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt
8115-rw-r--r-- root root 1294 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt
8116-rw-r--r-- root root 839 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt
8117-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt
8118-rw-r--r-- root root 1988 ./usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt
8119-rw-r--r-- root root 1200 ./usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
8120-rw-r--r-- root root 1517 ./usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt
8121-rw-r--r-- root root 1537 ./usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt
8122-rw-r--r-- root root 1911 ./usr/share/ca-certificates/mozilla/EC-ACC.crt
8123-rw-r--r-- root root 1452 ./usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt
8124-rw-r--r-- root root 1505 ./usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt
8125-rw-r--r-- root root 1643 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt
8126-rw-r--r-- root root 1090 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt
8127-rw-r--r-- root root 1533 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt
8128-rw-r--r-- root root 2033 ./usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt
8129-rw-r--r-- root root 2244 ./usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt
8130-rw-r--r-- root root 1980 ./usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt
8131-rw-r--r-- root root 1216 ./usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt
8132-rw-r--r-- root root 1269 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt
8133-rw-r--r-- root root 989 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt
8134-rw-r--r-- root root 1444 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt
8135-rw-r--r-- root root 1939 ./usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt
8136-rw-r--r-- root root 1935 ./usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt
8137-rw-r--r-- root root 2585 ./usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt
8138-rw-r--r-- root root 713 ./usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt
8139-rw-r--r-- root root 794 ./usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt
8140-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt
8141-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt
8142-rw-r--r-- root root 1229 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt
8143-rw-r--r-- root root 1972 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt
8144-rw-r--r-- root root 1448 ./usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt
8145-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt
8146-rw-r--r-- root root 1017 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt
8147-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt
8148-rw-r--r-- root root 2155 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt
8149-rw-r--r-- root root 1168 ./usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt
8150-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt
8151-rw-r--r-- root root 1931 ./usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt
8152-rw-r--r-- root root 1939 ./usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
8153-rw-r--r-- root root 2122 ./usr/share/ca-certificates/mozilla/Izenpe.com.crt
8154-rw-r--r-- root root 2057 ./usr/share/ca-certificates/mozilla/LuxTrust_Global_Root_2.crt
8155-rw-r--r-- root root 1460 ./usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt
8156-rw-r--r-- root root 1476 ./usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt
8157-rw-r--r-- root root 1411 ./usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt
8158-rw-r--r-- root root 1428 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GA_CA.crt
8159-rw-r--r-- root root 1346 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt
8160-rw-r--r-- root root 895 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt
8161-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt
8162-rw-r--r-- root root 2041 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt
8163-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt
8164-rw-r--r-- root root 2354 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt
8165-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt
8166-rw-r--r-- root root 2078 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt
8167-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/Secure_Global_CA.crt
8168-rw-r--r-- root root 1249 ./usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt
8169-rw-r--r-- root root 1350 ./usr/share/ca-certificates/mozilla/SecureTrust_CA.crt
8170-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt
8171-rw-r--r-- root root 1224 ./usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt
8172-rw-r--r-- root root 1143 ./usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt
8173-rw-r--r-- root root 956 ./usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt
8174-rw-r--r-- root root 2114 ./usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt
8175-rw-r--r-- root root 944 ./usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt
8176-rw-r--r-- root root 2094 ./usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt
8177-rw-r--r-- root root 1948 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt
8178-rw-r--r-- root root 2069 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G2.crt
8179-rw-r--r-- root root 1952 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt
8180-rw-r--r-- root root 1468 ./usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt
8181-rw-r--r-- root root 1399 ./usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt
8182-rw-r--r-- root root 1424 ./usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt
8183-rw-r--r-- root root 2045 ./usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt
8184-rw-r--r-- root root 2049 ./usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt
8185-rw-r--r-- root root 1257 ./usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt
8186-rw-r--r-- root root 1948 ./usr/share/ca-certificates/mozilla/Taiwan_GRCA.crt
8187-rw-r--r-- root root 1870 ./usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt
8188-rw-r--r-- root root 1493 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA.crt
8189-rw-r--r-- root root 940 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G2.crt
8190-rw-r--r-- root root 1505 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G3.crt
8191-rw-r--r-- root root 1493 ./usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt
8192-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt
8193-rw-r--r-- root root 2204 ./usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt
8194-rw-r--r-- root root 1241 ./usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt
8195-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt
8196-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt
8197-rw-r--r-- root root 1582 ./usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt
8198-rw-r--r-- root root 1883 ./usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt
8199-rw-r--r-- root root 1269 ./usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt
8200-rw-r--r-- root root 948 ./usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt
8201-rw-r--r-- root root 2094 ./usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt
8202-rw-r--r-- root root 1484 ./usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.crt
8203-rw-r--r-- root root 1281 ./usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.crt
8204-rw-r--r-- root root 1732 ./usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.crt
8205-rw-r--r-- root root 1700 ./usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt
8206-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt
8207drwxr-xr-x root root 4096 ./usr/share/cmake
8208drwxr-xr-x root root 4096 ./usr/share/cmake/bash-completion
8209-rw-r--r-- root root 393 ./usr/share/cmake/bash-completion/bash-completion-config.cmake
8210-rw-r--r-- root root 252 ./usr/share/cmake/bash-completion/bash-completion-config-version.cmake
8211drwxr-xr-x root root 4096 ./usr/share/dbus-1
8212drwxr-xr-x root root 4096 ./usr/share/dbus-1/services
8213-rw-r--r-- root root 3561 ./usr/share/dbus-1/session.conf
8214drwxr-xr-x root root 4096 ./usr/share/dbus-1/session.d
8215-rw-r--r-- root root 5692 ./usr/share/dbus-1/system.conf
8216drwxr-xr-x root root 4096 ./usr/share/dbus-1/system.d
8217drwxr-xr-x root root 4096 ./usr/share/dbus-1/system-services
8218drwxr-xr-x root root 4096 ./usr/share/dict
8219drwxr-xr-x root root 4096 ./usr/share/drirc.d
8220-rw-r--r-- root root 27422 ./usr/share/drirc.d/00-mesa-defaults.conf
8221drwxr-xr-x root root 4096 ./usr/share/et
8222-rw-r--r-- root root 6485 ./usr/share/et/et_c.awk
8223-rw-r--r-- root root 4539 ./usr/share/et/et_h.awk
8224drwxr-xr-x root root 4096 ./usr/share/fontconfig
8225drwxr-xr-x root root 4096 ./usr/share/fontconfig/conf.avail
8226-rw-r--r-- root root 706 ./usr/share/fontconfig/conf.avail/10-autohint.conf
8227-rw-r--r-- root root 692 ./usr/share/fontconfig/conf.avail/10-hinting-full.conf
8228-rw-r--r-- root root 696 ./usr/share/fontconfig/conf.avail/10-hinting-medium.conf
8229-rw-r--r-- root root 692 ./usr/share/fontconfig/conf.avail/10-hinting-none.conf
8230-rw-r--r-- root root 696 ./usr/share/fontconfig/conf.avail/10-hinting-slight.conf
8231-rw-r--r-- root root 723 ./usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf
8232-rw-r--r-- root root 2228 ./usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
8233-rw-r--r-- root root 748 ./usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf
8234-rw-r--r-- root root 748 ./usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf
8235-rw-r--r-- root root 758 ./usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf
8236-rw-r--r-- root root 758 ./usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf
8237-rw-r--r-- root root 701 ./usr/share/fontconfig/conf.avail/10-unhinted.conf
8238-rw-r--r-- root root 771 ./usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf
8239-rw-r--r-- root root 768 ./usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf
8240-rw-r--r-- root root 765 ./usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf
8241-rw-r--r-- root root 1537 ./usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf
8242-rw-r--r-- root root 3489 ./usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf
8243-rw-r--r-- root root 13274 ./usr/share/fontconfig/conf.avail/30-metric-aliases.conf
8244-rw-r--r-- root root 5424 ./usr/share/fontconfig/conf.avail/40-nonlatin.conf
8245-rw-r--r-- root root 3543 ./usr/share/fontconfig/conf.avail/45-generic.conf
8246-rw-r--r-- root root 6600 ./usr/share/fontconfig/conf.avail/45-latin.conf
8247-rw-r--r-- root root 799 ./usr/share/fontconfig/conf.avail/49-sansserif.conf
8248-rw-r--r-- root root 911 ./usr/share/fontconfig/conf.avail/50-user.conf
8249-rw-r--r-- root root 423 ./usr/share/fontconfig/conf.avail/51-local.conf
8250-rw-r--r-- root root 2041 ./usr/share/fontconfig/conf.avail/60-generic.conf
8251-rw-r--r-- root root 2068 ./usr/share/fontconfig/conf.avail/60-latin.conf
8252-rw-r--r-- root root 10293 ./usr/share/fontconfig/conf.avail/65-fonts-persian.conf
8253-rw-r--r-- root root 464 ./usr/share/fontconfig/conf.avail/65-khmer.conf
8254-rw-r--r-- root root 8170 ./usr/share/fontconfig/conf.avail/65-nonlatin.conf
8255-rw-r--r-- root root 847 ./usr/share/fontconfig/conf.avail/69-unifont.conf
8256-rw-r--r-- root root 487 ./usr/share/fontconfig/conf.avail/70-no-bitmaps.conf
8257-rw-r--r-- root root 487 ./usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf
8258-rw-r--r-- root root 597 ./usr/share/fontconfig/conf.avail/80-delicious.conf
8259-rw-r--r-- root root 1917 ./usr/share/fontconfig/conf.avail/90-synthetic.conf
8260drwxr-xr-x root root 4096 ./usr/share/gettext
8261drwxr-xr-x root root 4096 ./usr/share/gettext/its
8262-rw-r--r-- root root 189 ./usr/share/gettext/its/fontconfig.its
8263-rw-r--r-- root root 189 ./usr/share/gettext/its/fontconfig.loc
8264-rw-r--r-- root root 1048 ./usr/share/gettext/its/gschema.its
8265-rw-r--r-- root root 333 ./usr/share/gettext/its/gschema.loc
8266drwxr-xr-x root root 4096 ./usr/share/gir-1.0
8267-rw-r--r-- root root 23723 ./usr/share/gir-1.0/cairo-1.0.gir
8268-rw-r--r-- root root 1185 ./usr/share/gir-1.0/DBus-1.0.gir
8269-rw-r--r-- root root 797 ./usr/share/gir-1.0/DBusGLib-1.0.gir
8270-rw-r--r-- root root 620 ./usr/share/gir-1.0/fontconfig-2.0.gir
8271-rw-r--r-- root root 768 ./usr/share/gir-1.0/freetype2-2.0.gir
8272-rw-r--r-- root root 6332887 ./usr/share/gir-1.0/Gio-2.0.gir
8273-rw-r--r-- root root 29235 ./usr/share/gir-1.0/gir-1.2.rnc
8274-rw-r--r-- root root 324506 ./usr/share/gir-1.0/GIRepository-2.0.gir
8275-rw-r--r-- root root 1122 ./usr/share/gir-1.0/GL-1.0.gir
8276-rw-r--r-- root root 3544680 ./usr/share/gir-1.0/GLib-2.0.gir
8277-rw-r--r-- root root 19691 ./usr/share/gir-1.0/GModule-2.0.gir
8278-rw-r--r-- root root 1247584 ./usr/share/gir-1.0/GObject-2.0.gir
8279-rw-r--r-- root root 938 ./usr/share/gir-1.0/libxml2-2.0.gir
8280-rw-r--r-- root root 65349 ./usr/share/gir-1.0/Vulkan-1.0.gir
8281-rw-r--r-- root root 611 ./usr/share/gir-1.0/win32-1.0.gir
8282-rw-r--r-- root root 361 ./usr/share/gir-1.0/xfixes-4.0.gir
8283-rw-r--r-- root root 745 ./usr/share/gir-1.0/xft-2.0.gir
8284-rw-r--r-- root root 2325 ./usr/share/gir-1.0/xlib-2.0.gir
8285-rw-r--r-- root root 808 ./usr/share/gir-1.0/xrandr-1.3.gir
8286drwxr-xr-x root root 4096 ./usr/share/glib-2.0
8287drwxr-xr-x root root 4096 ./usr/share/glib-2.0/gettext
8288drwxr-xr-x root root 4096 ./usr/share/glib-2.0/gettext/po
8289-rw-r--r-- root root 8076 ./usr/share/glib-2.0/gettext/po/Makefile.in.in
8290drwxr-xr-x root root 4096 ./usr/share/glib-2.0/schemas
8291-rw-r--r-- root root 2916 ./usr/share/glib-2.0/schemas/gschema.dtd
8292drwxr-xr-x root root 4096 ./usr/share/glib-2.0/valgrind
8293-rw-r--r-- root root 15263 ./usr/share/glib-2.0/valgrind/glib.supp
8294drwxr-xr-x root root 4096 ./usr/share/gobject-introspection-1.0
8295-rw-r--r-- root root 15228 ./usr/share/gobject-introspection-1.0/gdump.c
8296-rw-r--r-- root root 7177 ./usr/share/gobject-introspection-1.0/Makefile.introspection
8297drwxr-xr-x root root 4096 ./usr/share/info
8298drwxr-xr-x root root 4096 ./usr/share/libdrm
8299-rw-r--r-- root root 7547 ./usr/share/libdrm/amdgpu.ids
8300drwxr-xr-x root root 4096 ./usr/share/man
8301drwxr-xr-x root root 4096 ./usr/share/mime
8302-rw-r--r-- root root 10777 ./usr/share/mime/aliases
8303drwxr-xr-x root root 20480 ./usr/share/mime/application
8304-rw-r--r-- root root 2700 ./usr/share/mime/application/andrew-inset.xml
8305-rw-r--r-- root root 3200 ./usr/share/mime/application/annodex.xml
8306-rw-r--r-- root root 3123 ./usr/share/mime/application/atom+xml.xml
8307-rw-r--r-- root root 3009 ./usr/share/mime/application/dicom.xml
8308-rw-r--r-- root root 3299 ./usr/share/mime/application/ecmascript.xml
8309-rw-r--r-- root root 3513 ./usr/share/mime/application/epub+zip.xml
8310-rw-r--r-- root root 2263 ./usr/share/mime/application/geo+json.xml
8311-rw-r--r-- root root 2304 ./usr/share/mime/application/gml+xml.xml
8312-rw-r--r-- root root 3264 ./usr/share/mime/application/gnunet-directory.xml
8313-rw-r--r-- root root 2354 ./usr/share/mime/application/gpx+xml.xml
8314-rw-r--r-- root root 2813 ./usr/share/mime/application/gzip.xml
8315-rw-r--r-- root root 3757 ./usr/share/mime/application/illustrator.xml
8316-rw-r--r-- root root 3404 ./usr/share/mime/application/javascript.xml
8317-rw-r--r-- root root 2140 ./usr/share/mime/application/jrd+json.xml
8318-rw-r--r-- root root 1993 ./usr/share/mime/application/json-patch+json.xml
8319-rw-r--r-- root root 2281 ./usr/share/mime/application/json.xml
8320-rw-r--r-- root root 2255 ./usr/share/mime/application/ld+json.xml
8321-rw-r--r-- root root 4240 ./usr/share/mime/application/mac-binhex40.xml
8322-rw-r--r-- root root 1136 ./usr/share/mime/application/mathematica.xml
8323-rw-r--r-- root root 3328 ./usr/share/mime/application/mathml+xml.xml
8324-rw-r--r-- root root 3112 ./usr/share/mime/application/mbox.xml
8325-rw-r--r-- root root 2759 ./usr/share/mime/application/metalink4+xml.xml
8326-rw-r--r-- root root 2761 ./usr/share/mime/application/metalink+xml.xml
8327-rw-r--r-- root root 2925 ./usr/share/mime/application/msword-template.xml
8328-rw-r--r-- root root 3057 ./usr/share/mime/application/msword.xml
8329-rw-r--r-- root root 2615 ./usr/share/mime/application/mxf.xml
8330-rw-r--r-- root root 2687 ./usr/share/mime/application/octet-stream.xml
8331-rw-r--r-- root root 3111 ./usr/share/mime/application/oda.xml
8332-rw-r--r-- root root 3393 ./usr/share/mime/application/ogg.xml
8333-rw-r--r-- root root 2057 ./usr/share/mime/application/owl+xml.xml
8334-rw-r--r-- root root 3059 ./usr/share/mime/application/oxps.xml
8335-rw-r--r-- root root 3131 ./usr/share/mime/application/pdf.xml
8336-rw-r--r-- root root 4545 ./usr/share/mime/application/pgp-encrypted.xml
8337-rw-r--r-- root root 3138 ./usr/share/mime/application/pgp-keys.xml
8338-rw-r--r-- root root 3716 ./usr/share/mime/application/pgp-signature.xml
8339-rw-r--r-- root root 3686 ./usr/share/mime/application/pkcs10.xml
8340-rw-r--r-- root root 3703 ./usr/share/mime/application/pkcs12.xml
8341-rw-r--r-- root root 1090 ./usr/share/mime/application/pkcs7-mime.xml
8342-rw-r--r-- root root 3684 ./usr/share/mime/application/pkcs7-signature.xml
8343-rw-r--r-- root root 2231 ./usr/share/mime/application/pkcs8-encrypted.xml
8344-rw-r--r-- root root 2936 ./usr/share/mime/application/pkcs8.xml
8345-rw-r--r-- root root 2674 ./usr/share/mime/application/pkix-cert.xml
8346-rw-r--r-- root root 1120 ./usr/share/mime/application/pkix-crl.xml
8347-rw-r--r-- root root 3306 ./usr/share/mime/application/pkix-pkipath.xml
8348-rw-r--r-- root root 1110 ./usr/share/mime/application/postscript.xml
8349-rw-r--r-- root root 3011 ./usr/share/mime/application/prs.plucker.xml
8350-rw-r--r-- root root 1992 ./usr/share/mime/application/raml+yaml.xml
8351-rw-r--r-- root root 1115 ./usr/share/mime/application/ram.xml
8352-rw-r--r-- root root 2800 ./usr/share/mime/application/rdf+xml.xml
8353-rw-r--r-- root root 2940 ./usr/share/mime/application/relax-ng-compact-syntax.xml
8354-rw-r--r-- root root 2927 ./usr/share/mime/application/rss+xml.xml
8355-rw-r--r-- root root 2954 ./usr/share/mime/application/rtf.xml
8356-rw-r--r-- root root 3857 ./usr/share/mime/application/sdp.xml
8357-rw-r--r-- root root 3701 ./usr/share/mime/application/sieve.xml
8358-rw-r--r-- root root 3131 ./usr/share/mime/application/smil+xml.xml
8359-rw-r--r-- root root 2733 ./usr/share/mime/application/sql.xml
8360-rw-r--r-- root root 2434 ./usr/share/mime/application/trig.xml
8361-rw-r--r-- root root 3433 ./usr/share/mime/application/vnd.adobe.flash.movie.xml
8362-rw-r--r-- root root 432 ./usr/share/mime/application/vnd.amazon.mobi8-ebook.xml
8363-rw-r--r-- root root 2605 ./usr/share/mime/application/vnd.android.package-archive.xml
8364-rw-r--r-- root root 2358 ./usr/share/mime/application/vnd.appimage.xml
8365-rw-r--r-- root root 3597 ./usr/share/mime/application/vnd.apple.mpegurl.xml
8366-rw-r--r-- root root 3598 ./usr/share/mime/application/vnd.chess-pgn.xml
8367-rw-r--r-- root root 2381 ./usr/share/mime/application/vnd.coffeescript.xml
8368-rw-r--r-- root root 3230 ./usr/share/mime/application/vnd.comicbook-rar.xml
8369-rw-r--r-- root root 3226 ./usr/share/mime/application/vnd.comicbook+zip.xml
8370-rw-r--r-- root root 3655 ./usr/share/mime/application/vnd.corel-draw.xml
8371-rw-r--r-- root root 3205 ./usr/share/mime/application/vnd.debian.binary-package.xml
8372-rw-r--r-- root root 3403 ./usr/share/mime/application/vnd.emusic-emusic_package.xml
8373-rw-r--r-- root root 2211 ./usr/share/mime/application/vnd.flatpak.ref.xml
8374-rw-r--r-- root root 2273 ./usr/share/mime/application/vnd.flatpak.repo.xml
8375-rw-r--r-- root root 2279 ./usr/share/mime/application/vnd.flatpak.xml
8376-rw-r--r-- root root 3675 ./usr/share/mime/application/vnd.framemaker.xml
8377-rw-r--r-- root root 3051 ./usr/share/mime/application/vnd.google-earth.kml+xml.xml
8378-rw-r--r-- root root 3579 ./usr/share/mime/application/vnd.google-earth.kmz.xml
8379-rw-r--r-- root root 2820 ./usr/share/mime/application/vnd.hp-hpgl.xml
8380-rw-r--r-- root root 2769 ./usr/share/mime/application/vnd.hp-pcl.xml
8381-rw-r--r-- root root 2536 ./usr/share/mime/application/vnd.iccprofile.xml
8382-rw-r--r-- root root 3991 ./usr/share/mime/application/vnd.lotus-1-2-3.xml
8383-rw-r--r-- root root 1142 ./usr/share/mime/application/vnd.lotus-wordpro.xml
8384-rw-r--r-- root root 3540 ./usr/share/mime/application/vnd.mozilla.xul+xml.xml
8385-rw-r--r-- root root 3419 ./usr/share/mime/application/vnd.ms-access.xml
8386-rw-r--r-- root root 2921 ./usr/share/mime/application/vnd.ms-asf.xml
8387-rw-r--r-- root root 3299 ./usr/share/mime/application/vnd.ms-cab-compressed.xml
8388-rw-r--r-- root root 2619 ./usr/share/mime/application/vnd.ms-excel.addin.macroenabled.12.xml
8389-rw-r--r-- root root 3407 ./usr/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml
8390-rw-r--r-- root root 3330 ./usr/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml
8391-rw-r--r-- root root 2685 ./usr/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml
8392-rw-r--r-- root root 3525 ./usr/share/mime/application/vnd.ms-excel.xml
8393-rw-r--r-- root root 3011 ./usr/share/mime/application/vnd.ms-htmlhelp.xml
8394-rw-r--r-- root root 2734 ./usr/share/mime/application/vnd.ms-powerpoint.addin.macroenabled.12.xml
8395-rw-r--r-- root root 3491 ./usr/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml
8396-rw-r--r-- root root 2420 ./usr/share/mime/application/vnd.ms-powerpoint.slide.macroenabled.12.xml
8397-rw-r--r-- root root 3485 ./usr/share/mime/application/vnd.ms-powerpoint.slideshow.macroenabled.12.xml
8398-rw-r--r-- root root 2906 ./usr/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml
8399-rw-r--r-- root root 3569 ./usr/share/mime/application/vnd.ms-powerpoint.xml
8400-rw-r--r-- root root 2757 ./usr/share/mime/application/vnd.ms-publisher.xml
8401-rw-r--r-- root root 2977 ./usr/share/mime/application/vnd.ms-tnef.xml
8402-rw-r--r-- root root 1161 ./usr/share/mime/application/vnd.ms-visio.drawing.macroenabled.main+xml.xml
8403-rw-r--r-- root root 1148 ./usr/share/mime/application/vnd.ms-visio.drawing.main+xml.xml
8404-rw-r--r-- root root 1163 ./usr/share/mime/application/vnd.ms-visio.stencil.macroenabled.main+xml.xml
8405-rw-r--r-- root root 1150 ./usr/share/mime/application/vnd.ms-visio.stencil.main+xml.xml
8406-rw-r--r-- root root 1226 ./usr/share/mime/application/vnd.ms-visio.template.macroenabled.main+xml.xml
8407-rw-r--r-- root root 1213 ./usr/share/mime/application/vnd.ms-visio.template.main+xml.xml
8408-rw-r--r-- root root 3004 ./usr/share/mime/application/vnd.ms-word.document.macroenabled.12.xml
8409-rw-r--r-- root root 2541 ./usr/share/mime/application/vnd.ms-word.template.macroenabled.12.xml
8410-rw-r--r-- root root 3639 ./usr/share/mime/application/vnd.ms-works.xml
8411-rw-r--r-- root root 3039 ./usr/share/mime/application/vnd.ms-wpl.xml
8412-rw-r--r-- root root 2927 ./usr/share/mime/application/vnd.nintendo.snes.rom.xml
8413-rw-r--r-- root root 2760 ./usr/share/mime/application/vnd.oasis.opendocument.chart-template.xml
8414-rw-r--r-- root root 2879 ./usr/share/mime/application/vnd.oasis.opendocument.chart.xml
8415-rw-r--r-- root root 3262 ./usr/share/mime/application/vnd.oasis.opendocument.database.xml
8416-rw-r--r-- root root 2776 ./usr/share/mime/application/vnd.oasis.opendocument.formula-template.xml
8417-rw-r--r-- root root 2954 ./usr/share/mime/application/vnd.oasis.opendocument.formula.xml
8418-rw-r--r-- root root 3235 ./usr/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml
8419-rw-r--r-- root root 2958 ./usr/share/mime/application/vnd.oasis.opendocument.graphics-template.xml
8420-rw-r--r-- root root 2918 ./usr/share/mime/application/vnd.oasis.opendocument.graphics.xml
8421-rw-r--r-- root root 2956 ./usr/share/mime/application/vnd.oasis.opendocument.image.xml
8422-rw-r--r-- root root 3480 ./usr/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml
8423-rw-r--r-- root root 2974 ./usr/share/mime/application/vnd.oasis.opendocument.presentation-template.xml
8424-rw-r--r-- root root 3204 ./usr/share/mime/application/vnd.oasis.opendocument.presentation.xml
8425-rw-r--r-- root root 3506 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml
8426-rw-r--r-- root root 2970 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml
8427-rw-r--r-- root root 3226 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml
8428-rw-r--r-- root root 3352 ./usr/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml
8429-rw-r--r-- root root 3033 ./usr/share/mime/application/vnd.oasis.opendocument.text-master.xml
8430-rw-r--r-- root root 2956 ./usr/share/mime/application/vnd.oasis.opendocument.text-template.xml
8431-rw-r--r-- root root 2925 ./usr/share/mime/application/vnd.oasis.opendocument.text-web.xml
8432-rw-r--r-- root root 3024 ./usr/share/mime/application/vnd.oasis.opendocument.text.xml
8433-rw-r--r-- root root 3524 ./usr/share/mime/application/vnd.openofficeorg.extension.xml
8434-rw-r--r-- root root 3394 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml
8435-rw-r--r-- root root 3257 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml
8436-rw-r--r-- root root 2932 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml
8437-rw-r--r-- root root 3563 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml
8438-rw-r--r-- root root 3250 ./usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml
8439-rw-r--r-- root root 3378 ./usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml
8440-rw-r--r-- root root 2957 ./usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml
8441-rw-r--r-- root root 3210 ./usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml
8442-rw-r--r-- root root 3457 ./usr/share/mime/application/vnd.palm.xml
8443-rw-r--r-- root root 2983 ./usr/share/mime/application/vnd.rar.xml
8444-rw-r--r-- root root 3320 ./usr/share/mime/application/vnd.rn-realmedia.xml
8445-rw-r--r-- root root 1759 ./usr/share/mime/application/vnd.snap.xml
8446-rw-r--r-- root root 3196 ./usr/share/mime/application/vnd.sqlite3.xml
8447-rw-r--r-- root root 1139 ./usr/share/mime/application/vnd.squashfs.xml
8448-rw-r--r-- root root 3467 ./usr/share/mime/application/vnd.stardivision.calc.xml
8449-rw-r--r-- root root 3228 ./usr/share/mime/application/vnd.stardivision.chart.xml
8450-rw-r--r-- root root 3156 ./usr/share/mime/application/vnd.stardivision.draw.xml
8451-rw-r--r-- root root 3619 ./usr/share/mime/application/vnd.stardivision.impress.xml
8452-rw-r--r-- root root 3181 ./usr/share/mime/application/vnd.stardivision.mail.xml
8453-rw-r--r-- root root 3090 ./usr/share/mime/application/vnd.stardivision.math.xml
8454-rw-r--r-- root root 3489 ./usr/share/mime/application/vnd.stardivision.writer.xml
8455-rw-r--r-- root root 3534 ./usr/share/mime/application/vnd.sun.xml.calc.template.xml
8456-rw-r--r-- root root 3762 ./usr/share/mime/application/vnd.sun.xml.calc.xml
8457-rw-r--r-- root root 3513 ./usr/share/mime/application/vnd.sun.xml.draw.template.xml
8458-rw-r--r-- root root 3438 ./usr/share/mime/application/vnd.sun.xml.draw.xml
8459-rw-r--r-- root root 3704 ./usr/share/mime/application/vnd.sun.xml.impress.template.xml
8460-rw-r--r-- root root 4000 ./usr/share/mime/application/vnd.sun.xml.impress.xml
8461-rw-r--r-- root root 3488 ./usr/share/mime/application/vnd.sun.xml.math.xml
8462-rw-r--r-- root root 4341 ./usr/share/mime/application/vnd.sun.xml.writer.global.xml
8463-rw-r--r-- root root 3819 ./usr/share/mime/application/vnd.sun.xml.writer.template.xml
8464-rw-r--r-- root root 3800 ./usr/share/mime/application/vnd.sun.xml.writer.xml
8465-rw-r--r-- root root 2835 ./usr/share/mime/application/vnd.symbian.install.xml
8466-rw-r--r-- root root 1126 ./usr/share/mime/application/vnd.tcpdump.pcap.xml
8467-rw-r--r-- root root 3046 ./usr/share/mime/application/vnd.visio.xml
8468-rw-r--r-- root root 3633 ./usr/share/mime/application/vnd.wordperfect.xml
8469-rw-r--r-- root root 1189 ./usr/share/mime/application/vnd.youtube.yt.xml
8470-rw-r--r-- root root 2575 ./usr/share/mime/application/winhlp.xml
8471-rw-r--r-- root root 2942 ./usr/share/mime/application/x-7z-compressed.xml
8472-rw-r--r-- root root 3303 ./usr/share/mime/application/x-abiword.xml
8473-rw-r--r-- root root 2785 ./usr/share/mime/application/x-ace.xml
8474-rw-r--r-- root root 2890 ./usr/share/mime/application/x-alz.xml
8475-rw-r--r-- root root 2185 ./usr/share/mime/application/x-amiga-disk-format.xml
8476-rw-r--r-- root root 3479 ./usr/share/mime/application/x-amipro.xml
8477-rw-r--r-- root root 3122 ./usr/share/mime/application/x-aportisdoc.xml
8478-rw-r--r-- root root 2699 ./usr/share/mime/application/x-apple-diskimage.xml
8479-rw-r--r-- root root 346 ./usr/share/mime/application/x-appleworks-document.xml
8480-rw-r--r-- root root 3940 ./usr/share/mime/application/x-applix-spreadsheet.xml
8481-rw-r--r-- root root 3574 ./usr/share/mime/application/x-applix-word.xml
8482-rw-r--r-- root root 2804 ./usr/share/mime/application/x-archive.xml
8483-rw-r--r-- root root 2759 ./usr/share/mime/application/x-arc.xml
8484-rw-r--r-- root root 3010 ./usr/share/mime/application/x-arj.xml
8485-rw-r--r-- root root 2899 ./usr/share/mime/application/x-asp.xml
8486-rw-r--r-- root root 1019 ./usr/share/mime/application/x-atari-2600-rom.xml
8487-rw-r--r-- root root 1019 ./usr/share/mime/application/x-atari-7800-rom.xml
8488-rw-r--r-- root root 1021 ./usr/share/mime/application/x-atari-lynx-rom.xml
8489-rw-r--r-- root root 3084 ./usr/share/mime/application/x-awk.xml
8490-rw-r--r-- root root 3225 ./usr/share/mime/application/x-bcpio.xml
8491-rw-r--r-- root root 3540 ./usr/share/mime/application/x-bittorrent.xml
8492-rw-r--r-- root root 3102 ./usr/share/mime/application/x-blender.xml
8493-rw-r--r-- root root 2357 ./usr/share/mime/application/x-bsdiff.xml
8494-rw-r--r-- root root 4099 ./usr/share/mime/application/x-bzdvi.xml
8495-rw-r--r-- root root 3945 ./usr/share/mime/application/x-bzip-compressed-tar.xml
8496-rw-r--r-- root root 2986 ./usr/share/mime/application/x-bzip.xml
8497-rw-r--r-- root root 3880 ./usr/share/mime/application/x-bzpdf.xml
8498-rw-r--r-- root root 4236 ./usr/share/mime/application/x-bzpostscript.xml
8499-rw-r--r-- root root 3190 ./usr/share/mime/application/x-cb7.xml
8500-rw-r--r-- root root 3180 ./usr/share/mime/application/x-cbt.xml
8501-rw-r--r-- root root 2858 ./usr/share/mime/application/x-ccmx.xml
8502-rw-r--r-- root root 3292 ./usr/share/mime/application/x-cd-image.xml
8503-rw-r--r-- root root 3136 ./usr/share/mime/application/x-cdrdao-toc.xml
8504-rw-r--r-- root root 1099 ./usr/share/mime/application/x-cisco-vpn-settings.xml
8505-rw-r--r-- root root 3042 ./usr/share/mime/application/x-class-file.xml
8506-rw-r--r-- root root 3786 ./usr/share/mime/application/x-compressed-tar.xml
8507-rw-r--r-- root root 3414 ./usr/share/mime/application/x-compress.xml
8508-rw-r--r-- root root 3630 ./usr/share/mime/application/x-core.xml
8509-rw-r--r-- root root 4192 ./usr/share/mime/application/x-cpio-compressed.xml
8510-rw-r--r-- root root 3028 ./usr/share/mime/application/x-cpio.xml
8511-rw-r--r-- root root 3273 ./usr/share/mime/application/x-csh.xml
8512-rw-r--r-- root root 3240 ./usr/share/mime/application/x-cue.xml
8513-rw-r--r-- root root 2785 ./usr/share/mime/application/x-dar.xml
8514-rw-r--r-- root root 3031 ./usr/share/mime/application/x-dbf.xml
8515-rw-r--r-- root root 1136 ./usr/share/mime/application/x-dc-rom.xml
8516-rw-r--r-- root root 1241 ./usr/share/mime/application/x-designer.xml
8517-rw-r--r-- root root 3922 ./usr/share/mime/application/x-desktop.xml
8518-rw-r--r-- root root 3052 ./usr/share/mime/application/x-dia-diagram.xml
8519-rw-r--r-- root root 2405 ./usr/share/mime/application/x-dia-shape.xml
8520-rw-r--r-- root root 3273 ./usr/share/mime/application/x-docbook+xml.xml
8521-rw-r--r-- root root 1051 ./usr/share/mime/application/x-doom-wad.xml
8522-rw-r--r-- root root 3183 ./usr/share/mime/application/x-dvi.xml
8523-rw-r--r-- root root 3473 ./usr/share/mime/application/x-egon.xml
8524-rw-r--r-- root root 3341 ./usr/share/mime/application/x-e-theme.xml
8525-rw-r--r-- root root 2837 ./usr/share/mime/application/x-executable.xml
8526-rw-r--r-- root root 2172 ./usr/share/mime/application/x-fds-disk.xml
8527-rw-r--r-- root root 3142 ./usr/share/mime/application/x-fictionbook+xml.xml
8528-rw-r--r-- root root 3137 ./usr/share/mime/application/x-fluid.xml
8529-rw-r--r-- root root 3465 ./usr/share/mime/application/x-font-afm.xml
8530-rw-r--r-- root root 2866 ./usr/share/mime/application/x-font-bdf.xml
8531-rw-r--r-- root root 2854 ./usr/share/mime/application/x-font-dos.xml
8532-rw-r--r-- root root 3612 ./usr/share/mime/application/x-font-framemaker.xml
8533-rw-r--r-- root root 3018 ./usr/share/mime/application/x-font-libgrx.xml
8534-rw-r--r-- root root 3800 ./usr/share/mime/application/x-font-linux-psf.xml
8535-rw-r--r-- root root 2918 ./usr/share/mime/application/x-font-pcf.xml
8536-rw-r--r-- root root 3031 ./usr/share/mime/application/x-font-speedo.xml
8537-rw-r--r-- root root 3244 ./usr/share/mime/application/x-font-sunos-news.xml
8538-rw-r--r-- root root 3352 ./usr/share/mime/application/x-font-tex-tfm.xml
8539-rw-r--r-- root root 2839 ./usr/share/mime/application/x-font-tex.xml
8540-rw-r--r-- root root 3183 ./usr/share/mime/application/x-font-ttx.xml
8541-rw-r--r-- root root 2200 ./usr/share/mime/application/x-font-type1.xml
8542-rw-r--r-- root root 2741 ./usr/share/mime/application/x-font-vfont.xml
8543-rw-r--r-- root root 1959 ./usr/share/mime/application/x-gameboy-color-rom.xml
8544-rw-r--r-- root root 2895 ./usr/share/mime/application/x-gameboy-rom.xml
8545-rw-r--r-- root root 2521 ./usr/share/mime/application/x-gamecube-rom.xml
8546-rw-r--r-- root root 1722 ./usr/share/mime/application/x-gamegear-rom.xml
8547-rw-r--r-- root root 3217 ./usr/share/mime/application/x-gba-rom.xml
8548-rw-r--r-- root root 3125 ./usr/share/mime/application/x-gdbm.xml
8549-rw-r--r-- root root 3528 ./usr/share/mime/application/x-gedcom.xml
8550-rw-r--r-- root root 1892 ./usr/share/mime/application/x-genesis-32x-rom.xml
8551-rw-r--r-- root root 2901 ./usr/share/mime/application/x-genesis-rom.xml
8552-rw-r--r-- root root 4594 ./usr/share/mime/application/x-gettext-translation.xml
8553-rw-r--r-- root root 3040 ./usr/share/mime/application/x-glade.xml
8554-rw-r--r-- root root 3208 ./usr/share/mime/application/x-gnucash.xml
8555-rw-r--r-- root root 3362 ./usr/share/mime/application/x-gnumeric.xml
8556-rw-r--r-- root root 3130 ./usr/share/mime/application/x-gnuplot.xml
8557-rw-r--r-- root root 2839 ./usr/share/mime/application/x-go-sgf.xml
8558-rw-r--r-- root root 3559 ./usr/share/mime/application/x-graphite.xml
8559-rw-r--r-- root root 1253 ./usr/share/mime/application/x-gtk-builder.xml
8560-rw-r--r-- root root 3098 ./usr/share/mime/application/x-gtktalog.xml
8561-rw-r--r-- root root 4096 ./usr/share/mime/application/x-gzdvi.xml
8562-rw-r--r-- root root 4598 ./usr/share/mime/application/x-gz-font-linux-psf.xml
8563-rw-r--r-- root root 3871 ./usr/share/mime/application/x-gzpdf.xml
8564-rw-r--r-- root root 4380 ./usr/share/mime/application/x-gzpostscript.xml
8565-rw-r--r-- root root 3146 ./usr/share/mime/application/x-hdf.xml
8566-rw-r--r-- root root 2102 ./usr/share/mime/application/x-hfe-floppy-image.xml
8567-rw-r--r-- root root 3048 ./usr/share/mime/application/xhtml+xml.xml
8568-rw-r--r-- root root 3437 ./usr/share/mime/application/x-hwp.xml
8569-rw-r--r-- root root 3922 ./usr/share/mime/application/x-hwt.xml
8570-rw-r--r-- root root 3805 ./usr/share/mime/application/x-ica.xml
8571-rw-r--r-- root root 2088 ./usr/share/mime/application/x-iff.xml
8572-rw-r--r-- root root 2959 ./usr/share/mime/application/x-ipod-firmware.xml
8573-rw-r--r-- root root 1098 ./usr/share/mime/application/x-ipynb+json.xml
8574-rw-r--r-- root root 2355 ./usr/share/mime/application/x-iso9660-appimage.xml
8575-rw-r--r-- root root 3393 ./usr/share/mime/application/x-it87.xml
8576-rw-r--r-- root root 2779 ./usr/share/mime/application/x-iwork-keynote-sffkey.xml
8577-rw-r--r-- root root 2956 ./usr/share/mime/application/x-java-archive.xml
8578-rw-r--r-- root root 3006 ./usr/share/mime/application/x-java-jce-keystore.xml
8579-rw-r--r-- root root 2826 ./usr/share/mime/application/x-java-jnlp-file.xml
8580-rw-r--r-- root root 2810 ./usr/share/mime/application/x-java-keystore.xml
8581-rw-r--r-- root root 3097 ./usr/share/mime/application/x-java-pack200.xml
8582-rw-r--r-- root root 2902 ./usr/share/mime/application/x-java.xml
8583-rw-r--r-- root root 3090 ./usr/share/mime/application/x-jbuilder-project.xml
8584-rw-r--r-- root root 3023 ./usr/share/mime/application/x-karbon.xml
8585-rw-r--r-- root root 2961 ./usr/share/mime/application/x-kchart.xml
8586-rw-r--r-- root root 985 ./usr/share/mime/application/x-kexi-connectiondata.xml
8587-rw-r--r-- root root 963 ./usr/share/mime/application/x-kexiproject-shortcut.xml
8588-rw-r--r-- root root 1139 ./usr/share/mime/application/x-kexiproject-sqlite2.xml
8589-rw-r--r-- root root 1235 ./usr/share/mime/application/x-kexiproject-sqlite3.xml
8590-rw-r--r-- root root 3059 ./usr/share/mime/application/x-kformula.xml
8591-rw-r--r-- root root 3235 ./usr/share/mime/application/x-killustrator.xml
8592-rw-r--r-- root root 3186 ./usr/share/mime/application/x-kivio.xml
8593-rw-r--r-- root root 2970 ./usr/share/mime/application/x-kontour.xml
8594-rw-r--r-- root root 3112 ./usr/share/mime/application/x-kpovmodeler.xml
8595-rw-r--r-- root root 3446 ./usr/share/mime/application/x-kpresenter.xml
8596-rw-r--r-- root root 2978 ./usr/share/mime/application/x-krita.xml
8597-rw-r--r-- root root 3981 ./usr/share/mime/application/x-kspread-crypt.xml
8598-rw-r--r-- root root 3288 ./usr/share/mime/application/x-kspread.xml
8599-rw-r--r-- root root 3087 ./usr/share/mime/application/x-ksysv-package.xml
8600-rw-r--r-- root root 2981 ./usr/share/mime/application/x-kugar.xml
8601-rw-r--r-- root root 3680 ./usr/share/mime/application/x-kword-crypt.xml
8602-rw-r--r-- root root 3054 ./usr/share/mime/application/x-kword.xml
8603-rw-r--r-- root root 2937 ./usr/share/mime/application/x-lha.xml
8604-rw-r--r-- root root 2788 ./usr/share/mime/application/x-lhz.xml
8605-rw-r--r-- root root 3529 ./usr/share/mime/application/xliff+xml.xml
8606-rw-r--r-- root root 3509 ./usr/share/mime/application/x-lrzip-compressed-tar.xml
8607-rw-r--r-- root root 2586 ./usr/share/mime/application/x-lrzip.xml
8608-rw-r--r-- root root 2932 ./usr/share/mime/application/x-lyx.xml
8609-rw-r--r-- root root 2407 ./usr/share/mime/application/x-lz4-compressed-tar.xml
8610-rw-r--r-- root root 2047 ./usr/share/mime/application/x-lz4.xml
8611-rw-r--r-- root root 2439 ./usr/share/mime/application/x-lzip-compressed-tar.xml
8612-rw-r--r-- root root 2538 ./usr/share/mime/application/x-lzip.xml
8613-rw-r--r-- root root 3787 ./usr/share/mime/application/x-lzma-compressed-tar.xml
8614-rw-r--r-- root root 2879 ./usr/share/mime/application/x-lzma.xml
8615-rw-r--r-- root root 2858 ./usr/share/mime/application/x-lzop.xml
8616-rw-r--r-- root root 2450 ./usr/share/mime/application/x-lzpdf.xml
8617-rw-r--r-- root root 2573 ./usr/share/mime/application/x-m4.xml
8618-rw-r--r-- root root 3552 ./usr/share/mime/application/x-macbinary.xml
8619-rw-r--r-- root root 3595 ./usr/share/mime/application/x-magicpoint.xml
8620-rw-r--r-- root root 3076 ./usr/share/mime/application/x-markaby.xml
8621-rw-r--r-- root root 2865 ./usr/share/mime/application/x-matroska.xml
8622-rw-r--r-- root root 3816 ./usr/share/mime/application/x-mif.xml
8623-rw-r--r-- root root 2522 ./usr/share/mime/application/x-mimearchive.xml
8624-rw-r--r-- root root 2842 ./usr/share/mime/application/xml-dtd.xml
8625-rw-r--r-- root root 3524 ./usr/share/mime/application/xml-external-parsed-entity.xml
8626-rw-r--r-- root root 3038 ./usr/share/mime/application/xml.xml
8627-rw-r--r-- root root 2798 ./usr/share/mime/application/x-mobipocket-ebook.xml
8628-rw-r--r-- root root 3272 ./usr/share/mime/application/x-mozilla-bookmarks.xml
8629-rw-r--r-- root root 3670 ./usr/share/mime/application/x-ms-dos-executable.xml
8630-rw-r--r-- root root 3395 ./usr/share/mime/application/x-msi.xml
8631-rw-r--r-- root root 1046 ./usr/share/mime/application/x-ms-wim.xml
8632-rw-r--r-- root root 3069 ./usr/share/mime/application/x-mswinurl.xml
8633-rw-r--r-- root root 2816 ./usr/share/mime/application/x-mswrite.xml
8634-rw-r--r-- root root 2631 ./usr/share/mime/application/x-msx-rom.xml
8635-rw-r--r-- root root 2950 ./usr/share/mime/application/x-n64-rom.xml
8636-rw-r--r-- root root 3171 ./usr/share/mime/application/x-nautilus-link.xml
8637-rw-r--r-- root root 3348 ./usr/share/mime/application/x-navi-animation.xml
8638-rw-r--r-- root root 1852 ./usr/share/mime/application/x-neo-geo-pocket-color-rom.xml
8639-rw-r--r-- root root 1874 ./usr/share/mime/application/x-neo-geo-pocket-rom.xml
8640-rw-r--r-- root root 2681 ./usr/share/mime/application/x-nes-rom.xml
8641-rw-r--r-- root root 3540 ./usr/share/mime/application/x-netcdf.xml
8642-rw-r--r-- root root 3587 ./usr/share/mime/application/x-netshow-channel.xml
8643-rw-r--r-- root root 2904 ./usr/share/mime/application/x-nintendo-ds-rom.xml
8644-rw-r--r-- root root 2651 ./usr/share/mime/application/x-nzb.xml
8645-rw-r--r-- root root 2816 ./usr/share/mime/application/x-object.xml
8646-rw-r--r-- root root 3410 ./usr/share/mime/application/x-oleo.xml
8647-rw-r--r-- root root 3999 ./usr/share/mime/application/x-ole-storage.xml
8648-rw-r--r-- root root 1221 ./usr/share/mime/application/x-pagemaker.xml
8649-rw-r--r-- root root 2785 ./usr/share/mime/application/x-pak.xml
8650-rw-r--r-- root root 3058 ./usr/share/mime/application/x-par2.xml
8651-rw-r--r-- root root 2817 ./usr/share/mime/application/x-partial-download.xml
8652-rw-r--r-- root root 2149 ./usr/share/mime/application/x-pc-engine-rom.xml
8653-rw-r--r-- root root 3072 ./usr/share/mime/application/x-pef-executable.xml
8654-rw-r--r-- root root 3209 ./usr/share/mime/application/x-perl.xml
8655-rw-r--r-- root root 3050 ./usr/share/mime/application/x-php.xml
8656-rw-r--r-- root root 3264 ./usr/share/mime/application/x-pkcs7-certificates.xml
8657-rw-r--r-- root root 3383 ./usr/share/mime/application/x-planperfect.xml
8658-rw-r--r-- root root 2969 ./usr/share/mime/application/x-pocket-word.xml
8659-rw-r--r-- root root 3489 ./usr/share/mime/application/x-profile.xml
8660-rw-r--r-- root root 3521 ./usr/share/mime/application/x-pw.xml
8661-rw-r--r-- root root 3180 ./usr/share/mime/application/x-python-bytecode.xml
8662-rw-r--r-- root root 407 ./usr/share/mime/application/x-qemu-disk.xml
8663-rw-r--r-- root root 2164 ./usr/share/mime/application/x-qpress.xml
8664-rw-r--r-- root root 2458 ./usr/share/mime/application/x-qtiplot.xml
8665-rw-r--r-- root root 3546 ./usr/share/mime/application/x-quattropro.xml
8666-rw-r--r-- root root 1258 ./usr/share/mime/application/x-quicktime-media-link.xml
8667-rw-r--r-- root root 3189 ./usr/share/mime/application/x-qw.xml
8668-rw-r--r-- root root 2444 ./usr/share/mime/application/x-raw-disk-image.xml
8669-rw-r--r-- root root 3223 ./usr/share/mime/application/x-raw-disk-image-xz-compressed.xml
8670-rw-r--r-- root root 1828 ./usr/share/mime/application/x-raw-floppy-disk-image.xml
8671-rw-r--r-- root root 2067 ./usr/share/mime/application/x-riff.xml
8672-rw-r--r-- root root 2780 ./usr/share/mime/application/x-rpm.xml
8673-rw-r--r-- root root 2941 ./usr/share/mime/application/x-ruby.xml
8674-rw-r--r-- root root 3058 ./usr/share/mime/application/x-sami.xml
8675-rw-r--r-- root root 2519 ./usr/share/mime/application/x-saturn-rom.xml
8676-rw-r--r-- root root 3354 ./usr/share/mime/application/x-sc.xml
8677-rw-r--r-- root root 2140 ./usr/share/mime/application/x-sega-cd-rom.xml
8678-rw-r--r-- root root 1752 ./usr/share/mime/application/x-sega-pico-rom.xml
8679-rw-r--r-- root root 1656 ./usr/share/mime/application/x-sg1000-rom.xml
8680-rw-r--r-- root root 3576 ./usr/share/mime/application/x-shared-library-la.xml
8681-rw-r--r-- root root 3341 ./usr/share/mime/application/x-sharedlib.xml
8682-rw-r--r-- root root 3018 ./usr/share/mime/application/x-shar.xml
8683-rw-r--r-- root root 3191 ./usr/share/mime/application/x-shellscript.xml
8684-rw-r--r-- root root 2898 ./usr/share/mime/application/x-shorten.xml
8685-rw-r--r-- root root 3125 ./usr/share/mime/application/x-siag.xml
8686-rw-r--r-- root root 3067 ./usr/share/mime/application/x-slp.xml
8687-rw-r--r-- root root 3271 ./usr/share/mime/application/xslt+xml.xml
8688-rw-r--r-- root root 2868 ./usr/share/mime/application/x-smaf.xml
8689-rw-r--r-- root root 1828 ./usr/share/mime/application/x-sms-rom.xml
8690-rw-r--r-- root root 2563 ./usr/share/mime/application/x-source-rpm.xml
8691-rw-r--r-- root root 3445 ./usr/share/mime/application/xspf+xml.xml
8692-rw-r--r-- root root 1201 ./usr/share/mime/application/x-spss-por.xml
8693-rw-r--r-- root root 1181 ./usr/share/mime/application/x-spss-sav.xml
8694-rw-r--r-- root root 3154 ./usr/share/mime/application/x-sqlite2.xml
8695-rw-r--r-- root root 3027 ./usr/share/mime/application/x-stuffit.xml
8696-rw-r--r-- root root 3069 ./usr/share/mime/application/x-subrip.xml
8697-rw-r--r-- root root 3146 ./usr/share/mime/application/x-sv4cpio.xml
8698-rw-r--r-- root root 3637 ./usr/share/mime/application/x-sv4crc.xml
8699-rw-r--r-- root root 2862 ./usr/share/mime/application/x-t602.xml
8700-rw-r--r-- root root 2908 ./usr/share/mime/application/x-tar.xml
8701-rw-r--r-- root root 3451 ./usr/share/mime/application/x-tarz.xml
8702-rw-r--r-- root root 3391 ./usr/share/mime/application/x-tex-gf.xml
8703-rw-r--r-- root root 3527 ./usr/share/mime/application/x-tex-pk.xml
8704-rw-r--r-- root root 2916 ./usr/share/mime/application/x-tgif.xml
8705-rw-r--r-- root root 2604 ./usr/share/mime/application/x-theme.xml
8706-rw-r--r-- root root 2013 ./usr/share/mime/application/x-thomson-cartridge-memo7.xml
8707-rw-r--r-- root root 1776 ./usr/share/mime/application/x-thomson-cassette.xml
8708-rw-r--r-- root root 2342 ./usr/share/mime/application/x-thomson-sap-image.xml
8709-rw-r--r-- root root 3216 ./usr/share/mime/application/x-toutdoux.xml
8710-rw-r--r-- root root 3148 ./usr/share/mime/application/x-trash.xml
8711-rw-r--r-- root root 3887 ./usr/share/mime/application/x-troff-man-compressed.xml
8712-rw-r--r-- root root 2521 ./usr/share/mime/application/x-troff-man.xml
8713-rw-r--r-- root root 3731 ./usr/share/mime/application/x-tzo.xml
8714-rw-r--r-- root root 3110 ./usr/share/mime/application/x-ufraw.xml
8715-rw-r--r-- root root 2836 ./usr/share/mime/application/x-ustar.xml
8716-rw-r--r-- root root 1666 ./usr/share/mime/application/x-virtual-boy-rom.xml
8717-rw-r--r-- root root 3242 ./usr/share/mime/application/x-wais-source.xml
8718-rw-r--r-- root root 2456 ./usr/share/mime/application/x-wii-rom.xml
8719-rw-r--r-- root root 1998 ./usr/share/mime/application/x-wii-wad.xml
8720-rw-r--r-- root root 3595 ./usr/share/mime/application/x-windows-themepack.xml
8721-rw-r--r-- root root 1989 ./usr/share/mime/application/x-wonderswan-color-rom.xml
8722-rw-r--r-- root root 1825 ./usr/share/mime/application/x-wonderswan-rom.xml
8723-rw-r--r-- root root 3782 ./usr/share/mime/application/x-wpg.xml
8724-rw-r--r-- root root 2498 ./usr/share/mime/application/x-wwf.xml
8725-rw-r--r-- root root 4757 ./usr/share/mime/application/x-x509-ca-cert.xml
8726-rw-r--r-- root root 1890 ./usr/share/mime/application/x-xar.xml
8727-rw-r--r-- root root 3167 ./usr/share/mime/application/x-xbel.xml
8728-rw-r--r-- root root 3294 ./usr/share/mime/application/x-xpinstall.xml
8729-rw-r--r-- root root 3373 ./usr/share/mime/application/x-xz-compressed-tar.xml
8730-rw-r--r-- root root 3269 ./usr/share/mime/application/x-xzpdf.xml
8731-rw-r--r-- root root 2449 ./usr/share/mime/application/x-xz.xml
8732-rw-r--r-- root root 2822 ./usr/share/mime/application/x-yaml.xml
8733-rw-r--r-- root root 2936 ./usr/share/mime/application/x-zerosize.xml
8734-rw-r--r-- root root 2912 ./usr/share/mime/application/x-zip-compressed-fb2.xml
8735-rw-r--r-- root root 2818 ./usr/share/mime/application/x-zoo.xml
8736-rw-r--r-- root root 1995 ./usr/share/mime/application/x-zstd-compressed-tar.xml
8737-rw-r--r-- root root 2901 ./usr/share/mime/application/zip.xml
8738-rw-r--r-- root root 2084 ./usr/share/mime/application/zlib.xml
8739-rw-r--r-- root root 1464 ./usr/share/mime/application/zstd.xml
8740drwxr-xr-x root root 4096 ./usr/share/mime/audio
8741-rw-r--r-- root root 2202 ./usr/share/mime/audio/aac.xml
8742-rw-r--r-- root root 3368 ./usr/share/mime/audio/ac3.xml
8743-rw-r--r-- root root 2944 ./usr/share/mime/audio/amr-wb.xml
8744-rw-r--r-- root root 2771 ./usr/share/mime/audio/amr.xml
8745-rw-r--r-- root root 1023 ./usr/share/mime/audio/annodex.xml
8746-rw-r--r-- root root 3151 ./usr/share/mime/audio/basic.xml
8747-rw-r--r-- root root 2798 ./usr/share/mime/audio/flac.xml
8748-rw-r--r-- root root 2876 ./usr/share/mime/audio/midi.xml
8749-rw-r--r-- root root 2623 ./usr/share/mime/audio/mp2.xml
8750-rw-r--r-- root root 2884 ./usr/share/mime/audio/mp4.xml
8751-rw-r--r-- root root 2936 ./usr/share/mime/audio/mpeg.xml
8752-rw-r--r-- root root 1008 ./usr/share/mime/audio/ogg.xml
8753-rw-r--r-- root root 3220 ./usr/share/mime/audio/prs.sid.xml
8754-rw-r--r-- root root 1610 ./usr/share/mime/audio/usac.xml
8755-rw-r--r-- root root 2180 ./usr/share/mime/audio/vnd.dts.hd.xml
8756-rw-r--r-- root root 2055 ./usr/share/mime/audio/vnd.dts.xml
8757-rw-r--r-- root root 3202 ./usr/share/mime/audio/vnd.rn-realaudio.xml
8758-rw-r--r-- root root 2422 ./usr/share/mime/audio/webm.xml
8759-rw-r--r-- root root 2713 ./usr/share/mime/audio/x-adpcm.xml
8760-rw-r--r-- root root 3066 ./usr/share/mime/audio/x-aifc.xml
8761-rw-r--r-- root root 3573 ./usr/share/mime/audio/x-aiff.xml
8762-rw-r--r-- root root 2766 ./usr/share/mime/audio/x-amzxml.xml
8763-rw-r--r-- root root 2758 ./usr/share/mime/audio/x-ape.xml
8764-rw-r--r-- root root 2958 ./usr/share/mime/audio/x-flac+ogg.xml
8765-rw-r--r-- root root 2864 ./usr/share/mime/audio/x-gsm.xml
8766-rw-r--r-- root root 1076 ./usr/share/mime/audio/x-iriver-pla.xml
8767-rw-r--r-- root root 3344 ./usr/share/mime/audio/x-it.xml
8768-rw-r--r-- root root 3184 ./usr/share/mime/audio/x-m4b.xml
8769-rw-r--r-- root root 1002 ./usr/share/mime/audio/x-m4r.xml
8770-rw-r--r-- root root 2979 ./usr/share/mime/audio/x-matroska.xml
8771-rw-r--r-- root root 3017 ./usr/share/mime/audio/x-minipsf.xml
8772-rw-r--r-- root root 3256 ./usr/share/mime/audio/x-mo3.xml
8773-rw-r--r-- root root 3640 ./usr/share/mime/audio/x-mod.xml
8774-rw-r--r-- root root 3601 ./usr/share/mime/audio/x-mpegurl.xml
8775-rw-r--r-- root root 3833 ./usr/share/mime/audio/x-ms-asx.xml
8776-rw-r--r-- root root 3148 ./usr/share/mime/audio/x-ms-wma.xml
8777-rw-r--r-- root root 2864 ./usr/share/mime/audio/x-musepack.xml
8778-rw-r--r-- root root 2000 ./usr/share/mime/audio/x-opus+ogg.xml
8779-rw-r--r-- root root 1778 ./usr/share/mime/audio/x-pn-audibleaudio.xml
8780-rw-r--r-- root root 3385 ./usr/share/mime/audio/x-psflib.xml
8781-rw-r--r-- root root 2682 ./usr/share/mime/audio/x-psf.xml
8782-rw-r--r-- root root 2764 ./usr/share/mime/audio/x-riff.xml
8783-rw-r--r-- root root 3393 ./usr/share/mime/audio/x-s3m.xml
8784-rw-r--r-- root root 3693 ./usr/share/mime/audio/x-scpls.xml
8785-rw-r--r-- root root 2976 ./usr/share/mime/audio/x-speex+ogg.xml
8786-rw-r--r-- root root 2656 ./usr/share/mime/audio/x-speex.xml
8787-rw-r--r-- root root 3290 ./usr/share/mime/audio/x-stm.xml
8788-rw-r--r-- root root 2930 ./usr/share/mime/audio/x-tta.xml
8789-rw-r--r-- root root 2737 ./usr/share/mime/audio/x-voc.xml
8790-rw-r--r-- root root 3311 ./usr/share/mime/audio/x-vorbis+ogg.xml
8791-rw-r--r-- root root 3641 ./usr/share/mime/audio/x-wavpack-correction.xml
8792-rw-r--r-- root root 2833 ./usr/share/mime/audio/x-wavpack.xml
8793-rw-r--r-- root root 2795 ./usr/share/mime/audio/x-wav.xml
8794-rw-r--r-- root root 3518 ./usr/share/mime/audio/x-xi.xml
8795-rw-r--r-- root root 2751 ./usr/share/mime/audio/x-xmf.xml
8796-rw-r--r-- root root 3360 ./usr/share/mime/audio/x-xm.xml
8797drwxr-xr-x root root 4096 ./usr/share/mime/font
8798-rw-r--r-- root root 1752 ./usr/share/mime/font/collection.xml
8799-rw-r--r-- root root 3213 ./usr/share/mime/font/otf.xml
8800-rw-r--r-- root root 3063 ./usr/share/mime/font/ttf.xml
8801-rw-r--r-- root root 1753 ./usr/share/mime/font/woff2.xml
8802-rw-r--r-- root root 2331 ./usr/share/mime/font/woff.xml
8803-rw-r--r-- root root 17449 ./usr/share/mime/generic-icons
8804-rw-r--r-- root root 29350 ./usr/share/mime/globs
8805-rw-r--r-- root root 32606 ./usr/share/mime/globs2
8806-rw-r--r-- root root 0 ./usr/share/mime/icons
8807drwxr-xr-x root root 4096 ./usr/share/mime/image
8808-rw-r--r-- root root 3325 ./usr/share/mime/image/bmp.xml
8809-rw-r--r-- root root 928 ./usr/share/mime/image/cgm.xml
8810-rw-r--r-- root root 2788 ./usr/share/mime/image/dpx.xml
8811-rw-r--r-- root root 2896 ./usr/share/mime/image/emf.xml
8812-rw-r--r-- root root 1017 ./usr/share/mime/image/fax-g3.xml
8813-rw-r--r-- root root 3011 ./usr/share/mime/image/fits.xml
8814-rw-r--r-- root root 2851 ./usr/share/mime/image/gif.xml
8815-rw-r--r-- root root 1713 ./usr/share/mime/image/heif.xml
8816-rw-r--r-- root root 2775 ./usr/share/mime/image/ief.xml
8817-rw-r--r-- root root 1995 ./usr/share/mime/image/jp2.xml
8818-rw-r--r-- root root 2914 ./usr/share/mime/image/jpeg.xml
8819-rw-r--r-- root root 1890 ./usr/share/mime/image/jpm.xml
8820-rw-r--r-- root root 1891 ./usr/share/mime/image/jpx.xml
8821-rw-r--r-- root root 2043 ./usr/share/mime/image/ktx.xml
8822-rw-r--r-- root root 1030 ./usr/share/mime/image/openraster.xml
8823-rw-r--r-- root root 2775 ./usr/share/mime/image/png.xml
8824-rw-r--r-- root root 1057 ./usr/share/mime/image/rle.xml
8825-rw-r--r-- root root 3368 ./usr/share/mime/image/svg+xml-compressed.xml
8826-rw-r--r-- root root 2782 ./usr/share/mime/image/svg+xml.xml
8827-rw-r--r-- root root 2852 ./usr/share/mime/image/tiff.xml
8828-rw-r--r-- root root 3033 ./usr/share/mime/image/vnd.adobe.photoshop.xml
8829-rw-r--r-- root root 2120 ./usr/share/mime/image/vnd.djvu+multipage.xml
8830-rw-r--r-- root root 2911 ./usr/share/mime/image/vnd.djvu.xml
8831-rw-r--r-- root root 3101 ./usr/share/mime/image/vnd.dwg.xml
8832-rw-r--r-- root root 3301 ./usr/share/mime/image/vnd.dxf.xml
8833-rw-r--r-- root root 2244 ./usr/share/mime/image/vnd.microsoft.icon.xml
8834-rw-r--r-- root root 933 ./usr/share/mime/image/vnd.ms-modi.xml
8835-rw-r--r-- root root 2993 ./usr/share/mime/image/vnd.rn-realpix.xml
8836-rw-r--r-- root root 2775 ./usr/share/mime/image/vnd.wap.wbmp.xml
8837-rw-r--r-- root root 2764 ./usr/share/mime/image/vnd.zbrush.pcx.xml
8838-rw-r--r-- root root 1985 ./usr/share/mime/image/webp.xml
8839-rw-r--r-- root root 2901 ./usr/share/mime/image/wmf.xml
8840-rw-r--r-- root root 3236 ./usr/share/mime/image/x-3ds.xml
8841-rw-r--r-- root root 3249 ./usr/share/mime/image/x-adobe-dng.xml
8842-rw-r--r-- root root 3454 ./usr/share/mime/image/x-applix-graphics.xml
8843-rw-r--r-- root root 3863 ./usr/share/mime/image/x-bzeps.xml
8844-rw-r--r-- root root 3517 ./usr/share/mime/image/x-canon-cr2.xml
8845-rw-r--r-- root root 3480 ./usr/share/mime/image/x-canon-crw.xml
8846-rw-r--r-- root root 3346 ./usr/share/mime/image/x-cmu-raster.xml
8847-rw-r--r-- root root 3323 ./usr/share/mime/image/x-compressed-xcf.xml
8848-rw-r--r-- root root 3230 ./usr/share/mime/image/x-dcraw.xml
8849-rw-r--r-- root root 3119 ./usr/share/mime/image/x-dds.xml
8850-rw-r--r-- root root 2780 ./usr/share/mime/image/x-dib.xml
8851-rw-r--r-- root root 2906 ./usr/share/mime/image/x-eps.xml
8852-rw-r--r-- root root 2720 ./usr/share/mime/image/x-exr.xml
8853-rw-r--r-- root root 2767 ./usr/share/mime/image/x-fpx.xml
8854-rw-r--r-- root root 3445 ./usr/share/mime/image/x-fuji-raf.xml
8855-rw-r--r-- root root 1569 ./usr/share/mime/image/x-gimp-gbr.xml
8856-rw-r--r-- root root 1672 ./usr/share/mime/image/x-gimp-gih.xml
8857-rw-r--r-- root root 1564 ./usr/share/mime/image/x-gimp-pat.xml
8858-rw-r--r-- root root 3863 ./usr/share/mime/image/x-gzeps.xml
8859-rw-r--r-- root root 2927 ./usr/share/mime/image/x-icns.xml
8860-rw-r--r-- root root 3043 ./usr/share/mime/image/x-ilbm.xml
8861-rw-r--r-- root root 2863 ./usr/share/mime/image/x-jng.xml
8862-rw-r--r-- root root 1821 ./usr/share/mime/image/x-jp2-codestream.xml
8863-rw-r--r-- root root 3442 ./usr/share/mime/image/x-kodak-dcr.xml
8864-rw-r--r-- root root 3428 ./usr/share/mime/image/x-kodak-k25.xml
8865-rw-r--r-- root root 3444 ./usr/share/mime/image/x-kodak-kdc.xml
8866-rw-r--r-- root root 3140 ./usr/share/mime/image/x-lwo.xml
8867-rw-r--r-- root root 3058 ./usr/share/mime/image/x-lws.xml
8868-rw-r--r-- root root 3324 ./usr/share/mime/image/x-macpaint.xml
8869-rw-r--r-- root root 3495 ./usr/share/mime/image/x-minolta-mrw.xml
8870-rw-r--r-- root root 2793 ./usr/share/mime/image/x-msod.xml
8871-rw-r--r-- root root 2665 ./usr/share/mime/image/x-niff.xml
8872-rw-r--r-- root root 3442 ./usr/share/mime/image/x-nikon-nef.xml
8873-rw-r--r-- root root 3607 ./usr/share/mime/image/x-olympus-orf.xml
8874-rw-r--r-- root root 3360 ./usr/share/mime/image/x-panasonic-rw2.xml
8875-rw-r--r-- root root 3358 ./usr/share/mime/image/x-panasonic-rw.xml
8876-rw-r--r-- root root 3499 ./usr/share/mime/image/x-pentax-pef.xml
8877-rw-r--r-- root root 2793 ./usr/share/mime/image/x-photo-cd.xml
8878-rw-r--r-- root root 3911 ./usr/share/mime/image/x-pict.xml
8879-rw-r--r-- root root 2789 ./usr/share/mime/image/x-portable-anymap.xml
8880-rw-r--r-- root root 2904 ./usr/share/mime/image/x-portable-bitmap.xml
8881-rw-r--r-- root root 2830 ./usr/share/mime/image/x-portable-graymap.xml
8882-rw-r--r-- root root 2828 ./usr/share/mime/image/x-portable-pixmap.xml
8883-rw-r--r-- root root 2989 ./usr/share/mime/image/x-quicktime.xml
8884-rw-r--r-- root root 2784 ./usr/share/mime/image/x-rgb.xml
8885-rw-r--r-- root root 2640 ./usr/share/mime/image/x-sgi.xml
8886-rw-r--r-- root root 3400 ./usr/share/mime/image/x-sigma-x3f.xml
8887-rw-r--r-- root root 2956 ./usr/share/mime/image/x-skencil.xml
8888-rw-r--r-- root root 3388 ./usr/share/mime/image/x-sony-arw.xml
8889-rw-r--r-- root root 3388 ./usr/share/mime/image/x-sony-sr2.xml
8890-rw-r--r-- root root 3387 ./usr/share/mime/image/x-sony-srf.xml
8891-rw-r--r-- root root 3040 ./usr/share/mime/image/x-sun-raster.xml
8892-rw-r--r-- root root 2867 ./usr/share/mime/image/x-tga.xml
8893-rw-r--r-- root root 2644 ./usr/share/mime/image/x-tiff-multipage.xml
8894-rw-r--r-- root root 2941 ./usr/share/mime/image/x-win-bitmap.xml
8895-rw-r--r-- root root 2721 ./usr/share/mime/image/x-xbitmap.xml
8896-rw-r--r-- root root 2832 ./usr/share/mime/image/x-xcf.xml
8897-rw-r--r-- root root 2592 ./usr/share/mime/image/x-xcursor.xml
8898-rw-r--r-- root root 2753 ./usr/share/mime/image/x-xfig.xml
8899-rw-r--r-- root root 2798 ./usr/share/mime/image/x-xpixmap.xml
8900-rw-r--r-- root root 3109 ./usr/share/mime/image/x-xwindowdump.xml
8901drwxr-xr-x root root 4096 ./usr/share/mime/inode
8902-rw-r--r-- root root 3006 ./usr/share/mime/inode/blockdevice.xml
8903-rw-r--r-- root root 3145 ./usr/share/mime/inode/chardevice.xml
8904-rw-r--r-- root root 2543 ./usr/share/mime/inode/directory.xml
8905-rw-r--r-- root root 2413 ./usr/share/mime/inode/fifo.xml
8906-rw-r--r-- root root 3021 ./usr/share/mime/inode/mount-point.xml
8907-rw-r--r-- root root 2469 ./usr/share/mime/inode/socket.xml
8908-rw-r--r-- root root 3295 ./usr/share/mime/inode/symlink.xml
8909-rw-r--r-- root root 27700 ./usr/share/mime/magic
8910drwxr-xr-x root root 4096 ./usr/share/mime/message
8911-rw-r--r-- root root 3735 ./usr/share/mime/message/delivery-status.xml
8912-rw-r--r-- root root 3771 ./usr/share/mime/message/disposition-notification.xml
8913-rw-r--r-- root root 3777 ./usr/share/mime/message/external-body.xml
8914-rw-r--r-- root root 3617 ./usr/share/mime/message/news.xml
8915-rw-r--r-- root root 3728 ./usr/share/mime/message/partial.xml
8916-rw-r--r-- root root 3183 ./usr/share/mime/message/rfc822.xml
8917-rw-r--r-- root root 3427 ./usr/share/mime/message/x-gnu-rmail.xml
8918-rw-r--r-- root root 136104 ./usr/share/mime/mime.cache
8919drwxr-xr-x root root 4096 ./usr/share/mime/model
8920-rw-r--r-- root root 2003 ./usr/share/mime/model/iges.xml
8921-rw-r--r-- root root 1695 ./usr/share/mime/model/stl.xml
8922-rw-r--r-- root root 3189 ./usr/share/mime/model/vrml.xml
8923drwxr-xr-x root root 4096 ./usr/share/mime/multipart
8924-rw-r--r-- root root 3761 ./usr/share/mime/multipart/alternative.xml
8925-rw-r--r-- root root 4361 ./usr/share/mime/multipart/appledouble.xml
8926-rw-r--r-- root root 3157 ./usr/share/mime/multipart/digest.xml
8927-rw-r--r-- root root 3267 ./usr/share/mime/multipart/encrypted.xml
8928-rw-r--r-- root root 3191 ./usr/share/mime/multipart/mixed.xml
8929-rw-r--r-- root root 3209 ./usr/share/mime/multipart/related.xml
8930-rw-r--r-- root root 3556 ./usr/share/mime/multipart/report.xml
8931-rw-r--r-- root root 3203 ./usr/share/mime/multipart/signed.xml
8932-rw-r--r-- root root 3867 ./usr/share/mime/multipart/x-mixed-replace.xml
8933-rw-r--r-- root root 16073 ./usr/share/mime/subclasses
8934drwxr-xr-x root root 4096 ./usr/share/mime/text
8935-rw-r--r-- root root 1172 ./usr/share/mime/text/cache-manifest.xml
8936-rw-r--r-- root root 3178 ./usr/share/mime/text/calendar.xml
8937-rw-r--r-- root root 3113 ./usr/share/mime/text/css.xml
8938-rw-r--r-- root root 2266 ./usr/share/mime/text/csv-schema.xml
8939-rw-r--r-- root root 3027 ./usr/share/mime/text/csv.xml
8940-rw-r--r-- root root 3801 ./usr/share/mime/text/enriched.xml
8941-rw-r--r-- root root 3017 ./usr/share/mime/text/htmlh.xml
8942-rw-r--r-- root root 2991 ./usr/share/mime/text/html.xml
8943-rw-r--r-- root root 2600 ./usr/share/mime/text/markdown.xml
8944-rw-r--r-- root root 3420 ./usr/share/mime/text/plain.xml
8945-rw-r--r-- root root 3291 ./usr/share/mime/text/rfc822-headers.xml
8946-rw-r--r-- root root 3602 ./usr/share/mime/text/richtext.xml
8947-rw-r--r-- root root 2164 ./usr/share/mime/text/rust.xml
8948-rw-r--r-- root root 3073 ./usr/share/mime/text/sgml.xml
8949-rw-r--r-- root root 3961 ./usr/share/mime/text/spreadsheet.xml
8950-rw-r--r-- root root 2849 ./usr/share/mime/text/tab-separated-values.xml
8951-rw-r--r-- root root 3191 ./usr/share/mime/text/troff.xml
8952-rw-r--r-- root root 2106 ./usr/share/mime/text/turtle.xml
8953-rw-r--r-- root root 3618 ./usr/share/mime/text/vcard.xml
8954-rw-r--r-- root root 2914 ./usr/share/mime/text/vnd.graphviz.xml
8955-rw-r--r-- root root 3253 ./usr/share/mime/text/vnd.qt.linguist.xml
8956-rw-r--r-- root root 3050 ./usr/share/mime/text/vnd.rn-realtext.xml
8957-rw-r--r-- root root 1636 ./usr/share/mime/text/vnd.senx.warpscript.xml
8958-rw-r--r-- root root 2876 ./usr/share/mime/text/vnd.sun.j2me.app-descriptor.xml
8959-rw-r--r-- root root 3020 ./usr/share/mime/text/vnd.wap.wmlscript.xml
8960-rw-r--r-- root root 3039 ./usr/share/mime/text/vnd.wap.wml.xml
8961-rw-r--r-- root root 2632 ./usr/share/mime/text/vtt.xml
8962-rw-r--r-- root root 3143 ./usr/share/mime/text/x-adasrc.xml
8963-rw-r--r-- root root 2961 ./usr/share/mime/text/x-authors.xml
8964-rw-r--r-- root root 3040 ./usr/share/mime/text/x-bibtex.xml
8965-rw-r--r-- root root 3310 ./usr/share/mime/text/x-changelog.xml
8966-rw-r--r-- root root 3007 ./usr/share/mime/text/x-c++hdr.xml
8967-rw-r--r-- root root 2803 ./usr/share/mime/text/x-chdr.xml
8968-rw-r--r-- root root 3188 ./usr/share/mime/text/x-cmake.xml
8969-rw-r--r-- root root 1168 ./usr/share/mime/text/x-cobol.xml
8970-rw-r--r-- root root 3113 ./usr/share/mime/text/x-copying.xml
8971-rw-r--r-- root root 3127 ./usr/share/mime/text/x-credits.xml
8972-rw-r--r-- root root 3074 ./usr/share/mime/text/x-csharp.xml
8973-rw-r--r-- root root 3250 ./usr/share/mime/text/x-c++src.xml
8974-rw-r--r-- root root 3064 ./usr/share/mime/text/x-csrc.xml
8975-rw-r--r-- root root 1989 ./usr/share/mime/text/x-dbus-service.xml
8976-rw-r--r-- root root 3032 ./usr/share/mime/text/x-dcl.xml
8977-rw-r--r-- root root 3236 ./usr/share/mime/text/x-dsl.xml
8978-rw-r--r-- root root 2994 ./usr/share/mime/text/x-dsrc.xml
8979-rw-r--r-- root root 3254 ./usr/share/mime/text/x-eiffel.xml
8980-rw-r--r-- root root 3617 ./usr/share/mime/text/x-emacs-lisp.xml
8981-rw-r--r-- root root 3221 ./usr/share/mime/text/x-erlang.xml
8982-rw-r--r-- root root 3527 ./usr/share/mime/text/x-fortran.xml
8983-rw-r--r-- root root 1710 ./usr/share/mime/text/x.gcode.xml
8984-rw-r--r-- root root 2317 ./usr/share/mime/text/x-genie.xml
8985-rw-r--r-- root root 3320 ./usr/share/mime/text/x-gettext-translation-template.xml
8986-rw-r--r-- root root 3221 ./usr/share/mime/text/x-gettext-translation.xml
8987-rw-r--r-- root root 1013 ./usr/share/mime/text/x-gherkin.xml
8988-rw-r--r-- root root 1138 ./usr/share/mime/text/x-google-video-pointer.xml
8989-rw-r--r-- root root 2539 ./usr/share/mime/text/x-go.xml
8990-rw-r--r-- root root 1644 ./usr/share/mime/text/x-gradle.xml
8991-rw-r--r-- root root 1179 ./usr/share/mime/text/x-groovy.xml
8992-rw-r--r-- root root 3360 ./usr/share/mime/text/x-haskell.xml
8993-rw-r--r-- root root 3033 ./usr/share/mime/text/x-idl.xml
8994-rw-r--r-- root root 3023 ./usr/share/mime/text/x-imelody.xml
8995-rw-r--r-- root root 3418 ./usr/share/mime/text/x-install.xml
8996-rw-r--r-- root root 3599 ./usr/share/mime/text/x-iptables.xml
8997-rw-r--r-- root root 3086 ./usr/share/mime/text/x-java.xml
8998-rw-r--r-- root root 3167 ./usr/share/mime/text/x-ldif.xml
8999-rw-r--r-- root root 3110 ./usr/share/mime/text/x-lilypond.xml
9000-rw-r--r-- root root 3063 ./usr/share/mime/text/x-literate-haskell.xml
9001-rw-r--r-- root root 3190 ./usr/share/mime/text/x-log.xml
9002-rw-r--r-- root root 2802 ./usr/share/mime/text/x-lua.xml
9003-rw-r--r-- root root 1200 ./usr/share/mime/text/x-makefile.xml
9004-rw-r--r-- root root 985 ./usr/share/mime/text/x-matlab.xml
9005-rw-r--r-- root root 1881 ./usr/share/mime/text/x-maven+xml.xml
9006-rw-r--r-- root root 3157 ./usr/share/mime/text/xmcd.xml
9007-rw-r--r-- root root 2231 ./usr/share/mime/text/x-meson.xml
9008-rw-r--r-- root root 3177 ./usr/share/mime/text/x-microdvd.xml
9009-rw-r--r-- root root 2799 ./usr/share/mime/text/x-moc.xml
9010-rw-r--r-- root root 2267 ./usr/share/mime/text/x-modelica.xml
9011-rw-r--r-- root root 957 ./usr/share/mime/text/x-mof.xml
9012-rw-r--r-- root root 3100 ./usr/share/mime/text/x-mpsub.xml
9013-rw-r--r-- root root 3359 ./usr/share/mime/text/x-mrml.xml
9014-rw-r--r-- root root 3496 ./usr/share/mime/text/x-ms-regedit.xml
9015-rw-r--r-- root root 1114 ./usr/share/mime/text/x-mup.xml
9016-rw-r--r-- root root 2801 ./usr/share/mime/text/x-nfo.xml
9017-rw-r--r-- root root 3537 ./usr/share/mime/text/x-objcsrc.xml
9018-rw-r--r-- root root 3076 ./usr/share/mime/text/x-ocaml.xml
9019-rw-r--r-- root root 2703 ./usr/share/mime/text/x-ocl.xml
9020-rw-r--r-- root root 2654 ./usr/share/mime/text/x-ooc.xml
9021-rw-r--r-- root root 1909 ./usr/share/mime/text/x-opencl-src.xml
9022-rw-r--r-- root root 3116 ./usr/share/mime/text/x-opml+xml.xml
9023-rw-r--r-- root root 3227 ./usr/share/mime/text/x-pascal.xml
9024-rw-r--r-- root root 3558 ./usr/share/mime/text/x-patch.xml
9025-rw-r--r-- root root 1829 ./usr/share/mime/text/x-python3.xml
9026-rw-r--r-- root root 3116 ./usr/share/mime/text/x-python.xml
9027-rw-r--r-- root root 2865 ./usr/share/mime/text/x-qml.xml
9028-rw-r--r-- root root 3185 ./usr/share/mime/text/x-readme.xml
9029-rw-r--r-- root root 3144 ./usr/share/mime/text/x-reject.xml
9030-rw-r--r-- root root 3198 ./usr/share/mime/text/x-rpm-spec.xml
9031-rw-r--r-- root root 1880 ./usr/share/mime/text/x-rst.xml
9032-rw-r--r-- root root 2443 ./usr/share/mime/text/x-sass.xml
9033-rw-r--r-- root root 2616 ./usr/share/mime/text/x-scala.xml
9034-rw-r--r-- root root 3324 ./usr/share/mime/text/x-scheme.xml
9035-rw-r--r-- root root 2573 ./usr/share/mime/text/x-scons.xml
9036-rw-r--r-- root root 1132 ./usr/share/mime/text/x-scss.xml
9037-rw-r--r-- root root 3114 ./usr/share/mime/text/x-setext.xml
9038-rw-r--r-- root root 2929 ./usr/share/mime/text/x-ssa.xml
9039-rw-r--r-- root root 3142 ./usr/share/mime/text/x-subviewer.xml
9040-rw-r--r-- root root 2665 ./usr/share/mime/text/x-svhdr.xml
9041-rw-r--r-- root root 2853 ./usr/share/mime/text/x-svsrc.xml
9042-rw-r--r-- root root 2364 ./usr/share/mime/text/x-systemd-unit.xml
9043-rw-r--r-- root root 2818 ./usr/share/mime/text/x-tcl.xml
9044-rw-r--r-- root root 3204 ./usr/share/mime/text/x-texinfo.xml
9045-rw-r--r-- root root 3092 ./usr/share/mime/text/x-tex.xml
9046-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-me.xml
9047-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-mm.xml
9048-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-ms.xml
9049-rw-r--r-- root root 1811 ./usr/share/mime/text/x-twig.xml
9050-rw-r--r-- root root 3150 ./usr/share/mime/text/x-txt2tags.xml
9051-rw-r--r-- root root 3074 ./usr/share/mime/text/x-uil.xml
9052-rw-r--r-- root root 3061 ./usr/share/mime/text/x-uri.xml
9053-rw-r--r-- root root 2586 ./usr/share/mime/text/x-uuencode.xml
9054-rw-r--r-- root root 3062 ./usr/share/mime/text/x-vala.xml
9055-rw-r--r-- root root 2676 ./usr/share/mime/text/x-verilog.xml
9056-rw-r--r-- root root 2711 ./usr/share/mime/text/x-vhdl.xml
9057-rw-r--r-- root root 2710 ./usr/share/mime/text/x-xmi.xml
9058-rw-r--r-- root root 2956 ./usr/share/mime/text/x-xslfo.xml
9059-rw-r--r-- root root 1140 ./usr/share/mime/treemagic
9060-rw-r--r-- root root 17478 ./usr/share/mime/types
9061-rw-r--r-- root root 5 ./usr/share/mime/version
9062drwxr-xr-x root root 4096 ./usr/share/mime/video
9063-rw-r--r-- root root 3285 ./usr/share/mime/video/3gpp2.xml
9064-rw-r--r-- root root 3885 ./usr/share/mime/video/3gpp.xml
9065-rw-r--r-- root root 1021 ./usr/share/mime/video/annodex.xml
9066-rw-r--r-- root root 2734 ./usr/share/mime/video/dv.xml
9067-rw-r--r-- root root 2779 ./usr/share/mime/video/isivideo.xml
9068-rw-r--r-- root root 1888 ./usr/share/mime/video/mj2.xml
9069-rw-r--r-- root root 3455 ./usr/share/mime/video/mp2t.xml
9070-rw-r--r-- root root 3007 ./usr/share/mime/video/mp4.xml
9071-rw-r--r-- root root 3190 ./usr/share/mime/video/mpeg.xml
9072-rw-r--r-- root root 979 ./usr/share/mime/video/ogg.xml
9073-rw-r--r-- root root 3114 ./usr/share/mime/video/quicktime.xml
9074-rw-r--r-- root root 2948 ./usr/share/mime/video/vnd.mpegurl.xml
9075-rw-r--r-- root root 3172 ./usr/share/mime/video/vnd.rn-realvideo.xml
9076-rw-r--r-- root root 2913 ./usr/share/mime/video/vnd.vivo.xml
9077-rw-r--r-- root root 3006 ./usr/share/mime/video/wavelet.xml
9078-rw-r--r-- root root 2461 ./usr/share/mime/video/webm.xml
9079-rw-r--r-- root root 3073 ./usr/share/mime/video/x-anim.xml
9080-rw-r--r-- root root 2944 ./usr/share/mime/video/x-flic.xml
9081-rw-r--r-- root root 2995 ./usr/share/mime/video/x-flv.xml
9082-rw-r--r-- root root 2533 ./usr/share/mime/video/x-javafx.xml
9083-rw-r--r-- root root 2381 ./usr/share/mime/video/x-matroska-3d.xml
9084-rw-r--r-- root root 3095 ./usr/share/mime/video/x-matroska.xml
9085-rw-r--r-- root root 1841 ./usr/share/mime/video/x-mjpeg.xml
9086-rw-r--r-- root root 2935 ./usr/share/mime/video/x-mng.xml
9087-rw-r--r-- root root 3153 ./usr/share/mime/video/x-msvideo.xml
9088-rw-r--r-- root root 3200 ./usr/share/mime/video/x-ms-wmv.xml
9089-rw-r--r-- root root 2934 ./usr/share/mime/video/x-nsv.xml
9090-rw-r--r-- root root 2782 ./usr/share/mime/video/x-ogm+ogg.xml
9091-rw-r--r-- root root 2811 ./usr/share/mime/video/x-sgi-movie.xml
9092-rw-r--r-- root root 3102 ./usr/share/mime/video/x-theora+ogg.xml
9093drwxr-xr-x root root 4096 ./usr/share/mime/x-content
9094-rw-r--r-- root root 2504 ./usr/share/mime/x-content/audio-cdda.xml
9095-rw-r--r-- root root 2531 ./usr/share/mime/x-content/audio-dvd.xml
9096-rw-r--r-- root root 3388 ./usr/share/mime/x-content/audio-player.xml
9097-rw-r--r-- root root 2971 ./usr/share/mime/x-content/blank-bd.xml
9098-rw-r--r-- root root 2700 ./usr/share/mime/x-content/blank-cd.xml
9099-rw-r--r-- root root 2732 ./usr/share/mime/x-content/blank-dvd.xml
9100-rw-r--r-- root root 2889 ./usr/share/mime/x-content/blank-hddvd.xml
9101-rw-r--r-- root root 2640 ./usr/share/mime/x-content/ebook-reader.xml
9102-rw-r--r-- root root 2917 ./usr/share/mime/x-content/image-dcf.xml
9103-rw-r--r-- root root 2565 ./usr/share/mime/x-content/image-picturecd.xml
9104-rw-r--r-- root root 1123 ./usr/share/mime/x-content/ostree-repository.xml
9105-rw-r--r-- root root 2645 ./usr/share/mime/x-content/software.xml
9106-rw-r--r-- root root 2645 ./usr/share/mime/x-content/unix-software.xml
9107-rw-r--r-- root root 3122 ./usr/share/mime/x-content/video-bluray.xml
9108-rw-r--r-- root root 2627 ./usr/share/mime/x-content/video-dvd.xml
9109-rw-r--r-- root root 2977 ./usr/share/mime/x-content/video-hddvd.xml
9110-rw-r--r-- root root 2791 ./usr/share/mime/x-content/video-svcd.xml
9111-rw-r--r-- root root 2509 ./usr/share/mime/x-content/video-vcd.xml
9112-rw-r--r-- root root 2773 ./usr/share/mime/x-content/win32-software.xml
9113drwxr-xr-x root root 4096 ./usr/share/mime/x-epoc
9114-rw-r--r-- root root 2878 ./usr/share/mime/x-epoc/x-sisx-app.xml
9115-rw-r--r-- root root 1631 ./usr/share/mime/XMLnamespaces
9116drwxr-xr-x root root 4096 ./usr/share/misc
9117drwxr-xr-x root root 4096 ./usr/share/pkgconfig
9118-rw-r--r-- root root 328 ./usr/share/pkgconfig/bash-completion.pc
9119-rw-r--r-- root root 120 ./usr/share/pkgconfig/shared-mime-info.pc
9120-rw-r--r-- root root 90 ./usr/share/pkgconfig/udev.pc
9121-rw-r--r-- root root 384 ./usr/share/pkgconfig/xorg-macros.pc
9122-rw-r--r-- root root 213 ./usr/share/pkgconfig/xtrans.pc
9123drwxr-xr-x root root 4096 ./usr/share/ss
9124-rw-r--r-- root root 1551 ./usr/share/ss/ct_c.awk
9125-rw-r--r-- root root 2290 ./usr/share/ss/ct_c.sed
9126drwxr-xr-x root root 4096 ./usr/share/tabset
9127-rw-r--r-- root root 135 ./usr/share/tabset/std
9128-rw-r--r-- root root 95 ./usr/share/tabset/stdcrt
9129-rw-r--r-- root root 160 ./usr/share/tabset/vt100
9130-rw-r--r-- root root 64 ./usr/share/tabset/vt300
9131drwxr-xr-x root root 4096 ./usr/share/udhcpc
9132-rwxr-xr-x root root 49 ./usr/share/udhcpc/default.script
9133drwxr-xr-x root root 4096 ./usr/share/wayland
9134-rw-r--r-- root root 1266 ./usr/share/wayland/wayland.dtd
9135-rw-r--r-- root root 292 ./usr/share/wayland/wayland-scanner.mk
9136-rw-r--r-- root root 131466 ./usr/share/wayland/wayland.xml
9137drwxr-xr-x root root 4096 ./usr/share/X11
9138-rw-r--r-- root root 1723 ./usr/share/X11/Xcms.txt
9139-rw-r--r-- root root 42077 ./usr/share/X11/XErrorDB
9140drwxr-xr-x root root 4096 ./usr/share/xcb
9141-rw-r--r-- root root 1705 ./usr/share/xcb/bigreq.xml
9142-rw-r--r-- root root 3473 ./usr/share/xcb/composite.xml
9143-rw-r--r-- root root 3299 ./usr/share/xcb/damage.xml
9144-rw-r--r-- root root 3155 ./usr/share/xcb/dpms.xml
9145-rw-r--r-- root root 9488 ./usr/share/xcb/dri2.xml
9146-rw-r--r-- root root 5638 ./usr/share/xcb/dri3.xml
9147-rw-r--r-- root root 1863 ./usr/share/xcb/ge.xml
9148-rw-r--r-- root root 45351 ./usr/share/xcb/glx.xml
9149-rw-r--r-- root root 7335 ./usr/share/xcb/present.xml
9150-rw-r--r-- root root 30366 ./usr/share/xcb/randr.xml
9151-rw-r--r-- root root 5924 ./usr/share/xcb/record.xml
9152-rw-r--r-- root root 23693 ./usr/share/xcb/render.xml
9153-rw-r--r-- root root 5912 ./usr/share/xcb/res.xml
9154-rw-r--r-- root root 6573 ./usr/share/xcb/screensaver.xml
9155-rw-r--r-- root root 6039 ./usr/share/xcb/shape.xml
9156-rw-r--r-- root root 4778 ./usr/share/xcb/shm.xml
9157-rw-r--r-- root root 8390 ./usr/share/xcb/sync.xml
9158-rw-r--r-- root root 16132 ./usr/share/xcb/xcb.xsd
9159-rw-r--r-- root root 1162 ./usr/share/xcb/xc_misc.xml
9160-rw-r--r-- root root 2958 ./usr/share/xcb/xevie.xml
9161-rw-r--r-- root root 5900 ./usr/share/xcb/xf86dri.xml
9162-rw-r--r-- root root 14673 ./usr/share/xcb/xf86vidmode.xml
9163-rw-r--r-- root root 12074 ./usr/share/xcb/xfixes.xml
9164-rw-r--r-- root root 3453 ./usr/share/xcb/xinerama.xml
9165-rw-r--r-- root root 103534 ./usr/share/xcb/xinput.xml
9166-rw-r--r-- root root 91919 ./usr/share/xcb/xkb.xml
9167-rw-r--r-- root root 11134 ./usr/share/xcb/xprint.xml
9168-rw-r--r-- root root 206253 ./usr/share/xcb/xproto.xml
9169-rw-r--r-- root root 8260 ./usr/share/xcb/xselinux.xml
9170-rw-r--r-- root root 3968 ./usr/share/xcb/xtest.xml
9171-rw-r--r-- root root 5363 ./usr/share/xcb/xvmc.xml
9172-rw-r--r-- root root 16061 ./usr/share/xcb/xv.xml
9173drwxr-xr-x root root 4096 ./usr/share/xml
9174drwxr-xr-x root root 4096 ./usr/share/xml/dbus-1
9175-rw-r--r-- root root 1907 ./usr/share/xml/dbus-1/busconfig.dtd
9176-rw-r--r-- root root 1226 ./usr/share/xml/dbus-1/introspect.dtd
9177drwxr-xr-x root root 4096 ./usr/share/xml/fontconfig
9178-rw-r--r-- root root 7250 ./usr/share/xml/fontconfig/fonts.dtd
9179drwxr-xr-x root root 4096 ./usr/src
9180drwxr-xr-x root root 4096 ./usr/x86_64-poky-linux
9181drwxr-xr-x root root 4096 ./usr/x86_64-poky-linux/bin
9182lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/ar -> ../../bin/x86_64-poky-linux-ar
9183lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/as -> ../../bin/x86_64-poky-linux-as
9184lrwxrwxrwx root root 34 ./usr/x86_64-poky-linux/bin/ld.bfd -> ../../bin/x86_64-poky-linux-ld.bfd
9185lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/ld -> ../../bin/x86_64-poky-linux-ld
9186lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/ld.gold -> ../../bin/x86_64-poky-linux-ld.gold
9187lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/nm -> ../../bin/x86_64-poky-linux-nm
9188lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/objcopy -> ../../bin/x86_64-poky-linux-objcopy
9189lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/objdump -> ../../bin/x86_64-poky-linux-objdump
9190lrwxrwxrwx root root 34 ./usr/x86_64-poky-linux/bin/ranlib -> ../../bin/x86_64-poky-linux-ranlib
9191lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/readelf -> ../../bin/x86_64-poky-linux-readelf
9192lrwxrwxrwx root root 33 ./usr/x86_64-poky-linux/bin/strip -> ../../bin/x86_64-poky-linux-strip
9193drwxr-xr-x root root 4096 ./var
9194drwxr-xr-x root root 4096 ./var/backups
9195drwxr-xr-x root root 4096 ./var/cache
9196drwxr-xr-x root root 4096 ./var/cache/fontconfig
9197drwx------ root root 4096 ./var/cache/ldconfig
9198-rw------- root root 9934 ./var/cache/ldconfig/aux-cache
9199drwxr-xr-x root root 4096 ./var/db
9200-rwxr-xr-x root root 4453 ./var/db/makedbs.sh
9201-rw-r--r-- root root 5351 ./var/db/Makefile
9202drwxr-xr-x root root 4096 ./var/lib
9203drwxr-xr-x root root 4096 ./var/lib/arpd
9204drwxr-xr-x messagebus messagebus 4096 ./var/lib/dbus
9205drwxr-xr-x root root 4096 ./var/lib/misc
9206drwxr-xr-x root root 4096 ./var/lib/urandom
9207drwxr-xr-x root root 4096 ./var/local
9208lrwxrwxrwx root root 11 ./var/lock -> ../run/lock
9209lrwxrwxrwx root root 12 ./var/log -> volatile/log
9210lrwxrwxrwx root root 6 ./var/run -> ../run
9211drwxr-xr-x root root 4096 ./var/spool
9212drwxrwxr-x root mail 4096 ./var/spool/mail
9213lrwxrwxrwx root root 12 ./var/tmp -> volatile/tmp
9214drwxr-xr-x root root 4096 ./var/volatile
diff --git a/meta/lib/oeqa/files/buildhistory_filelist2.txt b/meta/lib/oeqa/files/buildhistory_filelist2.txt
new file mode 100644
index 0000000000..ac6307060d
--- /dev/null
+++ b/meta/lib/oeqa/files/buildhistory_filelist2.txt
@@ -0,0 +1,9217 @@
1drwxr-xr-x root root 4096 ./bin
2lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid
3lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils
4-rwxr-xr-x root root 1190872 ./bin/bash.bash
5lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash
6lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid
7-rwxr-xr-x root root 613008 ./bin/busybox.nosuid
8-rwsr-xr-x root root 59440 ./bin/busybox.suid
9lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils
10-rwxr-xr-x root root 47336 ./bin/cat.coreutils
11lrwxrwxrwx root root 21 ./bin/chattr -> /bin/chattr.e2fsprogs
12-rwxr-xr-x root root 14312 ./bin/chattr.e2fsprogs
13lrwxrwxrwx root root 20 ./bin/chgrp -> /bin/chgrp.coreutils
14-rwxr-xr-x root root 75944 ./bin/chgrp.coreutils
15lrwxrwxrwx root root 20 ./bin/chmod -> /bin/chmod.coreutils
16-rwxr-xr-x root root 71880 ./bin/chmod.coreutils
17lrwxrwxrwx root root 20 ./bin/chown -> /bin/chown.coreutils
18-rwxr-xr-x root root 80040 ./bin/chown.coreutils
19lrwxrwxrwx root root 17 ./bin/cp -> /bin/cp.coreutils
20-rwxr-xr-x root root 137416 ./bin/cp.coreutils
21lrwxrwxrwx root root 19 ./bin/cpio -> /bin/busybox.nosuid
22lrwxrwxrwx root root 19 ./bin/date -> /bin/date.coreutils
23-rwxr-xr-x root root 121032 ./bin/date.coreutils
24lrwxrwxrwx root root 17 ./bin/dd -> /bin/dd.coreutils
25-rwxr-xr-x root root 88272 ./bin/dd.coreutils
26lrwxrwxrwx root root 21 ./bin/df -> /usr/bin/df.coreutils
27lrwxrwxrwx root root 21 ./bin/dmesg -> /bin/dmesg.util-linux
28-rwxr-xr-x root root 84256 ./bin/dmesg.util-linux
29lrwxrwxrwx root root 19 ./bin/dnsdomainname -> /bin/busybox.nosuid
30lrwxrwxrwx root root 19 ./bin/dumpkmap -> /bin/busybox.nosuid
31lrwxrwxrwx root root 19 ./bin/echo -> /bin/echo.coreutils
32-rwxr-xr-x root root 39064 ./bin/echo.coreutils
33lrwxrwxrwx root root 15 ./bin/egrep -> /bin/egrep.grep
34-rwxr-xr-x root root 28 ./bin/egrep.grep
35lrwxrwxrwx root root 20 ./bin/false -> /bin/false.coreutils
36-rwxr-xr-x root root 39064 ./bin/false.coreutils
37lrwxrwxrwx root root 15 ./bin/fgrep -> /bin/fgrep.grep
38-rwxr-xr-x root root 28 ./bin/fgrep.grep
39lrwxrwxrwx root root 22 ./bin/getopt -> /bin/getopt.util-linux
40-rwxr-xr-x root root 22576 ./bin/getopt.util-linux
41lrwxrwxrwx root root 14 ./bin/grep -> /bin/grep.grep
42-rwxr-xr-x root root 244016 ./bin/grep.grep
43lrwxrwxrwx root root 19 ./bin/gunzip -> /bin/busybox.nosuid
44lrwxrwxrwx root root 19 ./bin/gzip -> /bin/busybox.nosuid
45lrwxrwxrwx root root 23 ./bin/hostname -> /bin/hostname.coreutils
46-rwxr-xr-x root root 43176 ./bin/hostname.coreutils
47lrwxrwxrwx root root 16 ./bin/kill -> /bin/kill.procps
48-rwxr-xr-x root root 47712 ./bin/kill.coreutils
49-rwxr-xr-x root root 30760 ./bin/kill.procps
50-rwxr-xr-x root root 38960 ./bin/kill.util-linux
51-rwxr-xr-x root root 149648 ./bin/kmod
52lrwxrwxrwx root root 17 ./bin/ln -> /bin/ln.coreutils
53-rwxr-xr-x root root 75984 ./bin/ln.coreutils
54lrwxrwxrwx root root 17 ./bin/login -> /bin/login.shadow
55-rwxr-xr-x root root 73120 ./bin/login.shadow
56lrwxrwxrwx root root 17 ./bin/ls -> /bin/ls.coreutils
57-rwxr-xr-x root root 162448 ./bin/ls.coreutils
58lrwxrwxrwx root root 15 ./bin/lsmod -> /bin/lsmod.kmod
59lrwxrwxrwx root root 4 ./bin/lsmod.kmod -> kmod
60lrwxrwxrwx root root 20 ./bin/mkdir -> /bin/mkdir.coreutils
61-rwxr-xr-x root root 67752 ./bin/mkdir.coreutils
62lrwxrwxrwx root root 20 ./bin/mknod -> /bin/mknod.coreutils
63-rwxr-xr-x root root 47272 ./bin/mknod.coreutils
64lrwxrwxrwx root root 25 ./bin/mktemp -> /usr/bin/mktemp.coreutils
65lrwxrwxrwx root root 20 ./bin/more -> /bin/more.util-linux
66-rwxr-xr-x root root 42976 ./bin/more.util-linux
67lrwxrwxrwx root root 21 ./bin/mount -> /bin/mount.util-linux
68lrwxrwxrwx root root 26 ./bin/mountpoint -> /bin/mountpoint.util-linux
69-rwxr-xr-x root root 14304 ./bin/mountpoint.sysvinit
70-rwxr-xr-x root root 18480 ./bin/mountpoint.util-linux
71-rwsr-xr-x root root 55344 ./bin/mount.util-linux
72lrwxrwxrwx root root 17 ./bin/mv -> /bin/mv.coreutils
73-rwxr-xr-x root root 145616 ./bin/mv.coreutils
74lrwxrwxrwx root root 19 ./bin/netstat -> /bin/busybox.nosuid
75lrwxrwxrwx root root 23 ./bin/nice -> /usr/bin/nice.coreutils
76lrwxrwxrwx root root 19 ./bin/pidof -> /bin/pidof.sysvinit
77-rwxr-xr-x root root 22568 ./bin/pidof.procps
78lrwxrwxrwx root root 14 ./bin/pidof.sysvinit -> /sbin/killall5
79lrwxrwxrwx root root 17 ./bin/ping6 -> /bin/busybox.suid
80lrwxrwxrwx root root 17 ./bin/ping -> /bin/busybox.suid
81lrwxrwxrwx root root 27 ./bin/printenv -> /usr/bin/printenv.coreutils
82lrwxrwxrwx root root 14 ./bin/ps -> /bin/ps.procps
83-rwxr-xr-x root root 137496 ./bin/ps.procps
84lrwxrwxrwx root root 18 ./bin/pwd -> /bin/pwd.coreutils
85-rwxr-xr-x root root 47272 ./bin/pwd.coreutils
86lrwxrwxrwx root root 17 ./bin/rm -> /bin/rm.coreutils
87-rwxr-xr-x root root 75976 ./bin/rm.coreutils
88lrwxrwxrwx root root 20 ./bin/rmdir -> /bin/rmdir.coreutils
89-rwxr-xr-x root root 55464 ./bin/rmdir.coreutils
90lrwxrwxrwx root root 19 ./bin/run-parts -> /bin/busybox.nosuid
91lrwxrwxrwx root root 12 ./bin/sed -> /bin/sed.sed
92-rwxr-xr-x root root 190896 ./bin/sed.sed
93lrwxrwxrwx root root 14 ./bin/sh -> /bin/bash.bash
94lrwxrwxrwx root root 20 ./bin/sleep -> /bin/sleep.coreutils
95-rwxr-xr-x root root 43176 ./bin/sleep.coreutils
96-rwxr-xr-x root root 1736 ./bin/start_getty
97lrwxrwxrwx root root 19 ./bin/stat -> /bin/stat.coreutils
98-rwxr-xr-x root root 96456 ./bin/stat.coreutils
99lrwxrwxrwx root root 19 ./bin/stty -> /bin/stty.coreutils
100-rwxr-xr-x root root 92360 ./bin/stty.coreutils
101lrwxrwxrwx root root 14 ./bin/su -> /bin/su.shadow
102-rwsr-xr-x root root 60992 ./bin/su.shadow
103lrwxrwxrwx root root 19 ./bin/sync -> /bin/sync.coreutils
104-rwxr-xr-x root root 43176 ./bin/sync.coreutils
105lrwxrwxrwx root root 19 ./bin/tar -> /bin/busybox.nosuid
106lrwxrwxrwx root root 20 ./bin/touch -> /bin/touch.coreutils
107-rwxr-xr-x root root 108744 ./bin/touch.coreutils
108lrwxrwxrwx root root 19 ./bin/true -> /bin/true.coreutils
109-rwxr-xr-x root root 39064 ./bin/true.coreutils
110lrwxrwxrwx root root 22 ./bin/umount -> /bin/umount.util-linux
111-rwsr-xr-x root root 34864 ./bin/umount.util-linux
112lrwxrwxrwx root root 20 ./bin/uname -> /bin/uname.coreutils
113-rwxr-xr-x root root 43208 ./bin/uname.coreutils
114lrwxrwxrwx root root 19 ./bin/usleep -> /bin/busybox.nosuid
115lrwxrwxrwx root root 19 ./bin/vi -> /bin/busybox.nosuid
116lrwxrwxrwx root root 17 ./bin/watch -> /bin/watch.procps
117-rwxr-xr-x root root 27016 ./bin/watch.procps
118lrwxrwxrwx root root 19 ./bin/zcat -> /bin/busybox.nosuid
119drwxr-xr-x root root 4096 ./boot
120drwxr-xr-x root root 4096 ./dev
121drwxr-xr-x root root 4096 ./etc
122-rw-r--r-- root root 45 ./etc/bash_completion
123drwxr-xr-x root root 4096 ./etc/bash_completion.d
124-rw-r--r-- root root 447 ./etc/bindresvport.blacklist
125-rw-r--r-- root root 521 ./etc/build
126-rw-r--r-- root root 2370 ./etc/busybox.links.nosuid
127-rw-r--r-- root root 91 ./etc/busybox.links.suid
128drwxr-xr-x root root 4096 ./etc/ca-certificates
129-rw-r--r-- root root 5340 ./etc/ca-certificates.conf
130drwxr-xr-x root root 4096 ./etc/ca-certificates/update.d
131drwxr-xr-x root root 4096 ./etc/dbus-1
132-rw-r--r-- root root 838 ./etc/dbus-1/session.conf
133-rw-r--r-- root root 833 ./etc/dbus-1/system.conf
134drwxr-xr-x root root 4096 ./etc/default
135-rwxr-xr-x root root 93 ./etc/default/devpts
136-rw-r--r-- root root 36 ./etc/default/mountall
137-rw-r--r-- root root 52 ./etc/default/postinst
138-rw-r--r-- root root 1040 ./etc/default/rcS
139-rw-r--r-- root root 117 ./etc/default/useradd
140drwxr-xr-x root root 4096 ./etc/default/volatiles
141-rw-r--r-- root root 1637 ./etc/default/volatiles/00_core
142-rw-r--r-- root root 36 ./etc/default/volatiles/01_bootlogd
143-rw-r--r-- root root 48 ./etc/default/volatiles/99_dbus
144drwxr-xr-x root root 4096 ./etc/depmod.d
145-rw-r--r-- root root 685 ./etc/e2scrub.conf
146drwxr-xr-x root root 4096 ./etc/fonts
147drwxr-xr-x root root 4096 ./etc/fonts/conf.d
148lrwxrwxrwx root root 63 ./etc/fonts/conf.d/10-hinting-slight.conf -> ../../../usr/share/fontconfig/conf.avail/10-hinting-slight.conf
149lrwxrwxrwx root root 67 ./etc/fonts/conf.d/10-scale-bitmap-fonts.conf -> ../../../usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
150lrwxrwxrwx root root 66 ./etc/fonts/conf.d/20-unhint-small-vera.conf -> ../../../usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf
151lrwxrwxrwx root root 63 ./etc/fonts/conf.d/30-metric-aliases.conf -> ../../../usr/share/fontconfig/conf.avail/30-metric-aliases.conf
152lrwxrwxrwx root root 57 ./etc/fonts/conf.d/40-nonlatin.conf -> ../../../usr/share/fontconfig/conf.avail/40-nonlatin.conf
153lrwxrwxrwx root root 56 ./etc/fonts/conf.d/45-generic.conf -> ../../../usr/share/fontconfig/conf.avail/45-generic.conf
154lrwxrwxrwx root root 54 ./etc/fonts/conf.d/45-latin.conf -> ../../../usr/share/fontconfig/conf.avail/45-latin.conf
155lrwxrwxrwx root root 58 ./etc/fonts/conf.d/49-sansserif.conf -> ../../../usr/share/fontconfig/conf.avail/49-sansserif.conf
156lrwxrwxrwx root root 53 ./etc/fonts/conf.d/50-user.conf -> ../../../usr/share/fontconfig/conf.avail/50-user.conf
157lrwxrwxrwx root root 54 ./etc/fonts/conf.d/51-local.conf -> ../../../usr/share/fontconfig/conf.avail/51-local.conf
158lrwxrwxrwx root root 56 ./etc/fonts/conf.d/60-generic.conf -> ../../../usr/share/fontconfig/conf.avail/60-generic.conf
159lrwxrwxrwx root root 54 ./etc/fonts/conf.d/60-latin.conf -> ../../../usr/share/fontconfig/conf.avail/60-latin.conf
160lrwxrwxrwx root root 62 ./etc/fonts/conf.d/65-fonts-persian.conf -> ../../../usr/share/fontconfig/conf.avail/65-fonts-persian.conf
161lrwxrwxrwx root root 57 ./etc/fonts/conf.d/65-nonlatin.conf -> ../../../usr/share/fontconfig/conf.avail/65-nonlatin.conf
162lrwxrwxrwx root root 56 ./etc/fonts/conf.d/69-unifont.conf -> ../../../usr/share/fontconfig/conf.avail/69-unifont.conf
163lrwxrwxrwx root root 58 ./etc/fonts/conf.d/80-delicious.conf -> ../../../usr/share/fontconfig/conf.avail/80-delicious.conf
164lrwxrwxrwx root root 58 ./etc/fonts/conf.d/90-synthetic.conf -> ../../../usr/share/fontconfig/conf.avail/90-synthetic.conf
165-rw-r--r-- root root 978 ./etc/fonts/conf.d/README
166-rw-r--r-- root root 2532 ./etc/fonts/fonts.conf
167-rw-r--r-- root root 650 ./etc/fstab
168-rw-r--r-- root root 501 ./etc/group
169-r-------- root root 420 ./etc/gshadow
170-rw-r--r-- root root 26 ./etc/host.conf
171-rw-r--r-- root root 11 ./etc/hostname
172-rw-r--r-- root root 258 ./etc/hosts
173drwxr-xr-x root root 4096 ./etc/init.d
174-rwxr-xr-x root root 492 ./etc/init.d/banner.sh
175-rwxr-xr-x root root 1997 ./etc/init.d/bootlogd
176-rwxr-xr-x root root 2017 ./etc/init.d/bootmisc.sh
177-rwxr-xr-x root root 3591 ./etc/init.d/checkroot.sh
178-rwxr-xr-x root root 2893 ./etc/init.d/dbus-1
179-rwxr-xr-x root root 526 ./etc/init.d/devpts.sh
180-rwxr-xr-x root root 352 ./etc/init.d/dmesg.sh
181-rw-r--r-- root root 2141 ./etc/init.d/functions
182-rwxr-xr-x root root 510 ./etc/init.d/halt
183-rwxr-xr-x root root 580 ./etc/init.d/hostname.sh
184-rwxr-xr-x root root 2541 ./etc/init.d/hwclock.sh
185-rwxr-xr-x root root 1773 ./etc/init.d/mdmonitor
186-rwxr-xr-x root root 1223 ./etc/init.d/modutils.sh
187-rwxr-xr-x root root 869 ./etc/init.d/mountall.sh
188-rwxr-xr-x root root 1589 ./etc/init.d/mountnfs.sh
189-rwxr-xr-x root root 1956 ./etc/init.d/networking
190-rwxr-xr-x root root 7823 ./etc/init.d/populate-volatile.sh
191-rwxr-xr-x root root 4457 ./etc/init.d/rc
192-rwxr-xr-x root root 525 ./etc/init.d/rcS
193-rwxr-xr-x root root 1273 ./etc/init.d/read-only-rootfs-hook.sh
194-rwxr-xr-x root root 289 ./etc/init.d/reboot
195-rwxr-xr-x root root 585 ./etc/init.d/rmnologin.sh
196-rwxr-xr-x root root 25 ./etc/init.d/run-postinsts
197-rwxr-xr-x root root 429 ./etc/init.d/save-rtc.sh
198-rwxr-xr-x root root 438 ./etc/init.d/sendsigs
199-rwxr-xr-x root root 578 ./etc/init.d/single
200lrwxrwxrwx root root 8 ./etc/init.d/stop-bootlogd -> bootlogd
201-rwxr-xr-x root root 1046 ./etc/init.d/sysfs.sh
202-rwxr-xr-x root root 2066 ./etc/init.d/syslog
203-rwxr-xr-x root root 2779 ./etc/init.d/udev
204-rwxr-xr-x root root 540 ./etc/init.d/umountfs
205-rwxr-xr-x root root 711 ./etc/init.d/umountnfs.sh
206-rwxr-xr-x root root 1473 ./etc/init.d/urandom
207-rw-r--r-- root root 1140 ./etc/inittab
208-rw-r--r-- root root 1633 ./etc/inputrc
209drwxr-xr-x root root 4096 ./etc/iproute2
210-rw-r--r-- root root 85 ./etc/iproute2/bpf_pinning
211-rw-r--r-- root root 81 ./etc/iproute2/ematch_map
212-rw-r--r-- root root 31 ./etc/iproute2/group
213-rw-r--r-- root root 262 ./etc/iproute2/nl_protos
214-rw-r--r-- root root 331 ./etc/iproute2/rt_dsfield
215-rw-r--r-- root root 201 ./etc/iproute2/rt_protos
216-rw-r--r-- root root 112 ./etc/iproute2/rt_realms
217-rw-r--r-- root root 92 ./etc/iproute2/rt_scopes
218-rw-r--r-- root root 87 ./etc/iproute2/rt_tables
219drwxr-xr-x root root 4096 ./etc/iptables
220-rw-r--r-- root root 0 ./etc/iptables/ip6tables.rules
221-rw-r--r-- root root 0 ./etc/iptables/iptables.rules
222-rw-r--r-- root root 58 ./etc/issue
223-rw-r--r-- root root 55 ./etc/issue.net
224-rw-r--r-- root root 18635 ./etc/ld.so.cache
225-rw-r--r-- root root 33 ./etc/ld.so.conf
226-rw-r--r-- root root 827 ./etc/limits
227-rw-r--r-- root root 2006 ./etc/login.access
228-rw-r--r-- root root 12001 ./etc/login.defs
229-rw-r--r-- root root 121 ./etc/logrotate-dmesg.conf
230-rw-r--r-- root root 2687 ./etc/mdadm.conf
231-rw-r--r-- root root 812 ./etc/mke2fs.conf
232drwxr-xr-x root root 4096 ./etc/modprobe.d
233-rw-r--r-- root root 0 ./etc/motd
234lrwxrwxrwx root root 12 ./etc/mtab -> /proc/mounts
235-rw-r--r-- root root 767 ./etc/netconfig
236drwxr-xr-x root root 4096 ./etc/network
237drwxr-xr-x root root 4096 ./etc/network/if-down.d
238drwxr-xr-x root root 4096 ./etc/network/if-post-down.d
239drwxr-xr-x root root 4096 ./etc/network/if-pre-up.d
240-rwxr-xr-x root root 809 ./etc/network/if-pre-up.d/nfsroot
241drwxr-xr-x root root 4096 ./etc/network/if-up.d
242-rw-r--r-- root root 132 ./etc/network/interfaces
243-rw-r--r-- root root 0 ./etc/network/nm-disabled-eth0
244-rw-r--r-- root root 465 ./etc/nsswitch.conf
245-rw-r--r-- root root 767 ./etc/passwd
246-rw-r--r-- root root 984 ./etc/profile
247drwxr-xr-x root root 4096 ./etc/profile.d
248-rw-r--r-- root root 729 ./etc/profile.d/bash_completion.sh
249-rw-r--r-- root root 1107 ./etc/profile.d/gawk.csh
250-rw-r--r-- root root 757 ./etc/profile.d/gawk.sh
251-rw-r--r-- root root 2932 ./etc/protocols
252drwxr-xr-x root root 4096 ./etc/rc0.d
253lrwxrwxrwx root root 16 ./etc/rc0.d/K20dbus-1 -> ../init.d/dbus-1
254lrwxrwxrwx root root 20 ./etc/rc0.d/K20hwclock.sh -> ../init.d/hwclock.sh
255lrwxrwxrwx root root 16 ./etc/rc0.d/K20syslog -> ../init.d/syslog
256lrwxrwxrwx root root 20 ./etc/rc0.d/K80networking -> ../init.d/networking
257lrwxrwxrwx root root 18 ./etc/rc0.d/S20sendsigs -> ../init.d/sendsigs
258lrwxrwxrwx root root 21 ./etc/rc0.d/S25save-rtc.sh -> ../init.d/save-rtc.sh
259lrwxrwxrwx root root 22 ./etc/rc0.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
260lrwxrwxrwx root root 17 ./etc/rc0.d/S38urandom -> ../init.d/urandom
261lrwxrwxrwx root root 18 ./etc/rc0.d/S40umountfs -> ../init.d/umountfs
262lrwxrwxrwx root root 14 ./etc/rc0.d/S90halt -> ../init.d/halt
263drwxr-xr-x root root 4096 ./etc/rc1.d
264lrwxrwxrwx root root 16 ./etc/rc1.d/K20dbus-1 -> ../init.d/dbus-1
265lrwxrwxrwx root root 20 ./etc/rc1.d/K20hwclock.sh -> ../init.d/hwclock.sh
266lrwxrwxrwx root root 16 ./etc/rc1.d/K20syslog -> ../init.d/syslog
267lrwxrwxrwx root root 20 ./etc/rc1.d/K80networking -> ../init.d/networking
268lrwxrwxrwx root root 22 ./etc/rc1.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
269drwxr-xr-x root root 4096 ./etc/rc2.d
270lrwxrwxrwx root root 20 ./etc/rc2.d/S01networking -> ../init.d/networking
271lrwxrwxrwx root root 16 ./etc/rc2.d/S02dbus-1 -> ../init.d/dbus-1
272lrwxrwxrwx root root 21 ./etc/rc2.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
273lrwxrwxrwx root root 20 ./etc/rc2.d/S20hwclock.sh -> ../init.d/hwclock.sh
274lrwxrwxrwx root root 16 ./etc/rc2.d/S20syslog -> ../init.d/syslog
275lrwxrwxrwx root root 22 ./etc/rc2.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
276lrwxrwxrwx root root 23 ./etc/rc2.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
277drwxr-xr-x root root 4096 ./etc/rc3.d
278lrwxrwxrwx root root 20 ./etc/rc3.d/S01networking -> ../init.d/networking
279lrwxrwxrwx root root 16 ./etc/rc3.d/S02dbus-1 -> ../init.d/dbus-1
280lrwxrwxrwx root root 21 ./etc/rc3.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
281lrwxrwxrwx root root 20 ./etc/rc3.d/S20hwclock.sh -> ../init.d/hwclock.sh
282lrwxrwxrwx root root 16 ./etc/rc3.d/S20syslog -> ../init.d/syslog
283lrwxrwxrwx root root 22 ./etc/rc3.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
284lrwxrwxrwx root root 23 ./etc/rc3.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
285drwxr-xr-x root root 4096 ./etc/rc4.d
286lrwxrwxrwx root root 20 ./etc/rc4.d/S01networking -> ../init.d/networking
287lrwxrwxrwx root root 21 ./etc/rc4.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
288lrwxrwxrwx root root 20 ./etc/rc4.d/S20hwclock.sh -> ../init.d/hwclock.sh
289lrwxrwxrwx root root 16 ./etc/rc4.d/S20syslog -> ../init.d/syslog
290lrwxrwxrwx root root 22 ./etc/rc4.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
291lrwxrwxrwx root root 23 ./etc/rc4.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
292drwxr-xr-x root root 4096 ./etc/rc5.d
293lrwxrwxrwx root root 20 ./etc/rc5.d/S01networking -> ../init.d/networking
294lrwxrwxrwx root root 16 ./etc/rc5.d/S02dbus-1 -> ../init.d/dbus-1
295lrwxrwxrwx root root 21 ./etc/rc5.d/S15mountnfs.sh -> ../init.d/mountnfs.sh
296lrwxrwxrwx root root 20 ./etc/rc5.d/S20hwclock.sh -> ../init.d/hwclock.sh
297lrwxrwxrwx root root 16 ./etc/rc5.d/S20syslog -> ../init.d/syslog
298lrwxrwxrwx root root 22 ./etc/rc5.d/S99rmnologin.sh -> ../init.d/rmnologin.sh
299lrwxrwxrwx root root 23 ./etc/rc5.d/S99stop-bootlogd -> ../init.d/stop-bootlogd
300drwxr-xr-x root root 4096 ./etc/rc6.d
301lrwxrwxrwx root root 16 ./etc/rc6.d/K20dbus-1 -> ../init.d/dbus-1
302lrwxrwxrwx root root 20 ./etc/rc6.d/K20hwclock.sh -> ../init.d/hwclock.sh
303lrwxrwxrwx root root 16 ./etc/rc6.d/K20syslog -> ../init.d/syslog
304lrwxrwxrwx root root 20 ./etc/rc6.d/K80networking -> ../init.d/networking
305lrwxrwxrwx root root 18 ./etc/rc6.d/S20sendsigs -> ../init.d/sendsigs
306lrwxrwxrwx root root 21 ./etc/rc6.d/S25save-rtc.sh -> ../init.d/save-rtc.sh
307lrwxrwxrwx root root 22 ./etc/rc6.d/S31umountnfs.sh -> ../init.d/umountnfs.sh
308lrwxrwxrwx root root 17 ./etc/rc6.d/S38urandom -> ../init.d/urandom
309lrwxrwxrwx root root 18 ./etc/rc6.d/S40umountfs -> ../init.d/umountfs
310lrwxrwxrwx root root 16 ./etc/rc6.d/S90reboot -> ../init.d/reboot
311drwxr-xr-x root root 4096 ./etc/rcS.d
312lrwxrwxrwx root root 19 ./etc/rcS.d/S02banner.sh -> ../init.d/banner.sh
313lrwxrwxrwx root root 18 ./etc/rcS.d/S02sysfs.sh -> ../init.d/sysfs.sh
314lrwxrwxrwx root root 21 ./etc/rcS.d/S03mountall.sh -> ../init.d/mountall.sh
315lrwxrwxrwx root root 14 ./etc/rcS.d/S04udev -> ../init.d/udev
316lrwxrwxrwx root root 21 ./etc/rcS.d/S05modutils.sh -> ../init.d/modutils.sh
317lrwxrwxrwx root root 22 ./etc/rcS.d/S06checkroot.sh -> ../init.d/checkroot.sh
318lrwxrwxrwx root root 19 ./etc/rcS.d/S06devpts.sh -> ../init.d/devpts.sh
319lrwxrwxrwx root root 18 ./etc/rcS.d/S07bootlogd -> ../init.d/bootlogd
320lrwxrwxrwx root root 34 ./etc/rcS.d/S29read-only-rootfs-hook.sh -> ../init.d/read-only-rootfs-hook.sh
321lrwxrwxrwx root root 21 ./etc/rcS.d/S36bootmisc.sh -> ../init.d/bootmisc.sh
322lrwxrwxrwx root root 30 ./etc/rcS.d/S37populate-volatile.sh -> ../init.d/populate-volatile.sh
323lrwxrwxrwx root root 18 ./etc/rcS.d/S38dmesg.sh -> ../init.d/dmesg.sh
324lrwxrwxrwx root root 17 ./etc/rcS.d/S38urandom -> ../init.d/urandom
325lrwxrwxrwx root root 21 ./etc/rcS.d/S39hostname.sh -> ../init.d/hostname.sh
326-rw-r--r-- root root 887 ./etc/rpc
327-r-------- root root 1848 ./etc/securetty
328-rw-r--r-- root root 14464 ./etc/services
329-r-------- root root 404 ./etc/shadow
330-rw-r--r-- root root 52 ./etc/shells
331drwxr-xr-x root root 4096 ./etc/skel
332-rwxr-xr-x root root 410 ./etc/skel/.bashrc
333-rwxr-xr-x root root 241 ./etc/skel/.profile
334drwxr-xr-x root root 4096 ./etc/ssl
335drwxr-xr-x root root 16384 ./etc/ssl/certs
336lrwxrwxrwx root root 45 ./etc/ssl/certs/02265526.0 -> Entrust_Root_Certification_Authority_-_G2.pem
337lrwxrwxrwx root root 36 ./etc/ssl/certs/03179a64.0 -> Staat_der_Nederlanden_EV_Root_CA.pem
338lrwxrwxrwx root root 27 ./etc/ssl/certs/062cdee6.0 -> GlobalSign_Root_CA_-_R3.pem
339lrwxrwxrwx root root 25 ./etc/ssl/certs/064e0aa9.0 -> QuoVadis_Root_CA_2_G3.pem
340lrwxrwxrwx root root 50 ./etc/ssl/certs/06dc52d5.0 -> SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
341lrwxrwxrwx root root 20 ./etc/ssl/certs/080911ac.0 -> QuoVadis_Root_CA.pem
342lrwxrwxrwx root root 54 ./etc/ssl/certs/09789157.0 -> Starfield_Services_Root_Certificate_Authority_-_G2.pem
343lrwxrwxrwx root root 16 ./etc/ssl/certs/0b1b94ef.0 -> CFCA_EV_ROOT.pem
344lrwxrwxrwx root root 44 ./etc/ssl/certs/0bf05006.0 -> SSL.com_Root_Certification_Authority_ECC.pem
345lrwxrwxrwx root root 34 ./etc/ssl/certs/0c4c9b6c.0 -> Global_Chambersign_Root_-_2008.pem
346lrwxrwxrwx root root 26 ./etc/ssl/certs/0f6fa695.0 -> GDCA_TrustAUTH_R5_ROOT.pem
347lrwxrwxrwx root root 46 ./etc/ssl/certs/106f3e4d.0 -> Entrust_Root_Certification_Authority_-_EC1.pem
348lrwxrwxrwx root root 49 ./etc/ssl/certs/116bf586.0 -> GeoTrust_Primary_Certification_Authority_-_G2.pem
349lrwxrwxrwx root root 35 ./etc/ssl/certs/128805a3.0 -> EE_Certification_Centre_Root_CA.pem
350lrwxrwxrwx root root 26 ./etc/ssl/certs/157753a5.0 -> AddTrust_External_Root.pem
351lrwxrwxrwx root root 59 ./etc/ssl/certs/1636090b.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
352lrwxrwxrwx root root 23 ./etc/ssl/certs/18856ac4.0 -> SecureSign_RootCA11.pem
353lrwxrwxrwx root root 31 ./etc/ssl/certs/1d3472b9.0 -> GlobalSign_ECC_Root_CA_-_R5.pem
354lrwxrwxrwx root root 37 ./etc/ssl/certs/1e08bfd1.0 -> IdenTrust_Public_Sector_Root_CA_1.pem
355lrwxrwxrwx root root 32 ./etc/ssl/certs/1e09d511.0 -> T-TeleSec_GlobalRoot_Class_2.pem
356lrwxrwxrwx root root 38 ./etc/ssl/certs/244b5494.0 -> DigiCert_High_Assurance_EV_Root_CA.pem
357lrwxrwxrwx root root 20 ./etc/ssl/certs/2ae6433e.0 -> CA_Disig_Root_R2.pem
358lrwxrwxrwx root root 26 ./etc/ssl/certs/2b349938.0 -> AffirmTrust_Commercial.pem
359lrwxrwxrwx root root 22 ./etc/ssl/certs/2c543cd1.0 -> GeoTrust_Global_CA.pem
360lrwxrwxrwx root root 26 ./etc/ssl/certs/2e4eed3c.0 -> thawte_Primary_Root_CA.pem
361lrwxrwxrwx root root 18 ./etc/ssl/certs/2e5ac55d.0 -> DST_Root_CA_X3.pem
362lrwxrwxrwx root root 59 ./etc/ssl/certs/32888f65.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
363lrwxrwxrwx root root 10 ./etc/ssl/certs/349f2832.0 -> EC-ACC.pem
364lrwxrwxrwx root root 27 ./etc/ssl/certs/3513523f.0 -> DigiCert_Global_Root_CA.pem
365lrwxrwxrwx root root 61 ./etc/ssl/certs/3bde41ac.0 -> Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
366lrwxrwxrwx root root 26 ./etc/ssl/certs/3e44d2f7.0 -> TrustCor_RootCert_CA-2.pem
367lrwxrwxrwx root root 27 ./etc/ssl/certs/3e45d192.0 -> Hongkong_Post_Root_CA_1.pem
368lrwxrwxrwx root root 31 ./etc/ssl/certs/40193066.0 -> Certum_Trusted_Network_CA_2.pem
369lrwxrwxrwx root root 16 ./etc/ssl/certs/4042bcee.0 -> ISRG_Root_X1.pem
370lrwxrwxrwx root root 34 ./etc/ssl/certs/40547a79.0 -> COMODO_Certification_Authority.pem
371lrwxrwxrwx root root 43 ./etc/ssl/certs/4304c5e5.0 -> Network_Solutions_Certificate_Authority.pem
372lrwxrwxrwx root root 44 ./etc/ssl/certs/480720ec.0 -> GeoTrust_Primary_Certification_Authority.pem
373lrwxrwxrwx root root 29 ./etc/ssl/certs/48bec511.0 -> Certum_Trusted_Network_CA.pem
374lrwxrwxrwx root root 27 ./etc/ssl/certs/4a6481c9.0 -> GlobalSign_Root_CA_-_R2.pem
375lrwxrwxrwx root root 45 ./etc/ssl/certs/4bfab552.0 -> Starfield_Root_Certificate_Authority_-_G2.pem
376lrwxrwxrwx root root 26 ./etc/ssl/certs/4f316efb.0 -> SwissSign_Gold_CA_-_G2.pem
377lrwxrwxrwx root root 35 ./etc/ssl/certs/5273a94c.0 -> E-Tugra_Certification_Authority.pem
378lrwxrwxrwx root root 32 ./etc/ssl/certs/5443e9e3.0 -> T-TeleSec_GlobalRoot_Class_3.pem
379lrwxrwxrwx root root 27 ./etc/ssl/certs/54657681.0 -> Buypass_Class_2_Root_CA.pem
380lrwxrwxrwx root root 28 ./etc/ssl/certs/57bcb2da.0 -> SwissSign_Silver_CA_-_G2.pem
381lrwxrwxrwx root root 38 ./etc/ssl/certs/5a4d6896.0 -> Staat_der_Nederlanden_Root_CA_-_G3.pem
382lrwxrwxrwx root root 22 ./etc/ssl/certs/5ad8a5d6.0 -> GlobalSign_Root_CA.pem
383lrwxrwxrwx root root 38 ./etc/ssl/certs/5c44d531.0 -> Staat_der_Nederlanden_Root_CA_-_G2.pem
384lrwxrwxrwx root root 26 ./etc/ssl/certs/5cd81ad7.0 -> TeliaSonera_Root_CA_v1.pem
385lrwxrwxrwx root root 26 ./etc/ssl/certs/5d3033c5.0 -> TrustCor_RootCert_CA-1.pem
386lrwxrwxrwx root root 23 ./etc/ssl/certs/5f15c80c.0 -> TWCA_Global_Root_CA.pem
387lrwxrwxrwx root root 27 ./etc/ssl/certs/607986c7.0 -> DigiCert_Global_Root_G2.pem
388lrwxrwxrwx root root 15 ./etc/ssl/certs/6410666e.0 -> Taiwan_GRCA.pem
389lrwxrwxrwx root root 29 ./etc/ssl/certs/653b494a.0 -> Baltimore_CyberTrust_Root.pem
390lrwxrwxrwx root root 40 ./etc/ssl/certs/6b99d060.0 -> Entrust_Root_Certification_Authority.pem
391lrwxrwxrwx root root 20 ./etc/ssl/certs/6d41d539.0 -> Amazon_Root_CA_2.pem
392lrwxrwxrwx root root 44 ./etc/ssl/certs/6fa5da56.0 -> SSL.com_Root_Certification_Authority_RSA.pem
393lrwxrwxrwx root root 24 ./etc/ssl/certs/706f604c.0 -> XRamp_Global_CA_Root.pem
394lrwxrwxrwx root root 25 ./etc/ssl/certs/749e9e03.0 -> QuoVadis_Root_CA_1_G3.pem
395lrwxrwxrwx root root 28 ./etc/ssl/certs/75d1b2ed.0 -> DigiCert_Trusted_Root_G4.pem
396lrwxrwxrwx root root 26 ./etc/ssl/certs/76cb8f92.0 -> Cybertrust_Global_Root.pem
397lrwxrwxrwx root root 22 ./etc/ssl/certs/76faf6c0.0 -> QuoVadis_Root_CA_3.pem
398lrwxrwxrwx root root 63 ./etc/ssl/certs/7719f463.0 -> Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
399lrwxrwxrwx root root 35 ./etc/ssl/certs/773e07ad.0 -> OISTE_WISeKey_Global_Root_GC_CA.pem
400lrwxrwxrwx root root 18 ./etc/ssl/certs/7aaf71c0.0 -> TrustCor_ECA-1.pem
401lrwxrwxrwx root root 64 ./etc/ssl/certs/7d0b38bd.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem
402lrwxrwxrwx root root 31 ./etc/ssl/certs/7f3d5d1d.0 -> DigiCert_Assured_ID_Root_G3.pem
403lrwxrwxrwx root root 30 ./etc/ssl/certs/812e17de.0 -> Deutsche_Telekom_Root_CA_2.pem
404lrwxrwxrwx root root 34 ./etc/ssl/certs/8160b96c.0 -> Microsec_e-Szigno_Root_CA_2009.pem
405lrwxrwxrwx root root 27 ./etc/ssl/certs/8867006a.0 -> GeoTrust_Universal_CA_2.pem
406lrwxrwxrwx root root 20 ./etc/ssl/certs/8cb5ee0f.0 -> Amazon_Root_CA_3.pem
407lrwxrwxrwx root root 20 ./etc/ssl/certs/8d86cdd1.0 -> certSIGN_ROOT_CA.pem
408lrwxrwxrwx root root 34 ./etc/ssl/certs/930ac5d2.0 -> Actalis_Authentication_Root_CA.pem
409lrwxrwxrwx root root 26 ./etc/ssl/certs/93bc0acc.0 -> AffirmTrust_Networking.pem
410lrwxrwxrwx root root 48 ./etc/ssl/certs/988a38cb.0 -> NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem
411lrwxrwxrwx root root 26 ./etc/ssl/certs/9c2e7d30.0 -> Sonera_Class_2_Root_CA.pem
412lrwxrwxrwx root root 27 ./etc/ssl/certs/9c8dfbd4.0 -> AffirmTrust_Premium_ECC.pem
413lrwxrwxrwx root root 31 ./etc/ssl/certs/9d04f354.0 -> DigiCert_Assured_ID_Root_G2.pem
414lrwxrwxrwx root root 24 ./etc/ssl/certs/9f0f5fd6.0 -> Certinomis_-_Root_CA.pem
415lrwxrwxrwx root root 13 ./etc/ssl/certs/a94d09e5.0 -> ACCVRAIZ1.pem
416lrwxrwxrwx root root 56 ./etc/ssl/certs/ACCVRAIZ1.pem -> ../../../usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt
417lrwxrwxrwx root root 63 ./etc/ssl/certs/AC_RAIZ_FNMT-RCM.pem -> ../../../usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt
418lrwxrwxrwx root root 77 ./etc/ssl/certs/Actalis_Authentication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt
419lrwxrwxrwx root root 25 ./etc/ssl/certs/ad088e1d.0 -> GeoTrust_Universal_CA.pem
420lrwxrwxrwx root root 69 ./etc/ssl/certs/AddTrust_External_Root.pem -> ../../../usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt
421lrwxrwxrwx root root 45 ./etc/ssl/certs/aee5f10d.0 -> Entrust.net_Premium_2048_Secure_Server_CA.pem
422lrwxrwxrwx root root 69 ./etc/ssl/certs/AffirmTrust_Commercial.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt
423lrwxrwxrwx root root 69 ./etc/ssl/certs/AffirmTrust_Networking.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt
424lrwxrwxrwx root root 70 ./etc/ssl/certs/AffirmTrust_Premium_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt
425lrwxrwxrwx root root 66 ./etc/ssl/certs/AffirmTrust_Premium.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt
426lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt
427lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt
428lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt
429lrwxrwxrwx root root 63 ./etc/ssl/certs/Amazon_Root_CA_4.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt
430lrwxrwxrwx root root 68 ./etc/ssl/certs/Atos_TrustedRoot_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt
431lrwxrwxrwx root root 104 ./etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem -> ../../../usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt
432lrwxrwxrwx root root 31 ./etc/ssl/certs/b0e59380.0 -> GlobalSign_ECC_Root_CA_-_R4.pem
433lrwxrwxrwx root root 31 ./etc/ssl/certs/b1159c4c.0 -> DigiCert_Assured_ID_Root_CA.pem
434lrwxrwxrwx root root 35 ./etc/ssl/certs/b1b8a7f3.0 -> OISTE_WISeKey_Global_Root_GA_CA.pem
435lrwxrwxrwx root root 64 ./etc/ssl/certs/b204d74a.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
436lrwxrwxrwx root root 20 ./etc/ssl/certs/b66938e9.0 -> Secure_Global_CA.pem
437lrwxrwxrwx root root 23 ./etc/ssl/certs/b727005e.0 -> AffirmTrust_Premium.pem
438lrwxrwxrwx root root 37 ./etc/ssl/certs/b7a5b843.0 -> TWCA_Root_Certification_Authority.pem
439lrwxrwxrwx root root 31 ./etc/ssl/certs/ba89ed3b.0 -> thawte_Primary_Root_CA_-_G3.pem
440lrwxrwxrwx root root 72 ./etc/ssl/certs/Baltimore_CyberTrust_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt
441lrwxrwxrwx root root 70 ./etc/ssl/certs/Buypass_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt
442lrwxrwxrwx root root 70 ./etc/ssl/certs/Buypass_Class_3_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt
443lrwxrwxrwx root root 51 ./etc/ssl/certs/c01cdfa2.0 -> VeriSign_Universal_Root_Certification_Authority.pem
444lrwxrwxrwx root root 31 ./etc/ssl/certs/c089bbbd.0 -> thawte_Primary_Root_CA_-_G2.pem
445lrwxrwxrwx root root 64 ./etc/ssl/certs/c0ff1f52.0 -> Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
446lrwxrwxrwx root root 34 ./etc/ssl/certs/c28a8a30.0 -> D-TRUST_Root_Class_3_CA_2_2009.pem
447lrwxrwxrwx root root 36 ./etc/ssl/certs/c47d9980.0 -> Chambers_of_Commerce_Root_-_2008.pem
448lrwxrwxrwx root root 37 ./etc/ssl/certs/ca6e4ad9.0 -> ePKI_Root_Certification_Authority.pem
449-rw-r--r-- root root 200061 ./etc/ssl/certs/ca-certificates.crt
450lrwxrwxrwx root root 63 ./etc/ssl/certs/CA_Disig_Root_R2.pem -> ../../../usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt
451lrwxrwxrwx root root 44 ./etc/ssl/certs/cbf06781.0 -> Go_Daddy_Root_Certificate_Authority_-_G2.pem
452lrwxrwxrwx root root 14 ./etc/ssl/certs/cc450945.0 -> Izenpe.com.pem
453lrwxrwxrwx root root 34 ./etc/ssl/certs/cd58d51e.0 -> Security_Communication_RootCA2.pem
454lrwxrwxrwx root root 20 ./etc/ssl/certs/cd8c0d63.0 -> AC_RAIZ_FNMT-RCM.pem
455lrwxrwxrwx root root 20 ./etc/ssl/certs/ce5e74ef.0 -> Amazon_Root_CA_1.pem
456lrwxrwxrwx root root 55 ./etc/ssl/certs/Certigna.pem -> ../../../usr/share/ca-certificates/mozilla/Certigna.crt
457lrwxrwxrwx root root 67 ./etc/ssl/certs/Certinomis_-_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt
458lrwxrwxrwx root root 74 ./etc/ssl/certs/Certplus_Class_2_Primary_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt
459lrwxrwxrwx root root 63 ./etc/ssl/certs/certSIGN_ROOT_CA.pem -> ../../../usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt
460lrwxrwxrwx root root 74 ./etc/ssl/certs/Certum_Trusted_Network_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt
461lrwxrwxrwx root root 72 ./etc/ssl/certs/Certum_Trusted_Network_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt
462lrwxrwxrwx root root 59 ./etc/ssl/certs/CFCA_EV_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt
463lrwxrwxrwx root root 79 ./etc/ssl/certs/Chambers_of_Commerce_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt
464lrwxrwxrwx root root 71 ./etc/ssl/certs/Comodo_AAA_Services_root.pem -> ../../../usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt
465lrwxrwxrwx root root 77 ./etc/ssl/certs/COMODO_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt
466lrwxrwxrwx root root 81 ./etc/ssl/certs/COMODO_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt
467lrwxrwxrwx root root 81 ./etc/ssl/certs/COMODO_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt
468lrwxrwxrwx root root 69 ./etc/ssl/certs/Cybertrust_Global_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt
469lrwxrwxrwx root root 37 ./etc/ssl/certs/d4dae3dd.0 -> D-TRUST_Root_Class_3_CA_2_EV_2009.pem
470lrwxrwxrwx root root 38 ./etc/ssl/certs/d6325660.0 -> COMODO_RSA_Certification_Authority.pem
471lrwxrwxrwx root root 22 ./etc/ssl/certs/d7e8dc79.0 -> QuoVadis_Root_CA_2.pem
472lrwxrwxrwx root root 23 ./etc/ssl/certs/d853d49e.0 -> Trustis_FPS_Root_CA.pem
473lrwxrwxrwx root root 27 ./etc/ssl/certs/dc4d6a89.0 -> GlobalSign_Root_CA_-_R6.pem
474lrwxrwxrwx root root 27 ./etc/ssl/certs/dd8e9d41.0 -> DigiCert_Global_Root_G3.pem
475lrwxrwxrwx root root 20 ./etc/ssl/certs/de6d66f3.0 -> Amazon_Root_CA_4.pem
476lrwxrwxrwx root root 26 ./etc/ssl/certs/def36a68.0 -> LuxTrust_Global_Root_2.pem
477lrwxrwxrwx root root 73 ./etc/ssl/certs/Deutsche_Telekom_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt
478lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt
479lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt
480lrwxrwxrwx root root 74 ./etc/ssl/certs/DigiCert_Assured_ID_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt
481lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt
482lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt
483lrwxrwxrwx root root 70 ./etc/ssl/certs/DigiCert_Global_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt
484lrwxrwxrwx root root 81 ./etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt
485lrwxrwxrwx root root 71 ./etc/ssl/certs/DigiCert_Trusted_Root_G4.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt
486lrwxrwxrwx root root 61 ./etc/ssl/certs/DST_Root_CA_X3.pem -> ../../../usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
487lrwxrwxrwx root root 77 ./etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt
488lrwxrwxrwx root root 80 ./etc/ssl/certs/D-TRUST_Root_Class_3_CA_2_EV_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt
489lrwxrwxrwx root root 12 ./etc/ssl/certs/e113c810.0 -> Certigna.pem
490lrwxrwxrwx root root 25 ./etc/ssl/certs/e18bfb83.0 -> QuoVadis_Root_CA_3_G3.pem
491lrwxrwxrwx root root 49 ./etc/ssl/certs/e2799e36.0 -> GeoTrust_Primary_Certification_Authority_-_G3.pem
492lrwxrwxrwx root root 25 ./etc/ssl/certs/e36a6752.0 -> Atos_TrustedRoot_2011.pem
493lrwxrwxrwx root root 35 ./etc/ssl/certs/e73d606e.0 -> OISTE_WISeKey_Global_Root_GB_CA.pem
494lrwxrwxrwx root root 27 ./etc/ssl/certs/e8de2f56.0 -> Buypass_Class_3_Root_CA.pem
495lrwxrwxrwx root root 53 ./etc/ssl/certs/EC-ACC.pem -> ../../../usr/share/ca-certificates/mozilla/EC-ACC.crt
496lrwxrwxrwx root root 28 ./etc/ssl/certs/ee64a828.0 -> Comodo_AAA_Services_root.pem
497lrwxrwxrwx root root 78 ./etc/ssl/certs/EE_Certification_Centre_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt
498lrwxrwxrwx root root 38 ./etc/ssl/certs/eed8c118.0 -> COMODO_ECC_Certification_Authority.pem
499lrwxrwxrwx root root 34 ./etc/ssl/certs/ef954a4e.0 -> IdenTrust_Commercial_Root_CA_1.pem
500lrwxrwxrwx root root 88 ./etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt
501lrwxrwxrwx root root 89 ./etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt
502lrwxrwxrwx root root 88 ./etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt
503lrwxrwxrwx root root 83 ./etc/ssl/certs/Entrust_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt
504lrwxrwxrwx root root 80 ./etc/ssl/certs/ePKI_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt
505lrwxrwxrwx root root 78 ./etc/ssl/certs/E-Tugra_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt
506lrwxrwxrwx root root 31 ./etc/ssl/certs/f060240e.0 -> Certplus_Class_2_Primary_CA.pem
507lrwxrwxrwx root root 23 ./etc/ssl/certs/f081611a.0 -> Go_Daddy_Class_2_CA.pem
508lrwxrwxrwx root root 47 ./etc/ssl/certs/f0c70a8d.0 -> SSL.com_EV_Root_Certification_Authority_ECC.pem
509lrwxrwxrwx root root 41 ./etc/ssl/certs/f30dd6ad.0 -> USERTrust_ECC_Certification_Authority.pem
510lrwxrwxrwx root root 34 ./etc/ssl/certs/f3377b1b.0 -> Security_Communication_Root_CA.pem
511lrwxrwxrwx root root 24 ./etc/ssl/certs/f387163d.0 -> Starfield_Class_2_CA.pem
512lrwxrwxrwx root root 18 ./etc/ssl/certs/f39fc864.0 -> SecureTrust_CA.pem
513lrwxrwxrwx root root 41 ./etc/ssl/certs/fc5a8f99.0 -> USERTrust_RSA_Certification_Authority.pem
514lrwxrwxrwx root root 19 ./etc/ssl/certs/fe8a2cd8.0 -> SZAFIR_ROOT_CA2.pem
515lrwxrwxrwx root root 49 ./etc/ssl/certs/ff34af3f.0 -> TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
516lrwxrwxrwx root root 69 ./etc/ssl/certs/GDCA_TrustAUTH_R5_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt
517lrwxrwxrwx root root 65 ./etc/ssl/certs/GeoTrust_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt
518lrwxrwxrwx root root 92 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt
519lrwxrwxrwx root root 92 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt
520lrwxrwxrwx root root 87 ./etc/ssl/certs/GeoTrust_Primary_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt
521lrwxrwxrwx root root 70 ./etc/ssl/certs/GeoTrust_Universal_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt
522lrwxrwxrwx root root 68 ./etc/ssl/certs/GeoTrust_Universal_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt
523lrwxrwxrwx root root 77 ./etc/ssl/certs/Global_Chambersign_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt
524lrwxrwxrwx root root 74 ./etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R4.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt
525lrwxrwxrwx root root 74 ./etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R5.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt
526lrwxrwxrwx root root 65 ./etc/ssl/certs/GlobalSign_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt
527lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt
528lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt
529lrwxrwxrwx root root 70 ./etc/ssl/certs/GlobalSign_Root_CA_-_R6.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt
530lrwxrwxrwx root root 66 ./etc/ssl/certs/Go_Daddy_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt
531lrwxrwxrwx root root 87 ./etc/ssl/certs/Go_Daddy_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt
532lrwxrwxrwx root root 106 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt
533lrwxrwxrwx root root 102 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt
534lrwxrwxrwx root root 102 ./etc/ssl/certs/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt
535lrwxrwxrwx root root 70 ./etc/ssl/certs/Hongkong_Post_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt
536lrwxrwxrwx root root 77 ./etc/ssl/certs/IdenTrust_Commercial_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt
537lrwxrwxrwx root root 80 ./etc/ssl/certs/IdenTrust_Public_Sector_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt
538lrwxrwxrwx root root 59 ./etc/ssl/certs/ISRG_Root_X1.pem -> ../../../usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
539lrwxrwxrwx root root 57 ./etc/ssl/certs/Izenpe.com.pem -> ../../../usr/share/ca-certificates/mozilla/Izenpe.com.crt
540lrwxrwxrwx root root 69 ./etc/ssl/certs/LuxTrust_Global_Root_2.pem -> ../../../usr/share/ca-certificates/mozilla/LuxTrust_Global_Root_2.crt
541lrwxrwxrwx root root 77 ./etc/ssl/certs/Microsec_e-Szigno_Root_CA_2009.pem -> ../../../usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt
542lrwxrwxrwx root root 91 ./etc/ssl/certs/NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem -> ../../../usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt
543lrwxrwxrwx root root 86 ./etc/ssl/certs/Network_Solutions_Certificate_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt
544lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GA_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GA_CA.crt
545lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GB_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt
546lrwxrwxrwx root root 78 ./etc/ssl/certs/OISTE_WISeKey_Global_Root_GC_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt
547lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_1_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt
548lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_2_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt
549lrwxrwxrwx root root 65 ./etc/ssl/certs/QuoVadis_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt
550lrwxrwxrwx root root 68 ./etc/ssl/certs/QuoVadis_Root_CA_3_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt
551lrwxrwxrwx root root 65 ./etc/ssl/certs/QuoVadis_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt
552lrwxrwxrwx root root 63 ./etc/ssl/certs/QuoVadis_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt
553lrwxrwxrwx root root 63 ./etc/ssl/certs/Secure_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Secure_Global_CA.crt
554lrwxrwxrwx root root 66 ./etc/ssl/certs/SecureSign_RootCA11.pem -> ../../../usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt
555lrwxrwxrwx root root 61 ./etc/ssl/certs/SecureTrust_CA.pem -> ../../../usr/share/ca-certificates/mozilla/SecureTrust_CA.crt
556lrwxrwxrwx root root 77 ./etc/ssl/certs/Security_Communication_RootCA2.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt
557lrwxrwxrwx root root 77 ./etc/ssl/certs/Security_Communication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt
558lrwxrwxrwx root root 69 ./etc/ssl/certs/Sonera_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt
559lrwxrwxrwx root root 90 ./etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt
560lrwxrwxrwx root root 93 ./etc/ssl/certs/SSL.com_EV_Root_Certification_Authority_RSA_R2.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt
561lrwxrwxrwx root root 87 ./etc/ssl/certs/SSL.com_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt
562lrwxrwxrwx root root 87 ./etc/ssl/certs/SSL.com_Root_Certification_Authority_RSA.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt
563lrwxrwxrwx root root 79 ./etc/ssl/certs/Staat_der_Nederlanden_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt
564lrwxrwxrwx root root 81 ./etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G2.crt
565lrwxrwxrwx root root 81 ./etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt
566lrwxrwxrwx root root 67 ./etc/ssl/certs/Starfield_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt
567lrwxrwxrwx root root 88 ./etc/ssl/certs/Starfield_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt
568lrwxrwxrwx root root 97 ./etc/ssl/certs/Starfield_Services_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt
569lrwxrwxrwx root root 69 ./etc/ssl/certs/SwissSign_Gold_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt
570lrwxrwxrwx root root 71 ./etc/ssl/certs/SwissSign_Silver_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt
571lrwxrwxrwx root root 62 ./etc/ssl/certs/SZAFIR_ROOT_CA2.pem -> ../../../usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt
572lrwxrwxrwx root root 58 ./etc/ssl/certs/Taiwan_GRCA.pem -> ../../../usr/share/ca-certificates/mozilla/Taiwan_GRCA.crt
573lrwxrwxrwx root root 69 ./etc/ssl/certs/TeliaSonera_Root_CA_v1.pem -> ../../../usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt
574lrwxrwxrwx root root 74 ./etc/ssl/certs/thawte_Primary_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G2.crt
575lrwxrwxrwx root root 74 ./etc/ssl/certs/thawte_Primary_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G3.crt
576lrwxrwxrwx root root 69 ./etc/ssl/certs/thawte_Primary_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA.crt
577lrwxrwxrwx root root 61 ./etc/ssl/certs/TrustCor_ECA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt
578lrwxrwxrwx root root 69 ./etc/ssl/certs/TrustCor_RootCert_CA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt
579lrwxrwxrwx root root 69 ./etc/ssl/certs/TrustCor_RootCert_CA-2.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt
580lrwxrwxrwx root root 66 ./etc/ssl/certs/Trustis_FPS_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt
581lrwxrwxrwx root root 75 ./etc/ssl/certs/T-TeleSec_GlobalRoot_Class_2.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt
582lrwxrwxrwx root root 75 ./etc/ssl/certs/T-TeleSec_GlobalRoot_Class_3.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt
583lrwxrwxrwx root root 92 ./etc/ssl/certs/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem -> ../../../usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt
584lrwxrwxrwx root root 66 ./etc/ssl/certs/TWCA_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt
585lrwxrwxrwx root root 80 ./etc/ssl/certs/TWCA_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt
586lrwxrwxrwx root root 84 ./etc/ssl/certs/USERTrust_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt
587lrwxrwxrwx root root 84 ./etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt
588lrwxrwxrwx root root 107 ./etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.crt
589lrwxrwxrwx root root 107 ./etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.crt
590lrwxrwxrwx root root 107 ./etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.crt
591lrwxrwxrwx root root 94 ./etc/ssl/certs/VeriSign_Universal_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt
592lrwxrwxrwx root root 67 ./etc/ssl/certs/XRamp_Global_CA_Root.pem -> ../../../usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt
593-rw-r--r-- root root 10909 ./etc/ssl/openssl.cnf
594drwxr-xr-x root root 4096 ./etc/ssl/private
595-rw-r--r-- root root 2128 ./etc/sysctl.conf
596-rw-r--r-- root root 69 ./etc/syslog.conf
597-rw-r--r-- root root 651 ./etc/syslog-startup.conf
598drwxr-xr-x root root 4096 ./etc/terminfo
599drwxr-xr-x root root 4096 ./etc/terminfo/a
600-rw-r--r-- root root 1481 ./etc/terminfo/a/ansi
601drwxr-xr-x root root 4096 ./etc/terminfo/d
602-rw-r--r-- root root 308 ./etc/terminfo/d/dumb
603drwxr-xr-x root root 4096 ./etc/terminfo/l
604-rw-r--r-- root root 1730 ./etc/terminfo/l/linux
605drwxr-xr-x root root 4096 ./etc/terminfo/r
606-rw-r--r-- root root 2222 ./etc/terminfo/r/rxvt
607drwxr-xr-x root root 4096 ./etc/terminfo/s
608-rw-r--r-- root root 1573 ./etc/terminfo/s/screen
609-rw-r--r-- root root 1687 ./etc/terminfo/s/screen-256color
610-rw-r--r-- root root 1004 ./etc/terminfo/s/sun
611drwxr-xr-x root root 4096 ./etc/terminfo/v
612-rw-r--r-- root root 1190 ./etc/terminfo/v/vt100
613-rw-r--r-- root root 1184 ./etc/terminfo/v/vt102
614-rw-r--r-- root root 1377 ./etc/terminfo/v/vt200
615-rw-r--r-- root root 1377 ./etc/terminfo/v/vt220
616-rw-r--r-- root root 470 ./etc/terminfo/v/vt52
617drwxr-xr-x root root 4096 ./etc/terminfo/x
618-rw-r--r-- root root 3780 ./etc/terminfo/x/xterm-256color
619-rw-r--r-- root root 1551 ./etc/terminfo/x/xterm-color
620-rw-r--r-- root root 2240 ./etc/terminfo/x/xterm-xfree86
621lrwxrwxrwx root root 11 ./etc/terminfo/x/xterm -> xterm-color
622-rw-r--r-- root root 15 ./etc/timestamp
623drwxr-xr-x root root 4096 ./etc/udev
624drwxr-xr-x root root 4096 ./etc/udev/rules.d
625-rw-r--r-- root root 0 ./etc/udev/rules.d/80-net-name-slot.rules
626-rw-r--r-- root root 885 ./etc/udev/rules.d/local.rules
627-rw-r--r-- root root 49 ./etc/udev/udev.conf
628drwxr-xr-x root root 4096 ./etc/udhcpc.d
629-rwxr-xr-x root root 2652 ./etc/udhcpc.d/50default
630-rw-r--r-- root root 15 ./etc/version
631-rw-r--r-- root root 642 ./etc/xattr.conf
632drwxr-xr-x root root 4096 ./home
633drwx------ root root 4096 ./home/root
634drwxr-xr-x root root 4096 ./lib
635drwxr-xr-x root root 4096 ./lib/depmod.d
636-rw-r--r-- root root 71 ./lib/depmod.d/search.conf
637-rwxr-xr-x root root 177712 ./lib/ld-2.31.so
638lrwxrwxrwx root root 10 ./lib/ld-linux-x86-64.so.2 -> ld-2.31.so
639-rwxr-xr-x root root 18696 ./lib/libanl-2.31.so
640lrwxrwxrwx root root 14 ./lib/libanl.so.1 -> libanl-2.31.so
641-rwxr-xr-x root root 326600 ./lib/libblkid.so.1.1.0
642lrwxrwxrwx root root 17 ./lib/libblkid.so.1 -> libblkid.so.1.1.0
643-rwxr-xr-x root root 14296 ./lib/libBrokenLocale-2.31.so
644lrwxrwxrwx root root 23 ./lib/libBrokenLocale.so.1 -> libBrokenLocale-2.31.so
645-rwxr-xr-x root root 1806504 ./lib/libc-2.31.so
646-rwxr-xr-x root root 26512 ./lib/libcap-ng.so.0.0.0
647lrwxrwxrwx root root 18 ./lib/libcap-ng.so.0 -> libcap-ng.so.0.0.0
648-rw-r--r-- root root 38832 ./lib/libcap.so.2.34
649lrwxrwxrwx root root 14 ./lib/libcap.so.2 -> libcap.so.2.34
650lrwxrwxrwx root root 11 ./lib/libcap.so -> libcap.so.2
651-rwxr-xr-x root root 18320 ./lib/libcom_err.so.2.1
652lrwxrwxrwx root root 17 ./lib/libcom_err.so.2 -> libcom_err.so.2.1
653lrwxrwxrwx root root 15 ./lib/libcom_err.so -> libcom_err.so.2
654lrwxrwxrwx root root 12 ./lib/libc.so.6 -> libc-2.31.so
655-rwxr-xr-x root root 14360 ./lib/libdl-2.31.so
656lrwxrwxrwx root root 13 ./lib/libdl.so.2 -> libdl-2.31.so
657-rwxr-xr-x root root 44616 ./lib/libe2p.so.2.3
658lrwxrwxrwx root root 13 ./lib/libe2p.so.2 -> libe2p.so.2.3
659lrwxrwxrwx root root 11 ./lib/libe2p.so -> libe2p.so.2
660-rwxr-xr-x root root 426264 ./lib/libext2fs.so.2.4
661lrwxrwxrwx root root 16 ./lib/libext2fs.so.2 -> libext2fs.so.2.4
662lrwxrwxrwx root root 14 ./lib/libext2fs.so -> libext2fs.so.2
663-rwxr-xr-x root root 440104 ./lib/libfdisk.so.1.1.0
664lrwxrwxrwx root root 17 ./lib/libfdisk.so.1 -> libfdisk.so.1.1.0
665-rw-r--r-- root root 132 ./lib/libgcc_s.so
666-rw-r--r-- root root 100248 ./lib/libgcc_s.so.1
667-rwxr-xr-x root root 1312800 ./lib/libm-2.31.so
668-rwxr-xr-x root root 379432 ./lib/libmount.so.1.1.0
669lrwxrwxrwx root root 17 ./lib/libmount.so.1 -> libmount.so.1.1.0
670lrwxrwxrwx root root 12 ./lib/libm.so.6 -> libm-2.31.so
671-rwxr-xr-x root root 174104 ./lib/libmvec-2.31.so
672lrwxrwxrwx root root 15 ./lib/libmvec.so.1 -> libmvec-2.31.so
673-rwxr-xr-x root root 157512 ./lib/libncurses.so.5.9
674lrwxrwxrwx root root 17 ./lib/libncurses.so.5 -> libncurses.so.5.9
675-rwxr-xr-x root root 210760 ./lib/libncursesw.so.5.9
676lrwxrwxrwx root root 18 ./lib/libncursesw.so.5 -> libncursesw.so.5.9
677-rwxr-xr-x root root 92184 ./lib/libnsl-2.31.so
678lrwxrwxrwx root root 14 ./lib/libnsl.so.1 -> libnsl-2.31.so
679-rwxr-xr-x root root 35288 ./lib/libnss_compat-2.31.so
680lrwxrwxrwx root root 21 ./lib/libnss_compat.so.2 -> libnss_compat-2.31.so
681-rwxr-xr-x root root 30752 ./lib/libnss_db-2.31.so
682lrwxrwxrwx root root 17 ./lib/libnss_db.so.2 -> libnss_db-2.31.so
683-rwxr-xr-x root root 22560 ./lib/libnss_dns-2.31.so
684lrwxrwxrwx root root 18 ./lib/libnss_dns.so.2 -> libnss_dns-2.31.so
685-rwxr-xr-x root root 51232 ./lib/libnss_files-2.31.so
686lrwxrwxrwx root root 20 ./lib/libnss_files.so.2 -> libnss_files-2.31.so
687-rwxr-xr-x root root 22560 ./lib/libnss_hesiod-2.31.so
688lrwxrwxrwx root root 21 ./lib/libnss_hesiod.so.2 -> libnss_hesiod-2.31.so
689-rwxr-xr-x root root 113296 ./lib/libpthread-2.31.so
690lrwxrwxrwx root root 18 ./lib/libpthread.so.0 -> libpthread-2.31.so
691-rwxr-xr-x root root 88320 ./lib/libresolv-2.31.so
692lrwxrwxrwx root root 17 ./lib/libresolv.so.2 -> libresolv-2.31.so
693-rwxr-xr-x root root 39328 ./lib/librt-2.31.so
694lrwxrwxrwx root root 13 ./lib/librt.so.1 -> librt-2.31.so
695-rwxr-xr-x root root 231528 ./lib/libsmartcols.so.1.1.0
696lrwxrwxrwx root root 21 ./lib/libsmartcols.so.1 -> libsmartcols.so.1.1.0
697-rwxr-xr-x root root 34704 ./lib/libss.so.2.0
698lrwxrwxrwx root root 12 ./lib/libss.so.2 -> libss.so.2.0
699lrwxrwxrwx root root 10 ./lib/libss.so -> libss.so.2
700-rwxr-xr-x root root 35416 ./lib/libthread_db-1.0.so
701lrwxrwxrwx root root 19 ./lib/libthread_db.so.1 -> libthread_db-1.0.so
702-rwxr-xr-x root root 175208 ./lib/libtinfo.so.5.9
703lrwxrwxrwx root root 15 ./lib/libtinfo.so.5 -> libtinfo.so.5.9
704-rwxr-xr-x root root 157912 ./lib/libudev.so.1.6.3
705lrwxrwxrwx root root 16 ./lib/libudev.so.1 -> libudev.so.1.6.3
706-rwxr-xr-x root root 14360 ./lib/libutil-2.31.so
707lrwxrwxrwx root root 15 ./lib/libutil.so.1 -> libutil-2.31.so
708-rwxr-xr-x root root 30752 ./lib/libuuid.so.1.3.0
709lrwxrwxrwx root root 16 ./lib/libuuid.so.1 -> libuuid.so.1.3.0
710-rwxr-xr-x root root 39816 ./lib/libwrap.so.0.7.6
711lrwxrwxrwx root root 16 ./lib/libwrap.so.0 -> libwrap.so.0.7.6
712-rwxr-xr-x root root 100312 ./lib/libz.so.1.2.11
713lrwxrwxrwx root root 14 ./lib/libz.so.1 -> libz.so.1.2.11
714drwxr-xr-x root root 4096 ./lib/modprobe.d
715drwxr-xr-x root root 4096 ./lib/modules
716drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard
717drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel
718drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/drivers
719drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/drivers/video
720drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/drivers/video/fbdev
721-rw-r--r-- root root 46440 ./lib/modules/5.4.43-yocto-standard/kernel/drivers/video/fbdev/uvesafb.ko
722drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net
723drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4
724drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4/netfilter
725-rw-r--r-- root root 6912 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4/netfilter/iptable_filter.ko
726-rw-r--r-- root root 6272 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4/netfilter/iptable_nat.ko
727-rw-r--r-- root root 32144 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4/netfilter/ip_tables.ko
728-rw-r--r-- root root 6160 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv4/netfilter/nf_defrag_ipv4.ko
729drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv6
730drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv6/netfilter
731-rw-r--r-- root root 6928 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv6/netfilter/ip6table_filter.ko
732-rw-r--r-- root root 32640 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv6/netfilter/ip6_tables.ko
733-rw-r--r-- root root 16472 ./lib/modules/5.4.43-yocto-standard/kernel/net/ipv6/netfilter/nf_defrag_ipv6.ko
734drwxr-xr-x root root 4096 ./lib/modules/5.4.43-yocto-standard/kernel/net/netfilter
735-rw-r--r-- root root 164400 ./lib/modules/5.4.43-yocto-standard/kernel/net/netfilter/nf_conntrack.ko
736-rw-r--r-- root root 45712 ./lib/modules/5.4.43-yocto-standard/kernel/net/netfilter/nf_nat.ko
737-rw-r--r-- root root 49480 ./lib/modules/5.4.43-yocto-standard/kernel/net/netfilter/x_tables.ko
738-rw-r--r-- root root 199 ./lib/modules/5.4.43-yocto-standard/modules.alias
739-rw-r--r-- root root 443 ./lib/modules/5.4.43-yocto-standard/modules.alias.bin
740-rw-r--r-- root root 9285 ./lib/modules/5.4.43-yocto-standard/modules.builtin
741-rw-r--r-- root root 24578 ./lib/modules/5.4.43-yocto-standard/modules.builtin.alias.bin
742-rw-r--r-- root root 10874 ./lib/modules/5.4.43-yocto-standard/modules.builtin.bin
743-rw-r--r-- root root 68434 ./lib/modules/5.4.43-yocto-standard/modules.builtin.modinfo
744-rw-r--r-- root root 1099 ./lib/modules/5.4.43-yocto-standard/modules.dep
745-rw-r--r-- root root 1794 ./lib/modules/5.4.43-yocto-standard/modules.dep.bin
746-rw-r--r-- root root 0 ./lib/modules/5.4.43-yocto-standard/modules.devname
747-rw-r--r-- root root 17759 ./lib/modules/5.4.43-yocto-standard/modules.order
748-rw-r--r-- root root 55 ./lib/modules/5.4.43-yocto-standard/modules.softdep
749-rw-r--r-- root root 7817 ./lib/modules/5.4.43-yocto-standard/modules.symbols
750-rw-r--r-- root root 9233 ./lib/modules/5.4.43-yocto-standard/modules.symbols.bin
751drwxr-xr-x root root 4096 ./lib/udev
752-rwxr-xr-x root root 104640 ./lib/udev/ata_id
753-rwxr-xr-x root root 116936 ./lib/udev/cdrom_id
754-rwxr-xr-x root root 100552 ./lib/udev/collect
755-rwxr-xr-x root root 14296 ./lib/udev/mtd_probe
756drwxr-xr-x root root 4096 ./lib/udev/rules.d
757-rw-r--r-- root root 321 ./lib/udev/rules.d/01-md-raid-creating.rules
758-rw-r--r-- root root 121 ./lib/udev/rules.d/50-firmware.rules
759-rw-r--r-- root root 3677 ./lib/udev/rules.d/50-udev-default.rules
760-rw-r--r-- root root 620 ./lib/udev/rules.d/60-block.rules
761-rw-r--r-- root root 1071 ./lib/udev/rules.d/60-cdrom_id.rules
762-rw-r--r-- root root 413 ./lib/udev/rules.d/60-drm.rules
763-rw-r--r-- root root 974 ./lib/udev/rules.d/60-evdev.rules
764-rw-r--r-- root root 282 ./lib/udev/rules.d/60-input-id.rules
765-rw-r--r-- root root 616 ./lib/udev/rules.d/60-persistent-alsa.rules
766-rw-r--r-- root root 2710 ./lib/udev/rules.d/60-persistent-input.rules
767-rw-r--r-- root root 6521 ./lib/udev/rules.d/60-persistent-storage.rules
768-rw-r--r-- root root 1509 ./lib/udev/rules.d/60-persistent-storage-tape.rules
769-rw-r--r-- root root 769 ./lib/udev/rules.d/60-persistent-v4l.rules
770-rw-r--r-- root root 727 ./lib/udev/rules.d/60-sensor.rules
771-rw-r--r-- root root 1190 ./lib/udev/rules.d/60-serial.rules
772-rw-r--r-- root root 2134 ./lib/udev/rules.d/63-md-raid-arrays.rules
773-rw-r--r-- root root 387 ./lib/udev/rules.d/64-btrfs-dm.rules
774-rw-r--r-- root root 574 ./lib/udev/rules.d/64-btrfs.rules
775-rw-r--r-- root root 1444 ./lib/udev/rules.d/64-md-raid-assembly.rules
776-rw-r--r-- root root 846 ./lib/udev/rules.d/69-md-clustered-confirm-device.rules
777-rw-r--r-- root root 432 ./lib/udev/rules.d/70-joystick.rules
778-rw-r--r-- root root 734 ./lib/udev/rules.d/70-mouse.rules
779-rw-r--r-- root root 473 ./lib/udev/rules.d/70-touchpad.rules
780-rw-r--r-- root root 452 ./lib/udev/rules.d/75-net-description.rules
781-rw-r--r-- root root 174 ./lib/udev/rules.d/75-probe_mtd.rules
782-rw-r--r-- root root 4816 ./lib/udev/rules.d/78-sound-card.rules
783-rw-r--r-- root root 615 ./lib/udev/rules.d/80-drivers.rules
784-rw-r--r-- root root 491 ./lib/udev/rules.d/80-net-name-slot.rules
785-rwxr-xr-x root root 109304 ./lib/udev/scsi_id
786-rwxr-xr-x root root 67776 ./lib/udev/v4l_id
787drwxr-xr-x root root 4096 ./media
788drwxr-xr-x root root 4096 ./mnt
789dr-xr-xr-x root root 4096 ./proc
790drwxr-xr-x root root 4096 ./run
791drwxr-xr-x root root 4096 ./sbin
792-rwxr-xr-x root root 64736 ./sbin/agetty
793-rwxr-xr-x root root 34792 ./sbin/badblocks
794lrwxrwxrwx root root 22 ./sbin/blkid -> /sbin/blkid.util-linux
795-rwxr-xr-x root root 120912 ./sbin/blkid.util-linux
796lrwxrwxrwx root root 25 ./sbin/blockdev -> /sbin/blockdev.util-linux
797-rwxr-xr-x root root 63536 ./sbin/blockdev.util-linux
798-rwxr-xr-x root root 22736 ./sbin/bootlogd
799-rwxr-xr-x root root 104568 ./sbin/bridge
800-rwxr-xr-x root root 96664 ./sbin/cfdisk
801-rwxr-xr-x root root 38952 ./sbin/ctrlaltdel
802-rwxr-xr-x root root 239064 ./sbin/debugfs
803lrwxrwxrwx root root 11 ./sbin/depmod.kmod -> ../bin/kmod
804lrwxrwxrwx root root 17 ./sbin/depmod -> /sbin/depmod.kmod
805-rwxr-xr-x root root 30768 ./sbin/dumpe2fs
806-rwxr-xr-x root root 14376 ./sbin/e2freefrag
807-rwxr-xr-x root root 330808 ./sbin/e2fsck
808-rwxr-xr-x root root 38952 ./sbin/e2image
809-rwxr-xr-x root root 30768 ./sbin/e2mmpstatus
810-rwxr-xr-x root root 22560 ./sbin/e2undo
811-rwxr-xr-x root root 26656 ./sbin/e4crypt
812-rwxr-xr-x root root 34776 ./sbin/e4defrag
813lrwxrwxrwx root root 22 ./sbin/fdisk -> /sbin/fdisk.util-linux
814-rwxr-xr-x root root 149600 ./sbin/fdisk.util-linux
815-rwxr-xr-x root root 18416 ./sbin/filefrag
816-rwxr-xr-x root root 330808 ./sbin/fsck.ext2
817-rwxr-xr-x root root 330808 ./sbin/fsck.ext3
818-rwxr-xr-x root root 330808 ./sbin/fsck.ext4
819lrwxrwxrwx root root 21 ./sbin/fsck -> /sbin/fsck.util-linux
820-rwxr-xr-x root root 55392 ./sbin/fsck.util-linux
821-rwxr-xr-x root root 14296 ./sbin/fstab-decode
822lrwxrwxrwx root root 23 ./sbin/fstrim -> /sbin/fstrim.util-linux
823-rwxr-xr-x root root 71728 ./sbin/fstrim.util-linux
824lrwxrwxrwx root root 12 ./sbin/getty -> /sbin/agetty
825lrwxrwxrwx root root 19 ./sbin/halt -> /sbin/halt.sysvinit
826-rwsr-xr-- root shutdown 22512 ./sbin/halt.sysvinit
827lrwxrwxrwx root root 24 ./sbin/hwclock -> /sbin/hwclock.util-linux
828-rwxr-xr-x root root 80048 ./sbin/hwclock.util-linux
829-rwxr-xr-x root root 3109 ./sbin/ifcfg
830lrwxrwxrwx root root 19 ./sbin/ifconfig -> /bin/busybox.nosuid
831lrwxrwxrwx root root 19 ./sbin/ifdown -> /bin/busybox.nosuid
832lrwxrwxrwx root root 19 ./sbin/ifup -> /bin/busybox.nosuid
833lrwxrwxrwx root root 19 ./sbin/init -> /sbin/init.sysvinit
834-rwxr-xr-x root root 47944 ./sbin/init.sysvinit
835lrwxrwxrwx root root 11 ./sbin/insmod.kmod -> ../bin/kmod
836lrwxrwxrwx root root 17 ./sbin/insmod -> /sbin/insmod.kmod
837-rwxr-xr-x root root 619960 ./sbin/ip.iproute2
838lrwxrwxrwx root root 17 ./sbin/ip -> /sbin/ip.iproute2
839-rwxr-xr-x root root 26664 ./sbin/killall5
840lrwxrwxrwx root root 19 ./sbin/klogd -> /bin/busybox.nosuid
841-rwxr-xr-x root root 887640 ./sbin/ldconfig
842lrwxrwxrwx root root 19 ./sbin/loadkmap -> /bin/busybox.nosuid
843lrwxrwxrwx root root 19 ./sbin/logread -> /bin/busybox.nosuid
844-rwxr-xr-x root root 14296 ./sbin/logsave
845lrwxrwxrwx root root 24 ./sbin/losetup -> /sbin/losetup.util-linux
846-rwxr-xr-x root root 112808 ./sbin/losetup.util-linux
847lrwxrwxrwx root root 15 ./sbin/lsmod -> /bin/lsmod.kmod
848-rwxr-xr-x root root 595280 ./sbin/mdadm
849-rwxr-xr-x root root 328880 ./sbin/mdmon
850-rwxr-xr-x root root 137512 ./sbin/mke2fs.e2fsprogs
851lrwxrwxrwx root root 22 ./sbin/mke2fs -> /sbin/mke2fs.e2fsprogs
852-rwxr-xr-x root root 137512 ./sbin/mkfs.ext2.e2fsprogs
853lrwxrwxrwx root root 25 ./sbin/mkfs.ext2 -> /sbin/mkfs.ext2.e2fsprogs
854-rwxr-xr-x root root 137512 ./sbin/mkfs.ext3
855-rwxr-xr-x root root 137512 ./sbin/mkfs.ext4
856-rwxr-xr-x root root 14296 ./sbin/mklost+found
857lrwxrwxrwx root root 23 ./sbin/mkswap -> /sbin/mkswap.util-linux
858-rwxr-xr-x root root 104504 ./sbin/mkswap.util-linux
859lrwxrwxrwx root root 11 ./sbin/modinfo.kmod -> ../bin/kmod
860lrwxrwxrwx root root 18 ./sbin/modinfo -> /sbin/modinfo.kmod
861lrwxrwxrwx root root 11 ./sbin/modprobe.kmod -> ../bin/kmod
862lrwxrwxrwx root root 19 ./sbin/modprobe -> /sbin/modprobe.kmod
863lrwxrwxrwx root root 20 ./sbin/nologin -> /sbin/nologin.shadow
864-rwxr-xr-x root root 14296 ./sbin/nologin.shadow
865-rwxr-xr-x root root 14384 ./sbin/nologin.util-linux
866lrwxrwxrwx root root 27 ./sbin/pivot_root -> /sbin/pivot_root.util-linux
867-rwxr-xr-x root root 14384 ./sbin/pivot_root.util-linux
868-rwxr-xr-x root root 2460 ./sbin/populate-extfs.sh
869lrwxrwxrwx root root 23 ./sbin/poweroff -> /sbin/poweroff.sysvinit
870lrwxrwxrwx root root 13 ./sbin/poweroff.sysvinit -> halt.sysvinit
871lrwxrwxrwx root root 21 ./sbin/reboot -> /sbin/reboot.sysvinit
872lrwxrwxrwx root root 13 ./sbin/reboot.sysvinit -> halt.sysvinit
873lrwxrwxrwx root root 11 ./sbin/rmmod.kmod -> ../bin/kmod
874lrwxrwxrwx root root 16 ./sbin/rmmod -> /sbin/rmmod.kmod
875lrwxrwxrwx root root 19 ./sbin/route -> /bin/busybox.nosuid
876-rwxr-xr-x root root 208 ./sbin/routef
877-rwxr-xr-x root root 1656 ./sbin/routel
878-rwxr-xr-x root root 75832 ./sbin/rtmon
879-rwxr-xr-x root root 70 ./sbin/rtpr
880lrwxrwxrwx root root 23 ./sbin/runlevel -> /sbin/runlevel.sysvinit
881-rwxr-xr-x root root 14304 ./sbin/runlevel.sysvinit
882lrwxrwxrwx root root 19 ./sbin/setconsole -> /bin/busybox.nosuid
883lrwxrwxrwx root root 23 ./sbin/shutdown -> /sbin/shutdown.sysvinit
884-rwsr-xr-- root shutdown 30744 ./sbin/shutdown.sysvinit
885lrwxrwxrwx root root 19 ./sbin/start-stop-daemon -> /bin/busybox.nosuid
886lrwxrwxrwx root root 24 ./sbin/sulogin -> /sbin/sulogin.util-linux
887-rwxr-xr-x root root 47152 ./sbin/sulogin.util-linux
888lrwxrwxrwx root root 24 ./sbin/swapoff -> /sbin/swapoff.util-linux
889-rwxr-xr-x root root 22576 ./sbin/swapoff.util-linux
890lrwxrwxrwx root root 23 ./sbin/swapon -> /sbin/swapon.util-linux
891-rwxr-xr-x root root 51248 ./sbin/swapon.util-linux
892lrwxrwxrwx root root 28 ./sbin/switch_root -> /sbin/switch_root.util-linux
893-rwxr-xr-x root root 14384 ./sbin/switch_root.util-linux
894-rwxr-xr-x root root 30768 ./sbin/sysctl.procps
895lrwxrwxrwx root root 19 ./sbin/sysctl -> /sbin/sysctl.procps
896lrwxrwxrwx root root 19 ./sbin/syslogd -> /bin/busybox.nosuid
897lrwxrwxrwx root root 4 ./sbin/telinit -> init
898lrwxrwxrwx root root 16 ./sbin/udevadm -> /usr/bin/udevadm
899-rwxr-xr-x root root 334168 ./sbin/udevd
900lrwxrwxrwx root root 19 ./sbin/udhcpc -> /bin/busybox.nosuid
901-rwxr-xr-x root root 133264 ./sbin/v86d
902lrwxrwxrwx root root 17 ./sbin/vigr -> /sbin/vigr.shadow
903lrwxrwxrwx root root 11 ./sbin/vigr.shadow -> vipw.shadow
904lrwxrwxrwx root root 17 ./sbin/vipw -> /sbin/vipw.shadow
905-rwxr-xr-x root root 61496 ./sbin/vipw.shadow
906dr-xr-xr-x root root 4096 ./sys
907drwxrwxrwt root root 4096 ./tmp
908drwxr-xr-x root root 4096 ./usr
909drwxr-xr-x root root 20480 ./usr/bin
910lrwxrwxrwx root root 36 ./usr/bin/addr2line -> /usr/bin/x86_64-poky-linux-addr2line
911-rwxr-xr-x root root 43208 ./usr/bin/arch.coreutils
912lrwxrwxrwx root root 23 ./usr/bin/arch -> /usr/bin/arch.coreutils
913lrwxrwxrwx root root 29 ./usr/bin/ar -> /usr/bin/x86_64-poky-linux-ar
914lrwxrwxrwx root root 29 ./usr/bin/as -> /usr/bin/x86_64-poky-linux-as
915-rwxr-xr-x root root 14288 ./usr/bin/attr
916lrwxrwxrwx root root 13 ./usr/bin/awk -> /usr/bin/gawk
917-rwxr-xr-x root root 63680 ./usr/bin/b2sum
918-rwxr-xr-x root root 47264 ./usr/bin/base32
919-rwxr-xr-x root root 47272 ./usr/bin/base64.coreutils
920-rwxr-xr-x root root 43176 ./usr/bin/basename.coreutils
921lrwxrwxrwx root root 27 ./usr/bin/basename -> /usr/bin/basename.coreutils
922-rwxr-xr-x root root 59552 ./usr/bin/basenc
923-rwxr-xr-x root root 96928 ./usr/bin/bc.bc
924lrwxrwxrwx root root 14 ./usr/bin/bc -> /usr/bin/bc.bc
925lrwxrwxrwx root root 19 ./usr/bin/[[ -> /bin/busybox.nosuid
926-rwxr-xr-x root root 455224 ./usr/bin/bison
927-rwxr-xr-x root root 933632 ./usr/bin/btrfs
928lrwxrwxrwx root root 5 ./usr/bin/btrfsck -> btrfs
929-rwxr-xr-x root root 531656 ./usr/bin/btrfs-convert
930-rwxr-xr-x root root 494856 ./usr/bin/btrfs-find-root
931-rwxr-xr-x root root 523456 ./usr/bin/btrfs-image
932-rwxr-xr-x root root 498888 ./usr/bin/btrfs-map-logical
933-rwxr-xr-x root root 494792 ./usr/bin/btrfs-select-super
934-rwxr-xr-x root root 494784 ./usr/bin/btrfstune
935lrwxrwxrwx root root 11 ./usr/bin/bunzip2.bzip2 -> bzip2.bzip2
936lrwxrwxrwx root root 22 ./usr/bin/bunzip2 -> /usr/bin/bunzip2.bzip2
937lrwxrwxrwx root root 11 ./usr/bin/bzcat.bzip2 -> bzip2.bzip2
938lrwxrwxrwx root root 20 ./usr/bin/bzcat -> /usr/bin/bzcat.bzip2
939lrwxrwxrwx root root 6 ./usr/bin/bzcmp -> bzdiff
940-rwxr-xr-x root root 2140 ./usr/bin/bzdiff
941lrwxrwxrwx root root 6 ./usr/bin/bzegrep -> bzgrep
942lrwxrwxrwx root root 6 ./usr/bin/bzfgrep -> bzgrep
943-rwxr-xr-x root root 2054 ./usr/bin/bzgrep
944-rwxr-xr-x root root 38952 ./usr/bin/bzip2.bzip2
945-rwxr-xr-x root root 14296 ./usr/bin/bzip2recover
946lrwxrwxrwx root root 20 ./usr/bin/bzip2 -> /usr/bin/bzip2.bzip2
947lrwxrwxrwx root root 6 ./usr/bin/bzless -> bzmore
948-rwxr-xr-x root root 1259 ./usr/bin/bzmore
949lrwxrwxrwx root root 23 ./usr/bin/cal -> /usr/bin/cal.util-linux
950-rwxr-xr-x root root 67936 ./usr/bin/cal.util-linux
951lrwxrwxrwx root root 34 ./usr/bin/c++filt -> /usr/bin/x86_64-poky-linux-c++filt
952-rwxr-xr-x root root 14288 ./usr/bin/chacl
953-rwsr-xr-x root root 71776 ./usr/bin/chage
954-rwxr-xr-x root root 71848 ./usr/bin/chcon.coreutils
955lrwxrwxrwx root root 24 ./usr/bin/chcon -> /usr/bin/chcon.coreutils
956-rwsr-xr-x root root 54032 ./usr/bin/chfn.shadow
957lrwxrwxrwx root root 20 ./usr/bin/chfn -> /usr/bin/chfn.shadow
958-rwxr-xr-x root root 63528 ./usr/bin/chmem
959-rwxr-xr-x root root 51240 ./usr/bin/choom
960lrwxrwxrwx root root 24 ./usr/bin/chrt -> /usr/bin/chrt.util-linux
961-rwxr-xr-x root root 34864 ./usr/bin/chrt.util-linux
962-rwsr-xr-x root root 53904 ./usr/bin/chsh.shadow
963lrwxrwxrwx root root 20 ./usr/bin/chsh -> /usr/bin/chsh.shadow
964lrwxrwxrwx root root 19 ./usr/bin/chvt -> /bin/busybox.nosuid
965-rwxr-xr-x root root 43176 ./usr/bin/cksum.coreutils
966lrwxrwxrwx root root 24 ./usr/bin/cksum -> /usr/bin/cksum.coreutils
967lrwxrwxrwx root root 19 ./usr/bin/clear -> /bin/busybox.nosuid
968-rwxr-xr-x root root 47176 ./usr/bin/cmp.diffutils
969lrwxrwxrwx root root 22 ./usr/bin/cmp -> /usr/bin/cmp.diffutils
970-rwxr-xr-x root root 34848 ./usr/bin/col
971-rwxr-xr-x root root 14368 ./usr/bin/colcrt
972-rwxr-xr-x root root 30760 ./usr/bin/colrm
973-rwxr-xr-x root root 51240 ./usr/bin/column
974-rwxr-xr-x root root 51400 ./usr/bin/comm.coreutils
975lrwxrwxrwx root root 23 ./usr/bin/comm -> /usr/bin/comm.coreutils
976-rwxr-xr-x root root 1342 ./usr/bin/compile_et
977-rwxr-xr-x root root 6214 ./usr/bin/c_rehash
978-rwxr-xr-x root root 125128 ./usr/bin/csplit.coreutils
979lrwxrwxrwx root root 25 ./usr/bin/csplit -> /usr/bin/csplit.coreutils
980-rwxr-xr-x root root 55496 ./usr/bin/cut.coreutils
981lrwxrwxrwx root root 22 ./usr/bin/cut -> /usr/bin/cut.coreutils
982-rwxr-xr-x root root 14304 ./usr/bin/dbus-cleanup-sockets
983-rwxr-xr-x root root 223688 ./usr/bin/dbus-daemon
984-rwxr-xr-x root root 30680 ./usr/bin/dbus-launch
985-rwxr-xr-x root root 30688 ./usr/bin/dbus-monitor
986-rwxr-xr-x root root 14304 ./usr/bin/dbus-run-session
987-rwxr-xr-x root root 30680 ./usr/bin/dbus-send
988-rwxr-xr-x root root 26672 ./usr/bin/dbus-test-tool
989-rwxr-xr-x root root 14320 ./usr/bin/dbus-update-activation-environment
990-rwxr-xr-x root root 14296 ./usr/bin/dbus-uuidgen
991-rwxr-xr-x root root 55352 ./usr/bin/dc.bc
992lrwxrwxrwx root root 14 ./usr/bin/dc -> /usr/bin/dc.bc
993lrwxrwxrwx root root 19 ./usr/bin/deallocvt -> /bin/busybox.nosuid
994-rwxr-xr-x root root 105232 ./usr/bin/df.coreutils
995-rwxr-xr-x root root 67760 ./usr/bin/diff3
996-rwxr-xr-x root root 223544 ./usr/bin/diff.diffutils
997lrwxrwxrwx root root 23 ./usr/bin/diff -> /usr/bin/diff.diffutils
998-rwxr-xr-x root root 71864 ./usr/bin/dircolors.coreutils
999lrwxrwxrwx root root 28 ./usr/bin/dircolors -> /usr/bin/dircolors.coreutils
1000-rwxr-xr-x root root 162448 ./usr/bin/dir.coreutils
1001-rwxr-xr-x root root 43176 ./usr/bin/dirname.coreutils
1002lrwxrwxrwx root root 26 ./usr/bin/dirname -> /usr/bin/dirname.coreutils
1003lrwxrwxrwx root root 22 ./usr/bin/dir -> /usr/bin/dir.coreutils
1004-rwxr-xr-x root root 194760 ./usr/bin/du.coreutils
1005lrwxrwxrwx root root 19 ./usr/bin/dumpleases -> /bin/busybox.nosuid
1006lrwxrwxrwx root root 21 ./usr/bin/du -> /usr/bin/du.coreutils
1007lrwxrwxrwx root root 30 ./usr/bin/dwp -> /usr/bin/x86_64-poky-linux-dwp
1008lrwxrwxrwx root root 25 ./usr/bin/eject -> /usr/bin/eject.util-linux
1009-rwxr-xr-x root root 79920 ./usr/bin/eject.util-linux
1010lrwxrwxrwx root root 34 ./usr/bin/elfedit -> /usr/bin/x86_64-poky-linux-elfedit
1011-rwxr-xr-x root root 55904 ./usr/bin/env.coreutils
1012lrwxrwxrwx root root 22 ./usr/bin/env -> /usr/bin/env.coreutils
1013-rwxr-xr-x root root 39016 ./usr/bin/eu-ar
1014-rwxr-xr-x root root 28656 ./usr/bin/eu-elfclassify
1015-rwxr-xr-x root root 350840 ./usr/bin/eu-elfcmp
1016-rwxr-xr-x root root 31160 ./usr/bin/eu-elfcompress
1017-rwxr-xr-x root root 432760 ./usr/bin/eu-elflint
1018-rwxr-xr-x root root 22672 ./usr/bin/eu-findtextrel
1019-rwxr-xr-x root root 2911 ./usr/bin/eu-make-debug-archive
1020-rwxr-xr-x root root 355056 ./usr/bin/eu-objdump
1021-rwxr-xr-x root root 22568 ./usr/bin/eu-ranlib
1022-rwxr-xr-x root root 27600 ./usr/bin/eu-stack
1023-rwxr-xr-x root root 26736 ./usr/bin/eu-strings
1024-rwxr-xr-x root root 51240 ./usr/bin/eu-unstrip
1025-rwxr-xr-x root root 47304 ./usr/bin/expand.coreutils
1026lrwxrwxrwx root root 25 ./usr/bin/expand -> /usr/bin/expand.coreutils
1027-rwsr-xr-x root root 36336 ./usr/bin/expiry
1028-rwxr-xr-x root root 125096 ./usr/bin/expr.coreutils
1029lrwxrwxrwx root root 23 ./usr/bin/expr -> /usr/bin/expr.coreutils
1030-rwxr-xr-x root root 84168 ./usr/bin/factor.coreutils
1031lrwxrwxrwx root root 25 ./usr/bin/factor -> /usr/bin/factor.coreutils
1032-rwxr-xr-x root root 22784 ./usr/bin/faillog
1033lrwxrwxrwx root root 29 ./usr/bin/fallocate -> /usr/bin/fallocate.util-linux
1034-rwxr-xr-x root root 30776 ./usr/bin/fallocate.util-linux
1035-rwxr-xr-x root root 92656 ./usr/bin/filan
1036-rwxr-xr-x root root 34904 ./usr/bin/fincore
1037-rwxr-xr-x root root 324064 ./usr/bin/find.findutils
1038-rwxr-xr-x root root 68840 ./usr/bin/findmnt
1039lrwxrwxrwx root root 23 ./usr/bin/find -> /usr/bin/find.findutils
1040-rwxr-xr-x root root 443016 ./usr/bin/flex
1041lrwxrwxrwx root root 4 ./usr/bin/flex++ -> flex
1042lrwxrwxrwx root root 25 ./usr/bin/flock -> /usr/bin/flock.util-linux
1043-rwxr-xr-x root root 34944 ./usr/bin/flock.util-linux
1044-rwxr-xr-x root root 55464 ./usr/bin/fmt.coreutils
1045lrwxrwxrwx root root 22 ./usr/bin/fmt -> /usr/bin/fmt.coreutils
1046-rwxr-xr-x root root 47272 ./usr/bin/fold.coreutils
1047lrwxrwxrwx root root 23 ./usr/bin/fold -> /usr/bin/fold.coreutils
1048-rwxr-xr-x root root 26672 ./usr/bin/free.procps
1049lrwxrwxrwx root root 20 ./usr/bin/free -> /usr/bin/free.procps
1050-rwxr-xr-x root root 1185 ./usr/bin/fsck.btrfs
1051-rwxr-xr-x root root 26576 ./usr/bin/funzip
1052lrwxrwxrwx root root 19 ./usr/bin/fuser -> /bin/busybox.nosuid
1053-rwxr-xr-x root root 653592 ./usr/bin/gawk
1054-rwxr-xr-x root root 653592 ./usr/bin/gawk-5.1.0
1055-rwxr-xr-x root root 26808 ./usr/bin/gencat
1056-rwxr-xr-x root root 34912 ./usr/bin/getconf
1057-rwxr-xr-x root root 35280 ./usr/bin/getent
1058-rwxr-xr-x root root 31312 ./usr/bin/getfacl
1059-rwxr-xr-x root root 23032 ./usr/bin/getfattr
1060lrwxrwxrwx root root 28 ./usr/bin/ginsttest-runner -> gnome-desktop-testing-runner
1061-rwxr-xr-x root root 4049 ./usr/bin/g-ir-annotation-tool
1062-rwxr-xr-x root root 187384 ./usr/bin/g-ir-compiler
1063-rwxr-xr-x root root 42968 ./usr/bin/g-ir-generate
1064-rwxr-xr-x root root 14296 ./usr/bin/g-ir-inspect
1065-rwxr-xr-x root root 4040 ./usr/bin/g-ir-scanner
1066-rwxr-xr-x root root 35384 ./usr/bin/gnome-desktop-testing-runner
1067-rwsr-xr-x root root 71624 ./usr/bin/gpasswd
1068lrwxrwxrwx root root 32 ./usr/bin/gprof -> /usr/bin/x86_64-poky-linux-gprof
1069-rwxr-xr-x root root 43176 ./usr/bin/groups.coreutils
1070-rwxr-xr-x root root 14296 ./usr/bin/groups.shadow
1071lrwxrwxrwx root root 22 ./usr/bin/groups -> /usr/bin/groups.shadow
1072-rwxr-xr-x root root 22568 ./usr/bin/hardlink
1073-rwxr-xr-x root root 55496 ./usr/bin/head.coreutils
1074lrwxrwxrwx root root 23 ./usr/bin/head -> /usr/bin/head.coreutils
1075lrwxrwxrwx root root 27 ./usr/bin/hexdump -> /usr/bin/hexdump.util-linux
1076-rwxr-xr-x root root 55352 ./usr/bin/hexdump.util-linux
1077-rwxr-xr-x root root 43176 ./usr/bin/hostid.coreutils
1078lrwxrwxrwx root root 25 ./usr/bin/hostid -> /usr/bin/hostid.coreutils
1079lrwxrwxrwx root root 7 ./usr/bin/i386 -> setarch
1080-rwxr-xr-x root root 59608 ./usr/bin/iconv
1081-rwxr-xr-x root root 55496 ./usr/bin/id.coreutils
1082lrwxrwxrwx root root 21 ./usr/bin/id -> /usr/bin/id.coreutils
1083-rwxr-xr-x root root 141560 ./usr/bin/install.coreutils
1084lrwxrwxrwx root root 26 ./usr/bin/install -> /usr/bin/install.coreutils
1085lrwxrwxrwx root root 26 ./usr/bin/ionice -> /usr/bin/ionice.util-linux
1086-rwxr-xr-x root root 30768 ./usr/bin/ionice.util-linux
1087-rwxr-xr-x root root 30824 ./usr/bin/ipcmk
1088-rwxr-xr-x root root 34856 ./usr/bin/ipcrm
1089-rwxr-xr-x root root 71720 ./usr/bin/ipcs
1090lrwxrwxrwx root root 30 ./usr/bin/iptables-xml -> /usr/sbin/xtables-legacy-multi
1091-rwxr-xr-x root root 30760 ./usr/bin/isosize
1092-rwxr-xr-x root root 59592 ./usr/bin/join.coreutils
1093lrwxrwxrwx root root 23 ./usr/bin/join -> /usr/bin/join.coreutils
1094lrwxrwxrwx root root 19 ./usr/bin/killall -> /bin/busybox.nosuid
1095lrwxrwxrwx root root 13 ./usr/bin/lastb.sysvinit -> last.sysvinit
1096lrwxrwxrwx root root 23 ./usr/bin/lastb -> /usr/bin/lastb.sysvinit
1097lrwxrwxrwx root root 15 ./usr/bin/lastb.util-linux -> last.util-linux
1098-rwxr-xr-x root root 32032 ./usr/bin/lastlog
1099-rwxr-xr-x root root 22512 ./usr/bin/last.sysvinit
1100lrwxrwxrwx root root 22 ./usr/bin/last -> /usr/bin/last.sysvinit
1101-rwxr-xr-x root root 47152 ./usr/bin/last.util-linux
1102-rwxr-xr-x root root 63648 ./usr/bin/lbracket.coreutils
1103lrwxrwxrwx root root 33 ./usr/bin/ld.bfd -> /usr/bin/x86_64-poky-linux-ld.bfd
1104lrwxrwxrwx root root 34 ./usr/bin/ld.gold -> /usr/bin/x86_64-poky-linux-ld.gold
1105lrwxrwxrwx root root 29 ./usr/bin/ld -> /usr/bin/x86_64-poky-linux-ld
1106lrwxrwxrwx root root 19 ./usr/bin/less -> /bin/busybox.nosuid
1107-rwxr-xr-x root root 173 ./usr/bin/libpng16-config
1108lrwxrwxrwx root root 15 ./usr/bin/libpng-config -> libpng16-config
1109-rwxr-xr-x root root 43176 ./usr/bin/link.coreutils
1110lrwxrwxrwx root root 23 ./usr/bin/link -> /usr/bin/link.coreutils
1111lrwxrwxrwx root root 7 ./usr/bin/linux32 -> setarch
1112lrwxrwxrwx root root 7 ./usr/bin/linux64 -> setarch
1113-rwxr-xr-x root root 54648 ./usr/bin/locale
1114-rwxr-xr-x root root 170408 ./usr/bin/locate
1115lrwxrwxrwx root root 26 ./usr/bin/logger -> /usr/bin/logger.util-linux
1116-rwxr-xr-x root root 47760 ./usr/bin/logger.util-linux
1117-rwxr-xr-x root root 43176 ./usr/bin/logname.coreutils
1118lrwxrwxrwx root root 26 ./usr/bin/logname -> /usr/bin/logname.coreutils
1119-rwxr-xr-x root root 14368 ./usr/bin/look
1120-rwxr-xr-x root root 14296 ./usr/bin/lsattr
1121-rwxr-xr-x root root 145448 ./usr/bin/lsblk
1122-rwxr-xr-x root root 100392 ./usr/bin/lscpu
1123-rwxr-xr-x root root 92200 ./usr/bin/lsipc
1124-rwxr-xr-x root root 39288 ./usr/bin/lslocks
1125-rwxr-xr-x root root 67624 ./usr/bin/lslogins
1126-rwxr-xr-x root root 67624 ./usr/bin/lsmem
1127-rwxr-xr-x root root 51240 ./usr/bin/lsns
1128lrwxrwxrwx root root 17 ./usr/bin/lzcat -> /usr/bin/lzcat.xz
1129lrwxrwxrwx root root 5 ./usr/bin/lzcat.xz -> xz.xz
1130lrwxrwxrwx root root 6 ./usr/bin/lzcmp -> xzdiff
1131lrwxrwxrwx root root 6 ./usr/bin/lzdiff -> xzdiff
1132lrwxrwxrwx root root 6 ./usr/bin/lzegrep -> xzgrep
1133lrwxrwxrwx root root 6 ./usr/bin/lzfgrep -> xzgrep
1134lrwxrwxrwx root root 6 ./usr/bin/lzgrep -> xzgrep
1135lrwxrwxrwx root root 6 ./usr/bin/lzless -> xzless
1136-rwxr-xr-x root root 14376 ./usr/bin/lzmadec
1137-rwxr-xr-x root root 14376 ./usr/bin/lzmainfo
1138lrwxrwxrwx root root 16 ./usr/bin/lzma -> /usr/bin/lzma.xz
1139lrwxrwxrwx root root 5 ./usr/bin/lzma.xz -> xz.xz
1140lrwxrwxrwx root root 6 ./usr/bin/lzmore -> xzmore
1141-rwxr-xr-x root root 243992 ./usr/bin/m4
1142-rwxr-xr-x root root 243208 ./usr/bin/make
1143-rwxr-xr-x root root 22712 ./usr/bin/makedb
1144-rwxr-xr-x root root 34920 ./usr/bin/mcookie
1145-rwxr-xr-x root root 55496 ./usr/bin/md5sum.coreutils
1146lrwxrwxrwx root root 25 ./usr/bin/md5sum -> /usr/bin/md5sum.coreutils
1147-rwxr-xr-x root root 14304 ./usr/bin/mesg.sysvinit
1148lrwxrwxrwx root root 22 ./usr/bin/mesg -> /usr/bin/mesg.sysvinit
1149-rwxr-xr-x root root 14376 ./usr/bin/mesg.util-linux
1150lrwxrwxrwx root root 19 ./usr/bin/microcom -> /bin/busybox.nosuid
1151-rwxr-xr-x root root 1102 ./usr/bin/mk_cmds
1152-rwxr-xr-x root root 47272 ./usr/bin/mkfifo.coreutils
1153lrwxrwxrwx root root 25 ./usr/bin/mkfifo -> /usr/bin/mkfifo.coreutils
1154-rwxr-xr-x root root 523456 ./usr/bin/mkfs.btrfs
1155-rwxr-xr-x root root 55464 ./usr/bin/mktemp.coreutils
1156-rwxr-xr-x root root 34856 ./usr/bin/namei
1157lrwxrwxrwx root root 19 ./usr/bin/nc -> /bin/busybox.nosuid
1158-rwxr-xr-x root root 173 ./usr/bin/ncurses5-config
1159-rwxr-xr-x root root 173 ./usr/bin/ncurses6-config
1160-rwxr-xr-x root root 175 ./usr/bin/ncursesw5-config
1161-rwxr-xr-x root root 175 ./usr/bin/ncursesw6-config
1162-rwsr-xr-x root root 41136 ./usr/bin/newgidmap
1163-rwsr-xr-x root root 40312 ./usr/bin/newgrp.shadow
1164lrwxrwxrwx root root 22 ./usr/bin/newgrp -> /usr/bin/newgrp.shadow
1165-rwsr-xr-x root root 37040 ./usr/bin/newuidmap
1166-rwxr-xr-x root root 47272 ./usr/bin/nice.coreutils
1167-rwxr-xr-x root root 117000 ./usr/bin/nl.coreutils
1168lrwxrwxrwx root root 21 ./usr/bin/nl -> /usr/bin/nl.coreutils
1169lrwxrwxrwx root root 29 ./usr/bin/nm -> /usr/bin/x86_64-poky-linux-nm
1170-rwxr-xr-x root root 47272 ./usr/bin/nohup.coreutils
1171lrwxrwxrwx root root 24 ./usr/bin/nohup -> /usr/bin/nohup.coreutils
1172-rwxr-xr-x root root 47272 ./usr/bin/nproc.coreutils
1173lrwxrwxrwx root root 24 ./usr/bin/nproc -> /usr/bin/nproc.coreutils
1174lrwxrwxrwx root root 27 ./usr/bin/nsenter -> /usr/bin/nsenter.util-linux
1175-rwxr-xr-x root root 35072 ./usr/bin/nsenter.util-linux
1176lrwxrwxrwx root root 19 ./usr/bin/nslookup -> /bin/busybox.nosuid
1177-rwxr-xr-x root root 71904 ./usr/bin/numfmt
1178lrwxrwxrwx root root 34 ./usr/bin/objcopy -> /usr/bin/x86_64-poky-linux-objcopy
1179lrwxrwxrwx root root 34 ./usr/bin/objdump -> /usr/bin/x86_64-poky-linux-objdump
1180-rwxr-xr-x root root 80072 ./usr/bin/od.coreutils
1181lrwxrwxrwx root root 21 ./usr/bin/od -> /usr/bin/od.coreutils
1182-rwxr-xr-x root root 736944 ./usr/bin/openssl
1183lrwxrwxrwx root root 19 ./usr/bin/openvt -> /bin/busybox.nosuid
1184-rwsr-xr-x root root 67760 ./usr/bin/passwd.shadow
1185lrwxrwxrwx root root 22 ./usr/bin/passwd -> /usr/bin/passwd.shadow
1186-rwxr-xr-x root root 47304 ./usr/bin/paste.coreutils
1187lrwxrwxrwx root root 24 ./usr/bin/paste -> /usr/bin/paste.coreutils
1188lrwxrwxrwx root root 19 ./usr/bin/patch -> /bin/busybox.nosuid
1189-rwxr-xr-x root root 43176 ./usr/bin/pathchk.coreutils
1190lrwxrwxrwx root root 26 ./usr/bin/pathchk -> /usr/bin/pathchk.coreutils
1191-rwxr-xr-x root root 14520 ./usr/bin/pcprofiledump
1192-rwxr-xr-x root root 165 ./usr/bin/pcre-config
1193-rwxr-xr-x root root 14288 ./usr/bin/perl
1194-rwxr-xr-x root root 30776 ./usr/bin/pgrep.procps
1195lrwxrwxrwx root root 21 ./usr/bin/pgrep -> /usr/bin/pgrep.procps
1196-rwxr-xr-x root root 47304 ./usr/bin/pinky.coreutils
1197lrwxrwxrwx root root 24 ./usr/bin/pinky -> /usr/bin/pinky.coreutils
1198-rwxr-xr-x root root 30776 ./usr/bin/pkill.procps
1199lrwxrwxrwx root root 21 ./usr/bin/pkill -> /usr/bin/pkill.procps
1200-rwxr-xr-x root root 22712 ./usr/bin/pldd
1201-rwxr-xr-x root root 34872 ./usr/bin/pmap.procps
1202lrwxrwxrwx root root 20 ./usr/bin/pmap -> /usr/bin/pmap.procps
1203-rwxr-xr-x root root 84232 ./usr/bin/pr.coreutils
1204-rwxr-xr-x root root 43176 ./usr/bin/printenv.coreutils
1205-rwxr-xr-x root root 63648 ./usr/bin/printf.coreutils
1206lrwxrwxrwx root root 25 ./usr/bin/printf -> /usr/bin/printf.coreutils
1207-rwxr-xr-x root root 39480 ./usr/bin/prlimit
1208-rwxr-xr-x root root 80288 ./usr/bin/procan
1209lrwxrwxrwx root root 21 ./usr/bin/pr -> /usr/bin/pr.coreutils
1210-rwxr-xr-x root root 145640 ./usr/bin/ptx.coreutils
1211lrwxrwxrwx root root 22 ./usr/bin/ptx -> /usr/bin/ptx.coreutils
1212-rwxr-xr-x root root 14376 ./usr/bin/pwdx.procps
1213lrwxrwxrwx root root 20 ./usr/bin/pwdx -> /usr/bin/pwdx.procps
1214-rwxr-xr-x root root 14296 ./usr/bin/python3.8
1215-rwxr-xr-x root root 2114 ./usr/bin/python3.8-config-lib
1216lrwxrwxrwx root root 29 ./usr/bin/python3.8-config -> /usr/bin/python3.8-config-lib
1217lrwxrwxrwx root root 16 ./usr/bin/python3-config -> python3.8-config
1218lrwxrwxrwx root root 9 ./usr/bin/python3 -> python3.8
1219lrwxrwxrwx root root 33 ./usr/bin/ranlib -> /usr/bin/x86_64-poky-linux-ranlib
1220-rwxr-xr-x root root 14296 ./usr/bin/readbootlog
1221lrwxrwxrwx root root 34 ./usr/bin/readelf -> /usr/bin/x86_64-poky-linux-readelf
1222-rwxr-xr-x root root 55464 ./usr/bin/readlink.coreutils
1223lrwxrwxrwx root root 27 ./usr/bin/readlink -> /usr/bin/readlink.coreutils
1224-rwxr-xr-x root root 55496 ./usr/bin/realpath.coreutils
1225lrwxrwxrwx root root 27 ./usr/bin/realpath -> /usr/bin/realpath.coreutils
1226-rwxr-xr-x root root 22560 ./usr/bin/rename
1227lrwxrwxrwx root root 26 ./usr/bin/renice -> /usr/bin/renice.util-linux
1228-rwxr-xr-x root root 14384 ./usr/bin/renice.util-linux
1229lrwxrwxrwx root root 19 ./usr/bin/reset -> /bin/busybox.nosuid
1230lrwxrwxrwx root root 19 ./usr/bin/resize -> /bin/busybox.nosuid
1231lrwxrwxrwx root root 23 ./usr/bin/rev -> /usr/bin/rev.util-linux
1232-rwxr-xr-x root root 14376 ./usr/bin/rev.util-linux
1233-rwxr-xr-x root root 43176 ./usr/bin/runcon.coreutils
1234lrwxrwxrwx root root 25 ./usr/bin/runcon -> /usr/bin/runcon.coreutils
1235-rwxr-xr-x root root 67624 ./usr/bin/script
1236-rwxr-xr-x root root 55336 ./usr/bin/scriptlive
1237-rwxr-xr-x root root 43056 ./usr/bin/scriptreplay
1238-rwxr-xr-x root root 51264 ./usr/bin/sdiff
1239-rwxr-xr-x root root 63656 ./usr/bin/seq.coreutils
1240lrwxrwxrwx root root 22 ./usr/bin/seq -> /usr/bin/seq.coreutils
1241-rwxr-xr-x root root 26936 ./usr/bin/setarch
1242-rwxr-xr-x root root 39568 ./usr/bin/setfacl
1243-rwxr-xr-x root root 18696 ./usr/bin/setfattr.attr
1244lrwxrwxrwx root root 22 ./usr/bin/setfattr -> /usr/bin/setfattr.attr
1245lrwxrwxrwx root root 27 ./usr/bin/setpriv -> /usr/bin/setpriv.util-linux
1246-rwxr-xr-x root root 47160 ./usr/bin/setpriv.util-linux
1247lrwxrwxrwx root root 26 ./usr/bin/setsid -> /usr/bin/setsid.util-linux
1248-rwxr-xr-x root root 14384 ./usr/bin/setsid.util-linux
1249-rwxr-xr-x root root 47144 ./usr/bin/setterm
1250lrwxrwxrwx root root 13 ./usr/bin/sg -> newgrp.shadow
1251-rwxr-xr-x root root 59592 ./usr/bin/sha1sum.coreutils
1252lrwxrwxrwx root root 26 ./usr/bin/sha1sum -> /usr/bin/sha1sum.coreutils
1253-rwxr-xr-x root root 67784 ./usr/bin/sha224sum.coreutils
1254lrwxrwxrwx root root 28 ./usr/bin/sha224sum -> /usr/bin/sha224sum.coreutils
1255-rwxr-xr-x root root 67784 ./usr/bin/sha256sum.coreutils
1256lrwxrwxrwx root root 28 ./usr/bin/sha256sum -> /usr/bin/sha256sum.coreutils
1257-rwxr-xr-x root root 71880 ./usr/bin/sha384sum.coreutils
1258lrwxrwxrwx root root 28 ./usr/bin/sha384sum -> /usr/bin/sha384sum.coreutils
1259-rwxr-xr-x root root 71880 ./usr/bin/sha512sum.coreutils
1260lrwxrwxrwx root root 28 ./usr/bin/sha512sum -> /usr/bin/sha512sum.coreutils
1261-rwxr-xr-x root root 67784 ./usr/bin/shred.coreutils
1262lrwxrwxrwx root root 24 ./usr/bin/shred -> /usr/bin/shred.coreutils
1263-rwxr-xr-x root root 63656 ./usr/bin/shuf.coreutils
1264lrwxrwxrwx root root 23 ./usr/bin/shuf -> /usr/bin/shuf.coreutils
1265lrwxrwxrwx root root 31 ./usr/bin/size -> /usr/bin/x86_64-poky-linux-size
1266-rwxr-xr-x root root 30768 ./usr/bin/skill.procps
1267lrwxrwxrwx root root 21 ./usr/bin/skill -> /usr/bin/skill.procps
1268-rwxr-xr-x root root 22568 ./usr/bin/slabtop
1269-rwxr-xr-x root root 30768 ./usr/bin/snice.procps
1270lrwxrwxrwx root root 21 ./usr/bin/snice -> /usr/bin/snice.procps
1271-rwxr-xr-x root root 380104 ./usr/bin/socat
1272-rwxr-xr-x root root 117200 ./usr/bin/sort.coreutils
1273lrwxrwxrwx root root 23 ./usr/bin/sort -> /usr/bin/sort.coreutils
1274-rwxr-xr-x root root 64128 ./usr/bin/split.coreutils
1275lrwxrwxrwx root root 24 ./usr/bin/split -> /usr/bin/split.coreutils
1276-rwxr-xr-x root root 30896 ./usr/bin/sprof
1277-rwxr-xr-x root root 63648 ./usr/bin/stdbuf
1278lrwxrwxrwx root root 34 ./usr/bin/strings -> /usr/bin/x86_64-poky-linux-strings
1279lrwxrwxrwx root root 32 ./usr/bin/strip -> /usr/bin/x86_64-poky-linux-strip
1280-rwxr-xr-x root root 51376 ./usr/bin/sum.coreutils
1281lrwxrwxrwx root root 22 ./usr/bin/sum -> /usr/bin/sum.coreutils
1282-rwxr-xr-x root root 112808 ./usr/bin/tac.coreutils
1283lrwxrwxrwx root root 22 ./usr/bin/tac -> /usr/bin/tac.coreutils
1284-rwxr-xr-x root root 80104 ./usr/bin/tail.coreutils
1285lrwxrwxrwx root root 23 ./usr/bin/tail -> /usr/bin/tail.coreutils
1286lrwxrwxrwx root root 27 ./usr/bin/taskset -> /usr/bin/taskset.util-linux
1287-rwxr-xr-x root root 34864 ./usr/bin/taskset.util-linux
1288-rwxr-xr-x root root 47304 ./usr/bin/tee.coreutils
1289lrwxrwxrwx root root 22 ./usr/bin/tee -> /usr/bin/tee.coreutils
1290lrwxrwxrwx root root 19 ./usr/bin/telnet -> /bin/busybox.nosuid
1291-rwxr-xr-x root root 59544 ./usr/bin/test.coreutils
1292lrwxrwxrwx root root 23 ./usr/bin/test -> /usr/bin/test.coreutils
1293lrwxrwxrwx root root 19 ./usr/bin/tftp -> /bin/busybox.nosuid
1294lrwxrwxrwx root root 19 ./usr/bin/time -> /bin/busybox.nosuid
1295-rwxr-xr-x root root 51840 ./usr/bin/timeout.coreutils
1296lrwxrwxrwx root root 26 ./usr/bin/timeout -> /usr/bin/timeout.coreutils
1297-rwxr-xr-x root root 22576 ./usr/bin/tload
1298-rwxr-xr-x root root 124784 ./usr/bin/top.procps
1299lrwxrwxrwx root root 19 ./usr/bin/top -> /usr/bin/top.procps
1300-rwxr-xr-x root root 22512 ./usr/bin/tput
1301lrwxrwxrwx root root 17 ./usr/bin/traceroute -> /bin/busybox.suid
1302-rwxr-xr-x root root 55464 ./usr/bin/tr.coreutils
1303-rwxr-xr-x root root 47272 ./usr/bin/truncate.coreutils
1304lrwxrwxrwx root root 27 ./usr/bin/truncate -> /usr/bin/truncate.coreutils
1305lrwxrwxrwx root root 21 ./usr/bin/tr -> /usr/bin/tr.coreutils
1306lrwxrwxrwx root root 19 ./usr/bin/ts -> /bin/busybox.nosuid
1307-rwxr-xr-x root root 30680 ./usr/bin/tset
1308-rwxr-xr-x root root 59560 ./usr/bin/tsort.coreutils
1309lrwxrwxrwx root root 24 ./usr/bin/tsort -> /usr/bin/tsort.coreutils
1310-rwxr-xr-x root root 43176 ./usr/bin/tty.coreutils
1311lrwxrwxrwx root root 22 ./usr/bin/tty -> /usr/bin/tty.coreutils
1312-rwxr-xr-x root root 354584 ./usr/bin/udevadm
1313-rwxr-xr-x root root 22560 ./usr/bin/ul
1314lrwxrwxrwx root root 7 ./usr/bin/uname26 -> setarch
1315-rwxr-xr-x root root 47304 ./usr/bin/unexpand.coreutils
1316lrwxrwxrwx root root 27 ./usr/bin/unexpand -> /usr/bin/unexpand.coreutils
1317-rwxr-xr-x root root 55496 ./usr/bin/uniq.coreutils
1318lrwxrwxrwx root root 23 ./usr/bin/uniq -> /usr/bin/uniq.coreutils
1319-rwxr-xr-x root root 43176 ./usr/bin/unlink.coreutils
1320lrwxrwxrwx root root 25 ./usr/bin/unlink -> /usr/bin/unlink.coreutils
1321lrwxrwxrwx root root 18 ./usr/bin/unlzma -> /usr/bin/unlzma.xz
1322lrwxrwxrwx root root 5 ./usr/bin/unlzma.xz -> xz.xz
1323lrwxrwxrwx root root 27 ./usr/bin/unshare -> /usr/bin/unshare.util-linux
1324-rwxr-xr-x root root 39176 ./usr/bin/unshare.util-linux
1325lrwxrwxrwx root root 16 ./usr/bin/unxz -> /usr/bin/unxz.xz
1326lrwxrwxrwx root root 5 ./usr/bin/unxz.xz -> xz.xz
1327-rwxr-xr-x root root 88152 ./usr/bin/unzipsfx
1328-rwxr-xr-x root root 186472 ./usr/bin/unzip.unzip
1329lrwxrwxrwx root root 20 ./usr/bin/unzip -> /usr/bin/unzip.unzip
1330-rwxr-xr-x root root 4678 ./usr/bin/update-alternatives
1331-rwxr-xr-x root root 9076 ./usr/bin/updatedb
1332-rwxr-xr-x root root 59584 ./usr/bin/update-mime-database
1333-rwxr-xr-x root root 59560 ./usr/bin/uptime.coreutils
1334-rwxr-xr-x root root 14376 ./usr/bin/uptime.procps
1335lrwxrwxrwx root root 22 ./usr/bin/uptime -> /usr/bin/uptime.procps
1336-rwxr-xr-x root root 43176 ./usr/bin/users.coreutils
1337lrwxrwxrwx root root 24 ./usr/bin/users -> /usr/bin/users.coreutils
1338lrwxrwxrwx root root 27 ./usr/bin/[ -> /usr/bin/lbracket.coreutils
1339-rwxr-xr-x root root 18400 ./usr/bin/utmpdump.sysvinit
1340lrwxrwxrwx root root 26 ./usr/bin/utmpdump -> /usr/bin/utmpdump.sysvinit
1341-rwxr-xr-x root root 30768 ./usr/bin/utmpdump.util-linux
1342-rwxr-xr-x root root 14368 ./usr/bin/uuidgen
1343-rwxr-xr-x root root 38952 ./usr/bin/uuidparse
1344-rwxr-xr-x root root 162448 ./usr/bin/vdir.coreutils
1345lrwxrwxrwx root root 23 ./usr/bin/vdir -> /usr/bin/vdir.coreutils
1346lrwxrwxrwx root root 17 ./usr/bin/vlock -> /bin/busybox.suid
1347-rwxr-xr-x root root 38968 ./usr/bin/vmstat
1348-rwxr-xr-x root root 18392 ./usr/bin/wall.sysvinit
1349lrwxrwxrwx root root 22 ./usr/bin/wall -> /usr/bin/wall.sysvinit
1350-rwxr-xr-x root root 34864 ./usr/bin/wall.util-linux
1351-rwxr-xr-x root root 51248 ./usr/bin/wayland-scanner
1352-rwxr-xr-x root root 55472 ./usr/bin/wc.coreutils
1353lrwxrwxrwx root root 21 ./usr/bin/wc -> /usr/bin/wc.coreutils
1354-rwxr-xr-x root root 63552 ./usr/bin/wdctl
1355lrwxrwxrwx root root 19 ./usr/bin/wget -> /bin/busybox.nosuid
1356-rwxr-xr-x root root 31176 ./usr/bin/whereis
1357lrwxrwxrwx root root 20 ./usr/bin/which -> /usr/bin/which.which
1358-rwxr-xr-x root root 31280 ./usr/bin/which.which
1359-rwxr-xr-x root root 43176 ./usr/bin/whoami.coreutils
1360lrwxrwxrwx root root 25 ./usr/bin/whoami -> /usr/bin/whoami.coreutils
1361-rwxr-xr-x root root 63688 ./usr/bin/who.coreutils
1362lrwxrwxrwx root root 22 ./usr/bin/who -> /usr/bin/who.coreutils
1363-rwxr-xr-x root root 22568 ./usr/bin/w.procps
1364-rwxr-xr-x root root 22560 ./usr/bin/write
1365lrwxrwxrwx root root 17 ./usr/bin/w -> /usr/bin/w.procps
1366-rwxr-xr-x root root 31304 ./usr/bin/x86_64-poky-linux-addr2line
1367-rwxr-xr-x root root 63784 ./usr/bin/x86_64-poky-linux-ar
1368-rwxr-xr-x root root 737584 ./usr/bin/x86_64-poky-linux-as
1369-rwxr-xr-x root root 30776 ./usr/bin/x86_64-poky-linux-c++filt
1370-rwxr-xr-x root root 2058648 ./usr/bin/x86_64-poky-linux-dwp
1371-rwxr-xr-x root root 39320 ./usr/bin/x86_64-poky-linux-elfedit
1372-rwxr-xr-x root root 102056 ./usr/bin/x86_64-poky-linux-gprof
1373-rwxr-xr-x root root 1711488 ./usr/bin/x86_64-poky-linux-ld
1374-rwxr-xr-x root root 1711488 ./usr/bin/x86_64-poky-linux-ld.bfd
1375-rwxr-xr-x root root 2316464 ./usr/bin/x86_64-poky-linux-ld.gold
1376-rwxr-xr-x root root 48344 ./usr/bin/x86_64-poky-linux-nm
1377-rwxr-xr-x root root 190736 ./usr/bin/x86_64-poky-linux-objcopy
1378-rwxr-xr-x root root 512664 ./usr/bin/x86_64-poky-linux-objdump
1379-rwxr-xr-x root root 63824 ./usr/bin/x86_64-poky-linux-ranlib
1380-rwxr-xr-x root root 670432 ./usr/bin/x86_64-poky-linux-readelf
1381-rwxr-xr-x root root 35136 ./usr/bin/x86_64-poky-linux-size
1382-rwxr-xr-x root root 31176 ./usr/bin/x86_64-poky-linux-strings
1383-rwxr-xr-x root root 190736 ./usr/bin/x86_64-poky-linux-strip
1384lrwxrwxrwx root root 7 ./usr/bin/x86_64 -> setarch
1385-rwxr-xr-x root root 75976 ./usr/bin/xargs.findutils
1386lrwxrwxrwx root root 24 ./usr/bin/xargs -> /usr/bin/xargs.findutils
1387-rwxr-xr-x root root 16982 ./usr/bin/xkeystone
1388-rwxr-xr-x root root 165 ./usr/bin/xml2-config
1389-rwxr-xr-x root root 63544 ./usr/bin/xrandr
1390lrwxrwxrwx root root 17 ./usr/bin/xzcat -> /usr/bin/xzcat.xz
1391lrwxrwxrwx root root 5 ./usr/bin/xzcat.xz -> xz.xz
1392lrwxrwxrwx root root 6 ./usr/bin/xzcmp -> xzdiff
1393-rwxr-xr-x root root 14376 ./usr/bin/xzdec
1394-rwxr-xr-x root root 6633 ./usr/bin/xzdiff
1395lrwxrwxrwx root root 6 ./usr/bin/xzegrep -> xzgrep
1396lrwxrwxrwx root root 6 ./usr/bin/xzfgrep -> xzgrep
1397-rwxr-xr-x root root 5630 ./usr/bin/xzgrep
1398-rwxr-xr-x root root 1799 ./usr/bin/xzless
1399-rwxr-xr-x root root 2162 ./usr/bin/xzmore
1400lrwxrwxrwx root root 14 ./usr/bin/xz -> /usr/bin/xz.xz
1401-rwxr-xr-x root root 80184 ./usr/bin/xz.xz
1402-rwxr-xr-x root root 4184 ./usr/bin/yacc
1403-rwxr-xr-x root root 43176 ./usr/bin/yes.coreutils
1404lrwxrwxrwx root root 22 ./usr/bin/yes -> /usr/bin/yes.coreutils
1405-rwxr-xr-x root root 212088 ./usr/bin/zip
1406-rwxr-xr-x root root 97872 ./usr/bin/zipcloak
1407-rwxr-xr-x root root 2953 ./usr/bin/zipgrep
1408-rwxr-xr-x root root 186472 ./usr/bin/zipinfo
1409-rwxr-xr-x root root 89448 ./usr/bin/zipnote
1410-rwxr-xr-x root root 89456 ./usr/bin/zipsplit
1411drwxr-xr-x root root 4096 ./usr/games
1412drwxr-xr-x root root 12288 ./usr/include
1413drwxr-xr-x root root 4096 ./usr/include/acl
1414-rw-r--r-- root root 2611 ./usr/include/acl/libacl.h
1415-rw-r--r-- root root 7457 ./usr/include/aio.h
1416-rw-r--r-- root root 2032 ./usr/include/aliases.h
1417-rw-r--r-- root root 1204 ./usr/include/alloca.h
1418-rw-r--r-- root root 14130 ./usr/include/ansidecl.h
1419-rw-r--r-- root root 4351 ./usr/include/a.out.h
1420-rw-r--r-- root root 25473 ./usr/include/argp.h
1421-rw-r--r-- root root 6051 ./usr/include/argz.h
1422-rw-r--r-- root root 1731 ./usr/include/ar.h
1423drwxr-xr-x root root 4096 ./usr/include/arpa
1424-rw-r--r-- root root 3432 ./usr/include/arpa/ftp.h
1425-rw-r--r-- root root 4277 ./usr/include/arpa/inet.h
1426-rw-r--r-- root root 7041 ./usr/include/arpa/nameser_compat.h
1427-rw-r--r-- root root 14195 ./usr/include/arpa/nameser.h
1428-rw-r--r-- root root 10263 ./usr/include/arpa/telnet.h
1429-rw-r--r-- root root 3051 ./usr/include/arpa/tftp.h
1430drwxr-xr-x root root 4096 ./usr/include/asm
1431-rw-r--r-- root root 756 ./usr/include/asm/a.out.h
1432-rw-r--r-- root root 546 ./usr/include/asm/auxvec.h
1433-rw-r--r-- root root 321 ./usr/include/asm/bitsperlong.h
1434-rw-r--r-- root root 323 ./usr/include/asm/boot.h
1435-rw-r--r-- root root 7757 ./usr/include/asm/bootparam.h
1436-rw-r--r-- root root 40 ./usr/include/asm/bpf_perf_event.h
1437-rw-r--r-- root root 200 ./usr/include/asm/byteorder.h
1438-rw-r--r-- root root 3285 ./usr/include/asm/debugreg.h
1439-rw-r--r-- root root 2579 ./usr/include/asm/e820.h
1440-rw-r--r-- root root 31 ./usr/include/asm/errno.h
1441-rw-r--r-- root root 31 ./usr/include/asm/fcntl.h
1442drwxr-xr-x root root 4096 ./usr/include/asm-generic
1443-rw-r--r-- root root 218 ./usr/include/asm-generic/auxvec.h
1444-rw-r--r-- root root 564 ./usr/include/asm-generic/bitsperlong.h
1445-rw-r--r-- root root 238 ./usr/include/asm-generic/bpf_perf_event.h
1446-rw-r--r-- root root 1612 ./usr/include/asm-generic/errno-base.h
1447-rw-r--r-- root root 5648 ./usr/include/asm-generic/errno.h
1448-rw-r--r-- root root 5423 ./usr/include/asm-generic/fcntl.h
1449-rw-r--r-- root root 1740 ./usr/include/asm-generic/hugetlb_encode.h
1450-rw-r--r-- root root 718 ./usr/include/asm-generic/int-l64.h
1451-rw-r--r-- root root 864 ./usr/include/asm-generic/int-ll64.h
1452-rw-r--r-- root root 3478 ./usr/include/asm-generic/ioctl.h
1453-rw-r--r-- root root 3987 ./usr/include/asm-generic/ioctls.h
1454-rw-r--r-- root root 1003 ./usr/include/asm-generic/ipcbuf.h
1455-rw-r--r-- root root 96 ./usr/include/asm-generic/kvm_para.h
1456-rw-r--r-- root root 3417 ./usr/include/asm-generic/mman-common.h
1457-rw-r--r-- root root 740 ./usr/include/asm-generic/mman.h
1458-rw-r--r-- root root 1618 ./usr/include/asm-generic/msgbuf.h
1459-rw-r--r-- root root 353 ./usr/include/asm-generic/param.h
1460-rw-r--r-- root root 878 ./usr/include/asm-generic/poll.h
1461-rw-r--r-- root root 2331 ./usr/include/asm-generic/posix_types.h
1462-rw-r--r-- root root 1872 ./usr/include/asm-generic/resource.h
1463-rw-r--r-- root root 1550 ./usr/include/asm-generic/sembuf.h
1464-rw-r--r-- root root 190 ./usr/include/asm-generic/setup.h
1465-rw-r--r-- root root 1837 ./usr/include/asm-generic/shmbuf.h
1466-rw-r--r-- root root 9969 ./usr/include/asm-generic/siginfo.h
1467-rw-r--r-- root root 800 ./usr/include/asm-generic/signal-defs.h
1468-rw-r--r-- root root 2709 ./usr/include/asm-generic/signal.h
1469-rw-r--r-- root root 3538 ./usr/include/asm-generic/socket.h
1470-rw-r--r-- root root 447 ./usr/include/asm-generic/sockios.h
1471-rw-r--r-- root root 1839 ./usr/include/asm-generic/statfs.h
1472-rw-r--r-- root root 2633 ./usr/include/asm-generic/stat.h
1473-rw-r--r-- root root 502 ./usr/include/asm-generic/swab.h
1474-rw-r--r-- root root 4716 ./usr/include/asm-generic/termbits.h
1475-rw-r--r-- root root 1377 ./usr/include/asm-generic/termios.h
1476-rw-r--r-- root root 233 ./usr/include/asm-generic/types.h
1477-rw-r--r-- root root 357 ./usr/include/asm-generic/ucontext.h
1478-rw-r--r-- root root 30377 ./usr/include/asm-generic/unistd.h
1479-rw-r--r-- root root 69 ./usr/include/asm/hw_breakpoint.h
1480-rw-r--r-- root root 198 ./usr/include/asm/hwcap2.h
1481-rw-r--r-- root root 31 ./usr/include/asm/ioctl.h
1482-rw-r--r-- root root 32 ./usr/include/asm/ioctls.h
1483-rw-r--r-- root root 32 ./usr/include/asm/ipcbuf.h
1484-rw-r--r-- root root 854 ./usr/include/asm/ist.h
1485-rw-r--r-- root root 9244 ./usr/include/asm/kvm.h
1486-rw-r--r-- root root 3341 ./usr/include/asm/kvm_para.h
1487-rw-r--r-- root root 388 ./usr/include/asm/kvm_perf.h
1488-rw-r--r-- root root 1306 ./usr/include/asm/ldt.h
1489-rw-r--r-- root root 1688 ./usr/include/asm/mce.h
1490-rw-r--r-- root root 1002 ./usr/include/asm/mman.h
1491-rw-r--r-- root root 1053 ./usr/include/asm/msgbuf.h
1492-rw-r--r-- root root 346 ./usr/include/asm/msr.h
1493-rw-r--r-- root root 4225 ./usr/include/asm/mtrr.h
1494-rw-r--r-- root root 31 ./usr/include/asm/param.h
1495-rw-r--r-- root root 1403 ./usr/include/asm/perf_regs.h
1496-rw-r--r-- root root 30 ./usr/include/asm/poll.h
1497-rw-r--r-- root root 765 ./usr/include/asm/posix_types_32.h
1498-rw-r--r-- root root 609 ./usr/include/asm/posix_types_64.h
1499-rw-r--r-- root root 224 ./usr/include/asm/posix_types.h
1500-rw-r--r-- root root 581 ./usr/include/asm/posix_types_x32.h
1501-rw-r--r-- root root 418 ./usr/include/asm/prctl.h
1502-rw-r--r-- root root 6623 ./usr/include/asm/processor-flags.h
1503-rw-r--r-- root root 2037 ./usr/include/asm/ptrace-abi.h
1504-rw-r--r-- root root 1495 ./usr/include/asm/ptrace.h
1505-rw-r--r-- root root 34 ./usr/include/asm/resource.h
1506-rw-r--r-- root root 1045 ./usr/include/asm/sembuf.h
1507-rw-r--r-- root root 6 ./usr/include/asm/setup.h
1508-rw-r--r-- root root 1258 ./usr/include/asm/shmbuf.h
1509-rw-r--r-- root root 271 ./usr/include/asm/sigcontext32.h
1510-rw-r--r-- root root 9724 ./usr/include/asm/sigcontext.h
1511-rw-r--r-- root root 422 ./usr/include/asm/siginfo.h
1512-rw-r--r-- root root 2901 ./usr/include/asm/signal.h
1513-rw-r--r-- root root 32 ./usr/include/asm/socket.h
1514-rw-r--r-- root root 33 ./usr/include/asm/sockios.h
1515-rw-r--r-- root root 416 ./usr/include/asm/statfs.h
1516-rw-r--r-- root root 3131 ./usr/include/asm/stat.h
1517-rw-r--r-- root root 7068 ./usr/include/asm/svm.h
1518-rw-r--r-- root root 724 ./usr/include/asm/swab.h
1519-rw-r--r-- root root 34 ./usr/include/asm/termbits.h
1520-rw-r--r-- root root 33 ./usr/include/asm/termios.h
1521-rw-r--r-- root root 31 ./usr/include/asm/types.h
1522-rw-r--r-- root root 2117 ./usr/include/asm/ucontext.h
1523-rw-r--r-- root root 11475 ./usr/include/asm/unistd_32.h
1524-rw-r--r-- root root 9286 ./usr/include/asm/unistd_64.h
1525-rw-r--r-- root root 361 ./usr/include/asm/unistd.h
1526-rw-r--r-- root root 16367 ./usr/include/asm/unistd_x32.h
1527-rw-r--r-- root root 3118 ./usr/include/asm/vm86.h
1528-rw-r--r-- root root 7032 ./usr/include/asm/vmx.h
1529-rw-r--r-- root root 263 ./usr/include/asm/vsyscall.h
1530-rw-r--r-- root root 4562 ./usr/include/assert.h
1531drwxr-xr-x root root 4096 ./usr/include/attr
1532-rw-r--r-- root root 8010 ./usr/include/attr/attributes.h
1533-rw-r--r-- root root 1569 ./usr/include/attr/error_context.h
1534-rw-r--r-- root root 1411 ./usr/include/attr/libattr.h
1535drwxr-xr-x root root 4096 ./usr/include/bash
1536-rw-r--r-- root root 2225 ./usr/include/bash/alias.h
1537-rw-r--r-- root root 3561 ./usr/include/bash/arrayfunc.h
1538-rw-r--r-- root root 4172 ./usr/include/bash/array.h
1539-rw-r--r-- root root 2302 ./usr/include/bash/assoc.h
1540-rw-r--r-- root root 1262 ./usr/include/bash/bashansi.h
1541-rw-r--r-- root root 1462 ./usr/include/bash/bashintl.h
1542-rw-r--r-- root root 1646 ./usr/include/bash/bashjmp.h
1543-rw-r--r-- root root 1086 ./usr/include/bash/bashtypes.h
1544drwxr-xr-x root root 4096 ./usr/include/bash/builtins
1545-rw-r--r-- root root 1263 ./usr/include/bash/builtins/bashgetopt.h
1546-rw-r--r-- root root 6715 ./usr/include/bash/builtins/builtext.h
1547-rw-r--r-- root root 8372 ./usr/include/bash/builtins/common.h
1548-rw-r--r-- root root 2582 ./usr/include/bash/builtins/getopt.h
1549-rw-r--r-- root root 2373 ./usr/include/bash/builtins.h
1550-rw-r--r-- root root 15490 ./usr/include/bash/command.h
1551-rw-r--r-- root root 6514 ./usr/include/bash/config-bot.h
1552-rw-r--r-- root root 32166 ./usr/include/bash/config.h
1553-rw-r--r-- root root 7436 ./usr/include/bash/config-top.h
1554-rw-r--r-- root root 1709 ./usr/include/bash/conftypes.h
1555-rw-r--r-- root root 1397 ./usr/include/bash/dispose_cmd.h
1556-rw-r--r-- root root 3053 ./usr/include/bash/error.h
1557-rw-r--r-- root root 18999 ./usr/include/bash/externs.h
1558-rw-r--r-- root root 11828 ./usr/include/bash/general.h
1559-rw-r--r-- root root 3036 ./usr/include/bash/hashlib.h
1560drwxr-xr-x root root 4096 ./usr/include/bash/include
1561-rw-r--r-- root root 1437 ./usr/include/bash/include/ansi_stdlib.h
1562-rw-r--r-- root root 4125 ./usr/include/bash/include/chartypes.h
1563-rw-r--r-- root root 1581 ./usr/include/bash/include/filecntl.h
1564-rw-r--r-- root root 3014 ./usr/include/bash/include/gettext.h
1565-rw-r--r-- root root 2113 ./usr/include/bash/include/maxpath.h
1566-rw-r--r-- root root 1994 ./usr/include/bash/include/memalloc.h
1567-rw-r--r-- root root 3669 ./usr/include/bash/include/ocache.h
1568-rw-r--r-- root root 2305 ./usr/include/bash/include/posixdir.h
1569-rw-r--r-- root root 1407 ./usr/include/bash/include/posixjmp.h
1570-rw-r--r-- root root 4318 ./usr/include/bash/include/posixstat.h
1571-rw-r--r-- root root 1509 ./usr/include/bash/include/posixtime.h
1572-rw-r--r-- root root 3068 ./usr/include/bash/include/posixwait.h
1573-rw-r--r-- root root 4319 ./usr/include/bash/include/shmbchar.h
1574-rw-r--r-- root root 13847 ./usr/include/bash/include/shmbutil.h
1575-rw-r--r-- root root 3636 ./usr/include/bash/include/shtty.h
1576-rw-r--r-- root root 6088 ./usr/include/bash/include/stat-time.h
1577-rw-r--r-- root root 2652 ./usr/include/bash/include/stdc.h
1578-rw-r--r-- root root 1778 ./usr/include/bash/include/systimes.h
1579-rw-r--r-- root root 2890 ./usr/include/bash/include/typemax.h
1580-rw-r--r-- root root 2973 ./usr/include/bash/include/unionwait.h
1581-rw-r--r-- root root 9640 ./usr/include/bash/jobs.h
1582-rw-r--r-- root root 2960 ./usr/include/bash/make_cmd.h
1583-rw-r--r-- root root 1208 ./usr/include/bash/pathnames.h
1584-rw-r--r-- root root 2541 ./usr/include/bash/quit.h
1585-rw-r--r-- root root 5957 ./usr/include/bash/shell.h
1586-rw-r--r-- root root 4485 ./usr/include/bash/sig.h
1587-rw-r--r-- root root 1544 ./usr/include/bash/siglist.h
1588-rw-r--r-- root root 247 ./usr/include/bash/signames.h
1589-rw-r--r-- root root 15184 ./usr/include/bash/subst.h
1590-rw-r--r-- root root 3544 ./usr/include/bash/syntax.h
1591-rw-r--r-- root root 2003 ./usr/include/bash/unwind_prot.h
1592-rw-r--r-- root root 17643 ./usr/include/bash/variables.h
1593-rw-r--r-- root root 579 ./usr/include/bash/version.h
1594-rw-r--r-- root root 1759 ./usr/include/bash/xmalloc.h
1595-rw-r--r-- root root 255175 ./usr/include/bfd-64.h
1596-rw-r--r-- root root 500 ./usr/include/bfd.h
1597-rw-r--r-- root root 35620 ./usr/include/bfdlink.h
1598-rw-r--r-- root root 848 ./usr/include/bfd_stdint.h
1599drwxr-xr-x root root 4096 ./usr/include/bits
1600-rw-r--r-- root root 268 ./usr/include/bits/a.out.h
1601-rw-r--r-- root root 1010 ./usr/include/bits/argp-ldbl.h
1602-rw-r--r-- root root 2450 ./usr/include/bits/byteswap.h
1603-rw-r--r-- root root 4139 ./usr/include/bits/cmathcalls.h
1604-rw-r--r-- root root 23709 ./usr/include/bits/confname.h
1605-rw-r--r-- root root 4516 ./usr/include/bits/cpu-set.h
1606-rw-r--r-- root root 1275 ./usr/include/bits/dirent_ext.h
1607-rw-r--r-- root root 1771 ./usr/include/bits/dirent.h
1608-rw-r--r-- root root 2521 ./usr/include/bits/dlfcn.h
1609-rw-r--r-- root root 426 ./usr/include/bits/elfclass.h
1610-rw-r--r-- root root 1905 ./usr/include/bits/endian.h
1611-rw-r--r-- root root 273 ./usr/include/bits/endianness-64.h
1612-rw-r--r-- root root 548 ./usr/include/bits/endianness.h
1613-rw-r--r-- root root 3791 ./usr/include/bits/environments.h
1614-rw-r--r-- root root 1071 ./usr/include/bits/epoll.h
1615-rw-r--r-- root root 1148 ./usr/include/bits/err-ldbl.h
1616-rw-r--r-- root root 1426 ./usr/include/bits/errno.h
1617-rw-r--r-- root root 2684 ./usr/include/bits/error.h
1618-rw-r--r-- root root 1012 ./usr/include/bits/error-ldbl.h
1619-rw-r--r-- root root 1129 ./usr/include/bits/eventfd.h
1620-rw-r--r-- root root 5575 ./usr/include/bits/fcntl2.h
1621-rw-r--r-- root root 2246 ./usr/include/bits/fcntl.h
1622-rw-r--r-- root root 13995 ./usr/include/bits/fcntl-linux.h
1623-rw-r--r-- root root 4611 ./usr/include/bits/fenv.h
1624-rw-r--r-- root root 190 ./usr/include/bits/fenvinline.h
1625-rw-r--r-- root root 4373 ./usr/include/bits/floatn-64.h
1626-rw-r--r-- root root 9765 ./usr/include/bits/floatn-common.h
1627-rw-r--r-- root root 532 ./usr/include/bits/floatn.h
1628-rw-r--r-- root root 1215 ./usr/include/bits/flt-eval-method.h
1629-rw-r--r-- root root 1216 ./usr/include/bits/fp-fast.h
1630-rw-r--r-- root root 1012 ./usr/include/bits/fp-logb.h
1631-rw-r--r-- root root 3667 ./usr/include/bits/getopt_core.h
1632-rw-r--r-- root root 3038 ./usr/include/bits/getopt_ext.h
1633-rw-r--r-- root root 1810 ./usr/include/bits/getopt_posix.h
1634-rw-r--r-- root root 972 ./usr/include/bits/hwcap.h
1635-rw-r--r-- root root 1591 ./usr/include/bits/indirect-return.h
1636-rw-r--r-- root root 9534 ./usr/include/bits/in.h
1637-rw-r--r-- root root 25 ./usr/include/bits/initspin.h
1638-rw-r--r-- root root 1080 ./usr/include/bits/inotify.h
1639-rw-r--r-- root root 4478 ./usr/include/bits/ioctls.h
1640-rw-r--r-- root root 2456 ./usr/include/bits/ioctl-types.h
1641-rw-r--r-- root root 1523 ./usr/include/bits/ipc.h
1642-rw-r--r-- root root 1745 ./usr/include/bits/ipc-perm.h
1643-rw-r--r-- root root 1176 ./usr/include/bits/ipctypes.h
1644-rw-r--r-- root root 2479 ./usr/include/bits/iscanonical.h
1645-rw-r--r-- root root 3288 ./usr/include/bits/libc-header-start.h
1646-rw-r--r-- root root 3004 ./usr/include/bits/libm-simd-decl-stubs.h
1647-rw-r--r-- root root 4286 ./usr/include/bits/link.h
1648-rw-r--r-- root root 1368 ./usr/include/bits/locale.h
1649-rw-r--r-- root root 3185 ./usr/include/bits/local_lim.h
1650-rw-r--r-- root root 962 ./usr/include/bits/long-double-64.h
1651-rw-r--r-- root root 552 ./usr/include/bits/long-double.h
1652-rw-r--r-- root root 13210 ./usr/include/bits/mathcalls.h
1653-rw-r--r-- root root 1765 ./usr/include/bits/mathcalls-helper-functions.h
1654-rw-r--r-- root root 1312 ./usr/include/bits/mathcalls-narrow.h
1655-rw-r--r-- root root 891 ./usr/include/bits/mathdef.h
1656-rw-r--r-- root root 337 ./usr/include/bits/mathinline.h
1657-rw-r--r-- root root 2308 ./usr/include/bits/math-vector.h
1658-rw-r--r-- root root 1309 ./usr/include/bits/mman.h
1659-rw-r--r-- root root 4911 ./usr/include/bits/mman-linux.h
1660-rw-r--r-- root root 1997 ./usr/include/bits/mman-map-flags-generic.h
1661-rw-r--r-- root root 2813 ./usr/include/bits/mman-shared.h
1662-rw-r--r-- root root 1047 ./usr/include/bits/monetary-ldbl.h
1663-rw-r--r-- root root 2151 ./usr/include/bits/mqueue2.h
1664-rw-r--r-- root root 1246 ./usr/include/bits/mqueue.h
1665-rw-r--r-- root root 2818 ./usr/include/bits/msq.h
1666-rw-r--r-- root root 1283 ./usr/include/bits/msq-pad.h
1667-rw-r--r-- root root 1264 ./usr/include/bits/netdb.h
1668-rw-r--r-- root root 1433 ./usr/include/bits/param.h
1669-rw-r--r-- root root 2937 ./usr/include/bits/poll2.h
1670-rw-r--r-- root root 2076 ./usr/include/bits/poll.h
1671-rw-r--r-- root root 5189 ./usr/include/bits/posix1_lim.h
1672-rw-r--r-- root root 2867 ./usr/include/bits/posix2_lim.h
1673-rw-r--r-- root root 5913 ./usr/include/bits/posix_opt.h
1674-rw-r--r-- root root 992 ./usr/include/bits/printf-ldbl.h
1675-rw-r--r-- root root 963 ./usr/include/bits/procfs-extra.h
1676-rw-r--r-- root root 2025 ./usr/include/bits/procfs.h
1677-rw-r--r-- root root 1148 ./usr/include/bits/procfs-id.h
1678-rw-r--r-- root root 1050 ./usr/include/bits/procfs-prregset.h
1679-rw-r--r-- root root 1838 ./usr/include/bits/pthreadtypes-arch.h
1680-rw-r--r-- root root 3072 ./usr/include/bits/pthreadtypes.h
1681-rw-r--r-- root root 4091 ./usr/include/bits/ptrace-shared.h
1682-rw-r--r-- root root 6299 ./usr/include/bits/resource.h
1683-rw-r--r-- root root 3947 ./usr/include/bits/sched.h
1684-rw-r--r-- root root 1438 ./usr/include/bits/select2.h
1685-rw-r--r-- root root 2106 ./usr/include/bits/select.h
1686-rw-r--r-- root root 1238 ./usr/include/bits/semaphore.h
1687-rw-r--r-- root root 2905 ./usr/include/bits/sem.h
1688-rw-r--r-- root root 1019 ./usr/include/bits/sem-pad.h
1689-rw-r--r-- root root 1705 ./usr/include/bits/setjmp2.h
1690-rw-r--r-- root root 1287 ./usr/include/bits/setjmp.h
1691-rw-r--r-- root root 3872 ./usr/include/bits/shm.h
1692-rw-r--r-- root root 1106 ./usr/include/bits/shmlba.h
1693-rw-r--r-- root root 1668 ./usr/include/bits/shm-pad.h
1694-rw-r--r-- root root 2935 ./usr/include/bits/sigaction.h
1695-rw-r--r-- root root 4266 ./usr/include/bits/sigcontext.h
1696-rw-r--r-- root root 1471 ./usr/include/bits/sigevent-consts.h
1697-rw-r--r-- root root 729 ./usr/include/bits/siginfo-arch.h
1698-rw-r--r-- root root 204 ./usr/include/bits/siginfo-consts-arch.h
1699-rw-r--r-- root root 6855 ./usr/include/bits/siginfo-consts.h
1700-rw-r--r-- root root 1285 ./usr/include/bits/signal_ext.h
1701-rw-r--r-- root root 1067 ./usr/include/bits/signalfd.h
1702-rw-r--r-- root root 4341 ./usr/include/bits/signum-generic.h
1703-rw-r--r-- root root 1634 ./usr/include/bits/signum.h
1704-rw-r--r-- root root 1168 ./usr/include/bits/sigstack.h
1705-rw-r--r-- root root 1692 ./usr/include/bits/sigthread.h
1706-rw-r--r-- root root 1514 ./usr/include/bits/sockaddr.h
1707-rw-r--r-- root root 3026 ./usr/include/bits/socket2.h
1708-rw-r--r-- root root 1318 ./usr/include/bits/socket-constants.h
1709-rw-r--r-- root root 12261 ./usr/include/bits/socket.h
1710-rw-r--r-- root root 2216 ./usr/include/bits/socket_type.h
1711-rw-r--r-- root root 1188 ./usr/include/bits/ss_flags.h
1712-rw-r--r-- root root 9040 ./usr/include/bits/stab.def
1713-rw-r--r-- root root 1917 ./usr/include/bits/statfs.h
1714-rw-r--r-- root root 7620 ./usr/include/bits/stat.h
1715-rw-r--r-- root root 3423 ./usr/include/bits/statvfs.h
1716-rw-r--r-- root root 2050 ./usr/include/bits/statx-generic.h
1717-rw-r--r-- root root 1400 ./usr/include/bits/statx.h
1718-rw-r--r-- root root 1037 ./usr/include/bits/stdint-intn.h
1719-rw-r--r-- root root 1049 ./usr/include/bits/stdint-uintn.h
1720-rw-r--r-- root root 12679 ./usr/include/bits/stdio2.h
1721-rw-r--r-- root root 5584 ./usr/include/bits/stdio.h
1722-rw-r--r-- root root 2843 ./usr/include/bits/stdio-ldbl.h
1723-rw-r--r-- root root 1213 ./usr/include/bits/stdio_lim.h
1724-rw-r--r-- root root 1378 ./usr/include/bits/stdlib-bsearch.h
1725-rw-r--r-- root root 1115 ./usr/include/bits/stdlib-float.h
1726-rw-r--r-- root root 5659 ./usr/include/bits/stdlib.h
1727-rw-r--r-- root root 1377 ./usr/include/bits/stdlib-ldbl.h
1728-rw-r--r-- root root 4314 ./usr/include/bits/string_fortified.h
1729-rw-r--r-- root root 1209 ./usr/include/bits/strings_fortified.h
1730-rw-r--r-- root root 1810 ./usr/include/bits/struct_mutex.h
1731-rw-r--r-- root root 2027 ./usr/include/bits/struct_rwlock-64.h
1732-rw-r--r-- root root 560 ./usr/include/bits/struct_rwlock.h
1733-rw-r--r-- root root 44103 ./usr/include/bits/syscall-64.h
1734-rw-r--r-- root root 536 ./usr/include/bits/syscall.h
1735-rw-r--r-- root root 899 ./usr/include/bits/sysctl.h
1736-rw-r--r-- root root 1216 ./usr/include/bits/sys_errlist.h
1737-rw-r--r-- root root 1685 ./usr/include/bits/syslog.h
1738-rw-r--r-- root root 1206 ./usr/include/bits/syslog-ldbl.h
1739-rw-r--r-- root root 1061 ./usr/include/bits/syslog-path.h
1740-rw-r--r-- root root 2953 ./usr/include/bits/sysmacros.h
1741-rw-r--r-- root root 1824 ./usr/include/bits/termios-baud.h
1742-rw-r--r-- root root 1279 ./usr/include/bits/termios-c_cc.h
1743-rw-r--r-- root root 1230 ./usr/include/bits/termios-c_cflag.h
1744-rw-r--r-- root root 1936 ./usr/include/bits/termios-c_iflag.h
1745-rw-r--r-- root root 2594 ./usr/include/bits/termios-c_lflag.h
1746-rw-r--r-- root root 2822 ./usr/include/bits/termios-c_oflag.h
1747-rw-r--r-- root root 2168 ./usr/include/bits/termios.h
1748-rw-r--r-- root root 969 ./usr/include/bits/termios-misc.h
1749-rw-r--r-- root root 1433 ./usr/include/bits/termios-struct.h
1750-rw-r--r-- root root 1062 ./usr/include/bits/termios-tcflow.h
1751-rw-r--r-- root root 3982 ./usr/include/bits/thread-shared-types.h
1752-rw-r--r-- root root 1340 ./usr/include/bits/time64.h
1753-rw-r--r-- root root 2999 ./usr/include/bits/time.h
1754-rw-r--r-- root root 1103 ./usr/include/bits/timerfd.h
1755-rw-r--r-- root root 1081 ./usr/include/bits/timesize.h
1756-rw-r--r-- root root 4596 ./usr/include/bits/timex.h
1757drwxr-xr-x root root 4096 ./usr/include/bits/types
1758-rw-r--r-- root root 174 ./usr/include/bits/types/clockid_t.h
1759-rw-r--r-- root root 143 ./usr/include/bits/types/clock_t.h
1760-rw-r--r-- root root 2725 ./usr/include/bits/types/cookie_io_functions_t.h
1761-rw-r--r-- root root 894 ./usr/include/bits/types/error_t.h
1762-rw-r--r-- root root 110 ./usr/include/bits/types/__FILE.h
1763-rw-r--r-- root root 180 ./usr/include/bits/types/FILE.h
1764-rw-r--r-- root root 410 ./usr/include/bits/types/__fpos64_t.h
1765-rw-r--r-- root root 381 ./usr/include/bits/types/__fpos_t.h
1766-rw-r--r-- root root 8757 ./usr/include/bits/types.h
1767-rw-r--r-- root root 3546 ./usr/include/bits/typesizes.h
1768-rw-r--r-- root root 1722 ./usr/include/bits/types/__locale_t.h
1769-rw-r--r-- root root 983 ./usr/include/bits/types/locale_t.h
1770-rw-r--r-- root root 564 ./usr/include/bits/types/__mbstate_t.h
1771-rw-r--r-- root root 135 ./usr/include/bits/types/mbstate_t.h
1772-rw-r--r-- root root 2009 ./usr/include/bits/types/res_state.h
1773-rw-r--r-- root root 272 ./usr/include/bits/types/sig_atomic_t.h
1774-rw-r--r-- root root 1204 ./usr/include/bits/types/sigevent_t.h
1775-rw-r--r-- root root 3892 ./usr/include/bits/types/siginfo_t.h
1776-rw-r--r-- root root 206 ./usr/include/bits/types/__sigset_t.h
1777-rw-r--r-- root root 195 ./usr/include/bits/types/sigset_t.h
1778-rw-r--r-- root root 1148 ./usr/include/bits/types/__sigval_t.h
1779-rw-r--r-- root root 599 ./usr/include/bits/types/sigval_t.h
1780-rw-r--r-- root root 1062 ./usr/include/bits/types/stack_t.h
1781-rw-r--r-- root root 4104 ./usr/include/bits/types/struct_FILE.h
1782-rw-r--r-- root root 1066 ./usr/include/bits/types/struct_iovec.h
1783-rw-r--r-- root root 288 ./usr/include/bits/types/struct_itimerspec.h
1784-rw-r--r-- root root 274 ./usr/include/bits/types/struct_osockaddr.h
1785-rw-r--r-- root root 4121 ./usr/include/bits/types/struct_rusage.h
1786-rw-r--r-- root root 1073 ./usr/include/bits/types/struct_sched_param.h
1787-rw-r--r-- root root 1073 ./usr/include/bits/types/struct_sigstack.h
1788-rw-r--r-- root root 1897 ./usr/include/bits/types/struct_statx.h
1789-rw-r--r-- root root 1202 ./usr/include/bits/types/struct_statx_timestamp.h
1790-rw-r--r-- root root 728 ./usr/include/bits/types/struct_timespec.h
1791-rw-r--r-- root root 287 ./usr/include/bits/types/struct_timeval.h
1792-rw-r--r-- root root 760 ./usr/include/bits/types/struct_tm.h
1793-rw-r--r-- root root 159 ./usr/include/bits/types/timer_t.h
1794-rw-r--r-- root root 138 ./usr/include/bits/types/time_t.h
1795-rw-r--r-- root root 796 ./usr/include/bits/types/wint_t.h
1796-rw-r--r-- root root 1542 ./usr/include/bits/uintn-identity.h
1797-rw-r--r-- root root 1923 ./usr/include/bits/uio-ext.h
1798-rw-r--r-- root root 1385 ./usr/include/bits/uio_lim.h
1799-rw-r--r-- root root 1613 ./usr/include/bits/unistd_ext.h
1800-rw-r--r-- root root 13316 ./usr/include/bits/unistd.h
1801-rw-r--r-- root root 4067 ./usr/include/bits/utmp.h
1802-rw-r--r-- root root 3578 ./usr/include/bits/utmpx.h
1803-rw-r--r-- root root 1213 ./usr/include/bits/utsname.h
1804-rw-r--r-- root root 1697 ./usr/include/bits/waitflags.h
1805-rw-r--r-- root root 2287 ./usr/include/bits/waitstatus.h
1806-rw-r--r-- root root 20506 ./usr/include/bits/wchar2.h
1807-rw-r--r-- root root 1906 ./usr/include/bits/wchar.h
1808-rw-r--r-- root root 2251 ./usr/include/bits/wchar-ldbl.h
1809-rw-r--r-- root root 6307 ./usr/include/bits/wctype-wchar.h
1810-rw-r--r-- root root 442 ./usr/include/bits/wordsize.h
1811-rw-r--r-- root root 3858 ./usr/include/bits/xopen_lim.h
1812drwxr-xr-x root root 4096 ./usr/include/blkid
1813-rw-r--r-- root root 15478 ./usr/include/blkid/blkid.h
1814drwxr-xr-x root root 4096 ./usr/include/btrfs
1815-rw-r--r-- root root 5045 ./usr/include/btrfs/btrfsck.h
1816-rw-r--r-- root root 4670 ./usr/include/btrfs/btrfs-list.h
1817-rw-r--r-- root root 1095 ./usr/include/btrfs/crc32c.h
1818-rw-r--r-- root root 94261 ./usr/include/btrfs/ctree.h
1819-rw-r--r-- root root 3524 ./usr/include/btrfs/extent-cache.h
1820-rw-r--r-- root root 6444 ./usr/include/btrfs/extent_io.h
1821-rw-r--r-- root root 30105 ./usr/include/btrfs/ioctl.h
1822-rw-r--r-- root root 10965 ./usr/include/btrfs/kerncompat.h
1823-rw-r--r-- root root 14636 ./usr/include/btrfs/list.h
1824-rw-r--r-- root root 3343 ./usr/include/btrfs/radix-tree.h
1825-rw-r--r-- root root 2024 ./usr/include/btrfs/raid56.h
1826-rw-r--r-- root root 3902 ./usr/include/btrfs/rbtree.h
1827-rw-r--r-- root root 3090 ./usr/include/btrfs/send.h
1828-rw-r--r-- root root 2803 ./usr/include/btrfs/send-stream.h
1829-rw-r--r-- root root 3388 ./usr/include/btrfs/send-utils.h
1830-rw-r--r-- root root 1223 ./usr/include/btrfs/sizes.h
1831-rw-r--r-- root root 23351 ./usr/include/btrfsutil.h
1832-rw-r--r-- root root 363 ./usr/include/btrfs/version.h
1833-rw-r--r-- root root 1405 ./usr/include/byteswap.h
1834-rw-r--r-- root root 6240 ./usr/include/bzlib.h
1835drwxr-xr-x root root 4096 ./usr/include/c++
1836drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0
1837-rw-r--r-- root root 3045 ./usr/include/c++/10.1.0/algorithm
1838-rw-r--r-- root root 18236 ./usr/include/c++/10.1.0/any
1839-rw-r--r-- root root 13700 ./usr/include/c++/10.1.0/array
1840-rw-r--r-- root root 45341 ./usr/include/c++/10.1.0/atomic
1841drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/backward
1842-rw-r--r-- root root 10804 ./usr/include/c++/10.1.0/backward/auto_ptr.h
1843-rw-r--r-- root root 2491 ./usr/include/c++/10.1.0/backward/backward_warning.h
1844-rw-r--r-- root root 7167 ./usr/include/c++/10.1.0/backward/binders.h
1845-rw-r--r-- root root 4248 ./usr/include/c++/10.1.0/backward/hash_fun.h
1846-rw-r--r-- root root 17822 ./usr/include/c++/10.1.0/backward/hash_map
1847-rw-r--r-- root root 17323 ./usr/include/c++/10.1.0/backward/hash_set
1848-rw-r--r-- root root 33883 ./usr/include/c++/10.1.0/backward/hashtable.h
1849-rw-r--r-- root root 7454 ./usr/include/c++/10.1.0/backward/strstream
1850-rw-r--r-- root root 11044 ./usr/include/c++/10.1.0/bit
1851drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/bits
1852-rw-r--r-- root root 24547 ./usr/include/c++/10.1.0/bits/algorithmfwd.h
1853-rw-r--r-- root root 3293 ./usr/include/c++/10.1.0/bits/allocated_ptr.h
1854-rw-r--r-- root root 8984 ./usr/include/c++/10.1.0/bits/allocator.h
1855-rw-r--r-- root root 24105 ./usr/include/c++/10.1.0/bits/alloc_traits.h
1856-rw-r--r-- root root 51344 ./usr/include/c++/10.1.0/bits/atomic_base.h
1857-rw-r--r-- root root 9499 ./usr/include/c++/10.1.0/bits/atomic_futex.h
1858-rw-r--r-- root root 2352 ./usr/include/c++/10.1.0/bits/atomic_lockfree_defines.h
1859-rw-r--r-- root root 16074 ./usr/include/c++/10.1.0/bits/basic_ios.h
1860-rw-r--r-- root root 6083 ./usr/include/c++/10.1.0/bits/basic_ios.tcc
1861-rw-r--r-- root root 249154 ./usr/include/c++/10.1.0/bits/basic_string.h
1862-rw-r--r-- root root 54513 ./usr/include/c++/10.1.0/bits/basic_string.tcc
1863-rw-r--r-- root root 27182 ./usr/include/c++/10.1.0/bits/boost_concept_check.h
1864-rw-r--r-- root root 1474 ./usr/include/c++/10.1.0/bits/c++0x_warning.h
1865-rw-r--r-- root root 3435 ./usr/include/c++/10.1.0/bits/charconv.h
1866-rw-r--r-- root root 28509 ./usr/include/c++/10.1.0/bits/char_traits.h
1867-rw-r--r-- root root 25429 ./usr/include/c++/10.1.0/bits/codecvt.h
1868-rw-r--r-- root root 3423 ./usr/include/c++/10.1.0/bits/concept_check.h
1869-rw-r--r-- root root 12011 ./usr/include/c++/10.1.0/bits/cpp_type_traits.h
1870-rw-r--r-- root root 1811 ./usr/include/c++/10.1.0/bits/cxxabi_forced.h
1871-rw-r--r-- root root 2220 ./usr/include/c++/10.1.0/bits/cxxabi_init_exception.h
1872-rw-r--r-- root root 37325 ./usr/include/c++/10.1.0/bits/deque.tcc
1873-rw-r--r-- root root 12387 ./usr/include/c++/10.1.0/bits/enable_special_members.h
1874-rw-r--r-- root root 2037 ./usr/include/c++/10.1.0/bits/erase_if.h
1875-rw-r--r-- root root 45979 ./usr/include/c++/10.1.0/bitset
1876-rw-r--r-- root root 1645 ./usr/include/c++/10.1.0/bits/exception_defines.h
1877-rw-r--r-- root root 2483 ./usr/include/c++/10.1.0/bits/exception.h
1878-rw-r--r-- root root 6072 ./usr/include/c++/10.1.0/bits/exception_ptr.h
1879-rw-r--r-- root root 50386 ./usr/include/c++/10.1.0/bits/forward_list.h
1880-rw-r--r-- root root 13871 ./usr/include/c++/10.1.0/bits/forward_list.tcc
1881-rw-r--r-- root root 16405 ./usr/include/c++/10.1.0/bits/fs_dir.h
1882-rw-r--r-- root root 10267 ./usr/include/c++/10.1.0/bits/fs_fwd.h
1883-rw-r--r-- root root 9729 ./usr/include/c++/10.1.0/bits/fs_ops.h
1884-rw-r--r-- root root 38775 ./usr/include/c++/10.1.0/bits/fs_path.h
1885-rw-r--r-- root root 33663 ./usr/include/c++/10.1.0/bits/fstream.tcc
1886-rw-r--r-- root root 3433 ./usr/include/c++/10.1.0/bits/functexcept.h
1887-rw-r--r-- root root 8567 ./usr/include/c++/10.1.0/bits/functional_hash.h
1888-rw-r--r-- root root 7851 ./usr/include/c++/10.1.0/bits/gslice_array.h
1889-rw-r--r-- root root 5518 ./usr/include/c++/10.1.0/bits/gslice.h
1890-rw-r--r-- root root 2146 ./usr/include/c++/10.1.0/bits/hash_bytes.h
1891-rw-r--r-- root root 74752 ./usr/include/c++/10.1.0/bits/hashtable.h
1892-rw-r--r-- root root 67673 ./usr/include/c++/10.1.0/bits/hashtable_policy.h
1893-rw-r--r-- root root 7861 ./usr/include/c++/10.1.0/bits/indirect_array.h
1894-rw-r--r-- root root 2877 ./usr/include/c++/10.1.0/bits/int_limits.h
1895-rw-r--r-- root root 6025 ./usr/include/c++/10.1.0/bits/invoke.h
1896-rw-r--r-- root root 31179 ./usr/include/c++/10.1.0/bits/ios_base.h
1897-rw-r--r-- root root 31093 ./usr/include/c++/10.1.0/bits/istream.tcc
1898-rw-r--r-- root root 30948 ./usr/include/c++/10.1.0/bits/iterator_concepts.h
1899-rw-r--r-- root root 16968 ./usr/include/c++/10.1.0/bits/list.tcc
1900-rw-r--r-- root root 24950 ./usr/include/c++/10.1.0/bits/locale_classes.h
1901-rw-r--r-- root root 8375 ./usr/include/c++/10.1.0/bits/locale_classes.tcc
1902-rw-r--r-- root root 18801 ./usr/include/c++/10.1.0/bits/locale_conv.h
1903-rw-r--r-- root root 92321 ./usr/include/c++/10.1.0/bits/locale_facets.h
1904-rw-r--r-- root root 68980 ./usr/include/c++/10.1.0/bits/locale_facets_nonio.h
1905-rw-r--r-- root root 45280 ./usr/include/c++/10.1.0/bits/locale_facets_nonio.tcc
1906-rw-r--r-- root root 39548 ./usr/include/c++/10.1.0/bits/locale_facets.tcc
1907-rw-r--r-- root root 5941 ./usr/include/c++/10.1.0/bits/localefwd.h
1908-rw-r--r-- root root 7675 ./usr/include/c++/10.1.0/bits/mask_array.h
1909-rw-r--r-- root root 2487 ./usr/include/c++/10.1.0/bits/memoryfwd.h
1910-rw-r--r-- root root 6613 ./usr/include/c++/10.1.0/bits/move.h
1911-rw-r--r-- root root 4886 ./usr/include/c++/10.1.0/bits/nested_exception.h
1912-rw-r--r-- root root 8216 ./usr/include/c++/10.1.0/bits/node_handle.h
1913-rw-r--r-- root root 4002 ./usr/include/c++/10.1.0/bits/ostream_insert.h
1914-rw-r--r-- root root 12315 ./usr/include/c++/10.1.0/bits/ostream.tcc
1915-rw-r--r-- root root 7943 ./usr/include/c++/10.1.0/bits/parse_numbers.h
1916-rw-r--r-- root root 8465 ./usr/include/c++/10.1.0/bits/postypes.h
1917-rw-r--r-- root root 10153 ./usr/include/c++/10.1.0/bits/predefined_ops.h
1918-rw-r--r-- root root 6728 ./usr/include/c++/10.1.0/bits/ptr_traits.h
1919-rw-r--r-- root root 5053 ./usr/include/c++/10.1.0/bits/quoted_string.h
1920-rw-r--r-- root root 178118 ./usr/include/c++/10.1.0/bits/random.h
1921-rw-r--r-- root root 103405 ./usr/include/c++/10.1.0/bits/random.tcc
1922-rw-r--r-- root root 32001 ./usr/include/c++/10.1.0/bits/range_access.h
1923-rw-r--r-- root root 6516 ./usr/include/c++/10.1.0/bits/range_cmp.h
1924-rw-r--r-- root root 18319 ./usr/include/c++/10.1.0/bits/ranges_algobase.h
1925-rw-r--r-- root root 121079 ./usr/include/c++/10.1.0/bits/ranges_algo.h
1926-rw-r--r-- root root 18023 ./usr/include/c++/10.1.0/bits/ranges_uninitialized.h
1927-rw-r--r-- root root 13207 ./usr/include/c++/10.1.0/bits/refwrap.h
1928-rw-r--r-- root root 10738 ./usr/include/c++/10.1.0/bits/regex_automaton.h
1929-rw-r--r-- root root 7722 ./usr/include/c++/10.1.0/bits/regex_automaton.tcc
1930-rw-r--r-- root root 16481 ./usr/include/c++/10.1.0/bits/regex_compiler.h
1931-rw-r--r-- root root 18929 ./usr/include/c++/10.1.0/bits/regex_compiler.tcc
1932-rw-r--r-- root root 14729 ./usr/include/c++/10.1.0/bits/regex_constants.h
1933-rw-r--r-- root root 4904 ./usr/include/c++/10.1.0/bits/regex_error.h
1934-rw-r--r-- root root 7488 ./usr/include/c++/10.1.0/bits/regex_executor.h
1935-rw-r--r-- root root 18841 ./usr/include/c++/10.1.0/bits/regex_executor.tcc
1936-rw-r--r-- root root 102775 ./usr/include/c++/10.1.0/bits/regex.h
1937-rw-r--r-- root root 7088 ./usr/include/c++/10.1.0/bits/regex_scanner.h
1938-rw-r--r-- root root 15009 ./usr/include/c++/10.1.0/bits/regex_scanner.tcc
1939-rw-r--r-- root root 16524 ./usr/include/c++/10.1.0/bits/regex.tcc
1940-rw-r--r-- root root 9867 ./usr/include/c++/10.1.0/bits/shared_ptr_atomic.h
1941-rw-r--r-- root root 55312 ./usr/include/c++/10.1.0/bits/shared_ptr_base.h
1942-rw-r--r-- root root 30837 ./usr/include/c++/10.1.0/bits/shared_ptr.h
1943-rw-r--r-- root root 9578 ./usr/include/c++/10.1.0/bits/slice_array.h
1944-rw-r--r-- root root 47238 ./usr/include/c++/10.1.0/bits/specfun.h
1945-rw-r--r-- root root 10142 ./usr/include/c++/10.1.0/bits/sstream.tcc
1946-rw-r--r-- root root 3360 ./usr/include/c++/10.1.0/bits/std_abs.h
1947-rw-r--r-- root root 21612 ./usr/include/c++/10.1.0/bits/std_function.h
1948-rw-r--r-- root root 4767 ./usr/include/c++/10.1.0/bits/std_mutex.h
1949-rw-r--r-- root root 71744 ./usr/include/c++/10.1.0/bits/stl_algobase.h
1950-rw-r--r-- root root 214835 ./usr/include/c++/10.1.0/bits/stl_algo.h
1951-rw-r--r-- root root 34767 ./usr/include/c++/10.1.0/bits/stl_bvector.h
1952-rw-r--r-- root root 8521 ./usr/include/c++/10.1.0/bits/stl_construct.h
1953-rw-r--r-- root root 76807 ./usr/include/c++/10.1.0/bits/stl_deque.h
1954-rw-r--r-- root root 42293 ./usr/include/c++/10.1.0/bits/stl_function.h
1955-rw-r--r-- root root 20756 ./usr/include/c++/10.1.0/bits/stl_heap.h
1956-rw-r--r-- root root 8178 ./usr/include/c++/10.1.0/bits/stl_iterator_base_funcs.h
1957-rw-r--r-- root root 9660 ./usr/include/c++/10.1.0/bits/stl_iterator_base_types.h
1958-rw-r--r-- root root 69682 ./usr/include/c++/10.1.0/bits/stl_iterator.h
1959-rw-r--r-- root root 68748 ./usr/include/c++/10.1.0/bits/stl_list.h
1960-rw-r--r-- root root 54669 ./usr/include/c++/10.1.0/bits/stl_map.h
1961-rw-r--r-- root root 43510 ./usr/include/c++/10.1.0/bits/stl_multimap.h
1962-rw-r--r-- root root 37662 ./usr/include/c++/10.1.0/bits/stl_multiset.h
1963-rw-r--r-- root root 14600 ./usr/include/c++/10.1.0/bits/stl_numeric.h
1964-rw-r--r-- root root 20163 ./usr/include/c++/10.1.0/bits/stl_pair.h
1965-rw-r--r-- root root 25036 ./usr/include/c++/10.1.0/bits/stl_queue.h
1966-rw-r--r-- root root 3830 ./usr/include/c++/10.1.0/bits/stl_raw_storage_iter.h
1967-rw-r--r-- root root 4594 ./usr/include/c++/10.1.0/bits/stl_relops.h
1968-rw-r--r-- root root 37922 ./usr/include/c++/10.1.0/bits/stl_set.h
1969-rw-r--r-- root root 12684 ./usr/include/c++/10.1.0/bits/stl_stack.h
1970-rw-r--r-- root root 8623 ./usr/include/c++/10.1.0/bits/stl_tempbuf.h
1971-rw-r--r-- root root 74660 ./usr/include/c++/10.1.0/bits/stl_tree.h
1972-rw-r--r-- root root 33161 ./usr/include/c++/10.1.0/bits/stl_uninitialized.h
1973-rw-r--r-- root root 65919 ./usr/include/c++/10.1.0/bits/stl_vector.h
1974-rw-r--r-- root root 15462 ./usr/include/c++/10.1.0/bits/streambuf_iterator.h
1975-rw-r--r-- root root 4929 ./usr/include/c++/10.1.0/bits/streambuf.tcc
1976-rw-r--r-- root root 7694 ./usr/include/c++/10.1.0/bits/stream_iterator.h
1977-rw-r--r-- root root 2690 ./usr/include/c++/10.1.0/bits/stringfwd.h
1978-rw-r--r-- root root 6698 ./usr/include/c++/10.1.0/bits/string_view.tcc
1979-rw-r--r-- root root 10730 ./usr/include/c++/10.1.0/bits/uniform_int_dist.h
1980-rw-r--r-- root root 6090 ./usr/include/c++/10.1.0/bits/unique_lock.h
1981-rw-r--r-- root root 31291 ./usr/include/c++/10.1.0/bits/unique_ptr.h
1982-rw-r--r-- root root 76744 ./usr/include/c++/10.1.0/bits/unordered_map.h
1983-rw-r--r-- root root 60612 ./usr/include/c++/10.1.0/bits/unordered_set.h
1984-rw-r--r-- root root 6870 ./usr/include/c++/10.1.0/bits/uses_allocator.h
1985-rw-r--r-- root root 22839 ./usr/include/c++/10.1.0/bits/valarray_after.h
1986-rw-r--r-- root root 21295 ./usr/include/c++/10.1.0/bits/valarray_array.h
1987-rw-r--r-- root root 7254 ./usr/include/c++/10.1.0/bits/valarray_array.tcc
1988-rw-r--r-- root root 19142 ./usr/include/c++/10.1.0/bits/valarray_before.h
1989-rw-r--r-- root root 30870 ./usr/include/c++/10.1.0/bits/vector.tcc
1990-rw-r--r-- root root 1648 ./usr/include/c++/10.1.0/cassert
1991-rw-r--r-- root root 1335 ./usr/include/c++/10.1.0/ccomplex
1992-rw-r--r-- root root 2409 ./usr/include/c++/10.1.0/cctype
1993-rw-r--r-- root root 1770 ./usr/include/c++/10.1.0/cerrno
1994-rw-r--r-- root root 2051 ./usr/include/c++/10.1.0/cfenv
1995-rw-r--r-- root root 1889 ./usr/include/c++/10.1.0/cfloat
1996-rw-r--r-- root root 17991 ./usr/include/c++/10.1.0/charconv
1997-rw-r--r-- root root 38834 ./usr/include/c++/10.1.0/chrono
1998-rw-r--r-- root root 2157 ./usr/include/c++/10.1.0/cinttypes
1999-rw-r--r-- root root 1464 ./usr/include/c++/10.1.0/ciso646
2000-rw-r--r-- root root 1913 ./usr/include/c++/10.1.0/climits
2001-rw-r--r-- root root 1905 ./usr/include/c++/10.1.0/clocale
2002-rw-r--r-- root root 49130 ./usr/include/c++/10.1.0/cmath
2003-rw-r--r-- root root 5275 ./usr/include/c++/10.1.0/codecvt
2004-rw-r--r-- root root 27896 ./usr/include/c++/10.1.0/compare
2005-rw-r--r-- root root 56646 ./usr/include/c++/10.1.0/complex
2006-rw-r--r-- root root 1596 ./usr/include/c++/10.1.0/complex.h
2007-rw-r--r-- root root 12267 ./usr/include/c++/10.1.0/concepts
2008-rw-r--r-- root root 12993 ./usr/include/c++/10.1.0/condition_variable
2009-rw-r--r-- root root 7898 ./usr/include/c++/10.1.0/coroutine
2010-rw-r--r-- root root 1949 ./usr/include/c++/10.1.0/csetjmp
2011-rw-r--r-- root root 1855 ./usr/include/c++/10.1.0/csignal
2012-rw-r--r-- root root 1407 ./usr/include/c++/10.1.0/cstdalign
2013-rw-r--r-- root root 1868 ./usr/include/c++/10.1.0/cstdarg
2014-rw-r--r-- root root 1401 ./usr/include/c++/10.1.0/cstdbool
2015-rw-r--r-- root root 6274 ./usr/include/c++/10.1.0/cstddef
2016-rw-r--r-- root root 2335 ./usr/include/c++/10.1.0/cstdint
2017-rw-r--r-- root root 4439 ./usr/include/c++/10.1.0/cstdio
2018-rw-r--r-- root root 6325 ./usr/include/c++/10.1.0/cstdlib
2019-rw-r--r-- root root 3156 ./usr/include/c++/10.1.0/cstring
2020-rw-r--r-- root root 1360 ./usr/include/c++/10.1.0/ctgmath
2021-rw-r--r-- root root 2298 ./usr/include/c++/10.1.0/ctime
2022-rw-r--r-- root root 2210 ./usr/include/c++/10.1.0/cuchar
2023-rw-r--r-- root root 6542 ./usr/include/c++/10.1.0/cwchar
2024-rw-r--r-- root root 2793 ./usr/include/c++/10.1.0/cwctype
2025-rw-r--r-- root root 22011 ./usr/include/c++/10.1.0/cxxabi.h
2026drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/debug
2027-rw-r--r-- root root 12476 ./usr/include/c++/10.1.0/debug/array
2028-rw-r--r-- root root 2411 ./usr/include/c++/10.1.0/debug/assertions.h
2029-rw-r--r-- root root 11903 ./usr/include/c++/10.1.0/debug/bitset
2030-rw-r--r-- root root 5881 ./usr/include/c++/10.1.0/debug/debug.h
2031-rw-r--r-- root root 17979 ./usr/include/c++/10.1.0/debug/deque
2032-rw-r--r-- root root 16991 ./usr/include/c++/10.1.0/debug/formatter.h
2033-rw-r--r-- root root 27420 ./usr/include/c++/10.1.0/debug/forward_list
2034-rw-r--r-- root root 15612 ./usr/include/c++/10.1.0/debug/functions.h
2035-rw-r--r-- root root 9985 ./usr/include/c++/10.1.0/debug/helper_functions.h
2036-rw-r--r-- root root 25327 ./usr/include/c++/10.1.0/debug/list
2037-rw-r--r-- root root 20915 ./usr/include/c++/10.1.0/debug/macros.h
2038-rw-r--r-- root root 1656 ./usr/include/c++/10.1.0/debug/map
2039-rw-r--r-- root root 23035 ./usr/include/c++/10.1.0/debug/map.h
2040-rw-r--r-- root root 20301 ./usr/include/c++/10.1.0/debug/multimap.h
2041-rw-r--r-- root root 19200 ./usr/include/c++/10.1.0/debug/multiset.h
2042-rw-r--r-- root root 9279 ./usr/include/c++/10.1.0/debug/safe_base.h
2043-rw-r--r-- root root 3413 ./usr/include/c++/10.1.0/debug/safe_container.h
2044-rw-r--r-- root root 30112 ./usr/include/c++/10.1.0/debug/safe_iterator.h
2045-rw-r--r-- root root 16171 ./usr/include/c++/10.1.0/debug/safe_iterator.tcc
2046-rw-r--r-- root root 13739 ./usr/include/c++/10.1.0/debug/safe_local_iterator.h
2047-rw-r--r-- root root 2905 ./usr/include/c++/10.1.0/debug/safe_local_iterator.tcc
2048-rw-r--r-- root root 5096 ./usr/include/c++/10.1.0/debug/safe_sequence.h
2049-rw-r--r-- root root 5040 ./usr/include/c++/10.1.0/debug/safe_sequence.tcc
2050-rw-r--r-- root root 6895 ./usr/include/c++/10.1.0/debug/safe_unordered_base.h
2051-rw-r--r-- root root 3866 ./usr/include/c++/10.1.0/debug/safe_unordered_container.h
2052-rw-r--r-- root root 3263 ./usr/include/c++/10.1.0/debug/safe_unordered_container.tcc
2053-rw-r--r-- root root 1620 ./usr/include/c++/10.1.0/debug/set
2054-rw-r--r-- root root 19199 ./usr/include/c++/10.1.0/debug/set.h
2055-rw-r--r-- root root 4542 ./usr/include/c++/10.1.0/debug/stl_iterator.h
2056-rw-r--r-- root root 36471 ./usr/include/c++/10.1.0/debug/string
2057-rw-r--r-- root root 41394 ./usr/include/c++/10.1.0/debug/unordered_map
2058-rw-r--r-- root root 35429 ./usr/include/c++/10.1.0/debug/unordered_set
2059-rw-r--r-- root root 23523 ./usr/include/c++/10.1.0/debug/vector
2060drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/decimal
2061-rw-r--r-- root root 17636 ./usr/include/c++/10.1.0/decimal/decimal
2062-rw-r--r-- root root 16999 ./usr/include/c++/10.1.0/decimal/decimal.h
2063-rw-r--r-- root root 3973 ./usr/include/c++/10.1.0/deque
2064-rw-r--r-- root root 4848 ./usr/include/c++/10.1.0/exception
2065-rw-r--r-- root root 1803 ./usr/include/c++/10.1.0/execution
2066drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/experimental
2067-rw-r--r-- root root 3688 ./usr/include/c++/10.1.0/experimental/algorithm
2068-rw-r--r-- root root 16010 ./usr/include/c++/10.1.0/experimental/any
2069-rw-r--r-- root root 3371 ./usr/include/c++/10.1.0/experimental/array
2070drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/experimental/bits
2071-rw-r--r-- root root 10799 ./usr/include/c++/10.1.0/experimental/bits/fs_dir.h
2072-rw-r--r-- root root 8524 ./usr/include/c++/10.1.0/experimental/bits/fs_fwd.h
2073-rw-r--r-- root root 9340 ./usr/include/c++/10.1.0/experimental/bits/fs_ops.h
2074-rw-r--r-- root root 36768 ./usr/include/c++/10.1.0/experimental/bits/fs_path.h
2075-rw-r--r-- root root 2227 ./usr/include/c++/10.1.0/experimental/bits/lfts_config.h
2076-rw-r--r-- root root 4814 ./usr/include/c++/10.1.0/experimental/bits/net.h
2077-rw-r--r-- root root 20205 ./usr/include/c++/10.1.0/experimental/bits/shared_ptr.h
2078-rw-r--r-- root root 6816 ./usr/include/c++/10.1.0/experimental/bits/string_view.tcc
2079-rw-r--r-- root root 28719 ./usr/include/c++/10.1.0/experimental/buffer
2080-rw-r--r-- root root 1960 ./usr/include/c++/10.1.0/experimental/chrono
2081-rw-r--r-- root root 2296 ./usr/include/c++/10.1.0/experimental/deque
2082-rw-r--r-- root root 55081 ./usr/include/c++/10.1.0/experimental/executor
2083-rw-r--r-- root root 1589 ./usr/include/c++/10.1.0/experimental/filesystem
2084-rw-r--r-- root root 2367 ./usr/include/c++/10.1.0/experimental/forward_list
2085-rw-r--r-- root root 12311 ./usr/include/c++/10.1.0/experimental/functional
2086-rw-r--r-- root root 65288 ./usr/include/c++/10.1.0/experimental/internet
2087-rw-r--r-- root root 21331 ./usr/include/c++/10.1.0/experimental/io_context
2088-rw-r--r-- root root 3534 ./usr/include/c++/10.1.0/experimental/iterator
2089-rw-r--r-- root root 2265 ./usr/include/c++/10.1.0/experimental/list
2090-rw-r--r-- root root 2594 ./usr/include/c++/10.1.0/experimental/map
2091-rw-r--r-- root root 6056 ./usr/include/c++/10.1.0/experimental/memory
2092-rw-r--r-- root root 17388 ./usr/include/c++/10.1.0/experimental/memory_resource
2093-rw-r--r-- root root 1542 ./usr/include/c++/10.1.0/experimental/net
2094-rw-r--r-- root root 3744 ./usr/include/c++/10.1.0/experimental/netfwd
2095-rw-r--r-- root root 2858 ./usr/include/c++/10.1.0/experimental/numeric
2096-rw-r--r-- root root 26832 ./usr/include/c++/10.1.0/experimental/optional
2097-rw-r--r-- root root 15335 ./usr/include/c++/10.1.0/experimental/propagate_const
2098-rw-r--r-- root root 2499 ./usr/include/c++/10.1.0/experimental/random
2099-rw-r--r-- root root 2438 ./usr/include/c++/10.1.0/experimental/ratio
2100-rw-r--r-- root root 2121 ./usr/include/c++/10.1.0/experimental/regex
2101-rw-r--r-- root root 2471 ./usr/include/c++/10.1.0/experimental/set
2102-rw-r--r-- root root 76228 ./usr/include/c++/10.1.0/experimental/socket
2103-rw-r--r-- root root 2699 ./usr/include/c++/10.1.0/experimental/source_location
2104-rw-r--r-- root root 2920 ./usr/include/c++/10.1.0/experimental/string
2105-rw-r--r-- root root 22662 ./usr/include/c++/10.1.0/experimental/string_view
2106-rw-r--r-- root root 2045 ./usr/include/c++/10.1.0/experimental/system_error
2107-rw-r--r-- root root 5794 ./usr/include/c++/10.1.0/experimental/timer
2108-rw-r--r-- root root 2472 ./usr/include/c++/10.1.0/experimental/tuple
2109-rw-r--r-- root root 11221 ./usr/include/c++/10.1.0/experimental/type_traits
2110-rw-r--r-- root root 2845 ./usr/include/c++/10.1.0/experimental/unordered_map
2111-rw-r--r-- root root 2728 ./usr/include/c++/10.1.0/experimental/unordered_set
2112-rw-r--r-- root root 1657 ./usr/include/c++/10.1.0/experimental/utility
2113-rw-r--r-- root root 2355 ./usr/include/c++/10.1.0/experimental/vector
2114drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext
2115-rw-r--r-- root root 19255 ./usr/include/c++/10.1.0/ext/algorithm
2116-rw-r--r-- root root 3972 ./usr/include/c++/10.1.0/ext/aligned_buffer.h
2117-rw-r--r-- root root 6139 ./usr/include/c++/10.1.0/ext/alloc_traits.h
2118-rw-r--r-- root root 3477 ./usr/include/c++/10.1.0/ext/atomicity.h
2119-rw-r--r-- root root 32193 ./usr/include/c++/10.1.0/ext/bitmap_allocator.h
2120-rw-r--r-- root root 4447 ./usr/include/c++/10.1.0/ext/cast.h
2121-rw-r--r-- root root 6570 ./usr/include/c++/10.1.0/ext/cmath
2122-rw-r--r-- root root 16353 ./usr/include/c++/10.1.0/ext/codecvt_specializations.h
2123-rw-r--r-- root root 7542 ./usr/include/c++/10.1.0/ext/concurrence.h
2124-rw-r--r-- root root 5881 ./usr/include/c++/10.1.0/ext/debug_allocator.h
2125-rw-r--r-- root root 2247 ./usr/include/c++/10.1.0/ext/enc_filebuf.h
2126-rw-r--r-- root root 6277 ./usr/include/c++/10.1.0/ext/extptr_allocator.h
2127-rw-r--r-- root root 14172 ./usr/include/c++/10.1.0/ext/functional
2128-rw-r--r-- root root 17822 ./usr/include/c++/10.1.0/ext/hash_map
2129-rw-r--r-- root root 17323 ./usr/include/c++/10.1.0/ext/hash_set
2130-rw-r--r-- root root 4031 ./usr/include/c++/10.1.0/ext/iterator
2131-rw-r--r-- root root 5696 ./usr/include/c++/10.1.0/ext/malloc_allocator.h
2132-rw-r--r-- root root 7173 ./usr/include/c++/10.1.0/ext/memory
2133-rw-r--r-- root root 23628 ./usr/include/c++/10.1.0/ext/mt_allocator.h
2134-rw-r--r-- root root 5587 ./usr/include/c++/10.1.0/ext/new_allocator.h
2135-rw-r--r-- root root 4739 ./usr/include/c++/10.1.0/ext/numeric
2136-rw-r--r-- root root 4570 ./usr/include/c++/10.1.0/ext/numeric_traits.h
2137drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds
2138-rw-r--r-- root root 30110 ./usr/include/c++/10.1.0/ext/pb_ds/assoc_container.hpp
2139drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail
2140drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_
2141-rw-r--r-- root root 9027 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
2142-rw-r--r-- root root 4338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
2143-rw-r--r-- root root 4222 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
2144-rw-r--r-- root root 2574 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
2145-rw-r--r-- root root 2802 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
2146-rw-r--r-- root root 2767 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
2147-rw-r--r-- root root 5537 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
2148-rw-r--r-- root root 2630 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
2149-rw-r--r-- root root 2114 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
2150-rw-r--r-- root root 5011 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
2151-rw-r--r-- root root 2303 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
2152-rw-r--r-- root root 4363 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
2153-rw-r--r-- root root 1935 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
2154-rw-r--r-- root root 6133 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
2155-rw-r--r-- root root 4956 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
2156-rw-r--r-- root root 2480 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
2157drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_
2158drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_
2159-rw-r--r-- root root 6185 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
2160-rw-r--r-- root root 2721 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
2161-rw-r--r-- root root 3501 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
2162-rw-r--r-- root root 4515 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
2163-rw-r--r-- root root 2378 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
2164-rw-r--r-- root root 5304 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
2165-rw-r--r-- root root 5398 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
2166-rw-r--r-- root root 3922 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
2167-rw-r--r-- root root 2184 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
2168-rw-r--r-- root root 1930 ./usr/include/c++/10.1.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
2169drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_
2170-rw-r--r-- root root 12468 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
2171-rw-r--r-- root root 5539 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
2172-rw-r--r-- root root 8104 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
2173-rw-r--r-- root root 2952 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
2174-rw-r--r-- root root 4712 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
2175-rw-r--r-- root root 2132 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
2176-rw-r--r-- root root 5514 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
2177-rw-r--r-- root root 3548 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
2178-rw-r--r-- root root 5921 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
2179-rw-r--r-- root root 8961 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
2180-rw-r--r-- root root 1938 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
2181-rw-r--r-- root root 2942 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
2182-rw-r--r-- root root 4223 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
2183-rw-r--r-- root root 4040 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
2184-rw-r--r-- root root 6374 ./usr/include/c++/10.1.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp
2185drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy
2186-rw-r--r-- root root 4020 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp
2187-rw-r--r-- root root 2379 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
2188-rw-r--r-- root root 3254 ./usr/include/c++/10.1.0/ext/pb_ds/detail/branch_policy/traits.hpp
2189drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_
2190-rw-r--r-- root root 20071 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
2191-rw-r--r-- root root 2798 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
2192-rw-r--r-- root root 2874 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
2193-rw-r--r-- root root 5824 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
2194-rw-r--r-- root root 2259 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
2195-rw-r--r-- root root 2339 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
2196-rw-r--r-- root root 2726 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
2197-rw-r--r-- root root 2033 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
2198-rw-r--r-- root root 2181 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
2199-rw-r--r-- root root 2987 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
2200-rw-r--r-- root root 3278 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
2201-rw-r--r-- root root 3297 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
2202-rw-r--r-- root root 3258 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
2203-rw-r--r-- root root 2518 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
2204-rw-r--r-- root root 1779 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
2205-rw-r--r-- root root 3163 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
2206-rw-r--r-- root root 1896 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
2207-rw-r--r-- root root 2651 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
2208-rw-r--r-- root root 2707 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
2209-rw-r--r-- root root 2697 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
2210-rw-r--r-- root root 2514 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
2211-rw-r--r-- root root 4095 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
2212-rw-r--r-- root root 2275 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
2213-rw-r--r-- root root 2307 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
2214-rw-r--r-- root root 2161 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
2215-rw-r--r-- root root 2396 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
2216-rw-r--r-- root root 2772 ./usr/include/c++/10.1.0/ext/pb_ds/detail/cond_dealtor.hpp
2217-rw-r--r-- root root 13120 ./usr/include/c++/10.1.0/ext/pb_ds/detail/container_base_dispatch.hpp
2218-rw-r--r-- root root 8697 ./usr/include/c++/10.1.0/ext/pb_ds/detail/debug_map_base.hpp
2219drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn
2220-rw-r--r-- root root 2330 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
2221-rw-r--r-- root root 3739 ./usr/include/c++/10.1.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
2222drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_
2223-rw-r--r-- root root 6639 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
2224-rw-r--r-- root root 2235 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
2225-rw-r--r-- root root 2302 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
2226-rw-r--r-- root root 2207 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
2227-rw-r--r-- root root 2538 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
2228-rw-r--r-- root root 2678 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
2229-rw-r--r-- root root 3237 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
2230-rw-r--r-- root root 2918 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
2231-rw-r--r-- root root 2952 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
2232-rw-r--r-- root root 2511 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
2233-rw-r--r-- root root 1950 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
2234-rw-r--r-- root root 1780 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
2235-rw-r--r-- root root 20441 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
2236-rw-r--r-- root root 2160 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
2237-rw-r--r-- root root 1896 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
2238-rw-r--r-- root root 3810 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
2239-rw-r--r-- root root 4118 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
2240-rw-r--r-- root root 2652 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
2241-rw-r--r-- root root 2693 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
2242-rw-r--r-- root root 4190 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
2243-rw-r--r-- root root 2651 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
2244-rw-r--r-- root root 2684 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
2245-rw-r--r-- root root 2457 ./usr/include/c++/10.1.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
2246drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn
2247-rw-r--r-- root root 2137 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
2248-rw-r--r-- root root 2127 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
2249-rw-r--r-- root root 1946 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
2250-rw-r--r-- root root 3290 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
2251-rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
2252-rw-r--r-- root root 2009 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
2253-rw-r--r-- root root 1953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
2254-rw-r--r-- root root 10543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
2255-rw-r--r-- root root 10256 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
2256-rw-r--r-- root root 2291 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
2257-rw-r--r-- root root 2469 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
2258-rw-r--r-- root root 2598 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
2259-rw-r--r-- root root 2487 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
2260drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_
2261-rw-r--r-- root root 4924 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
2262-rw-r--r-- root root 4088 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
2263-rw-r--r-- root root 4108 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
2264-rw-r--r-- root root 3992 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
2265-rw-r--r-- root root 2158 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
2266-rw-r--r-- root root 5234 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
2267-rw-r--r-- root root 2588 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
2268-rw-r--r-- root root 8182 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
2269-rw-r--r-- root root 3240 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
2270-rw-r--r-- root root 4397 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
2271-rw-r--r-- root root 1960 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
2272-rw-r--r-- root root 2848 ./usr/include/c++/10.1.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
2273drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_
2274-rw-r--r-- root root 3617 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
2275-rw-r--r-- root root 2128 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
2276-rw-r--r-- root root 2117 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
2277-rw-r--r-- root root 3515 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
2278-rw-r--r-- root root 2894 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
2279-rw-r--r-- root root 2126 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
2280-rw-r--r-- root root 3543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
2281-rw-r--r-- root root 2547 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
2282-rw-r--r-- root root 10551 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
2283-rw-r--r-- root root 2061 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
2284drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy
2285-rw-r--r-- root root 2850 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
2286-rw-r--r-- root root 2672 ./usr/include/c++/10.1.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
2287drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_
2288-rw-r--r-- root root 6916 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
2289-rw-r--r-- root root 2851 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
2290-rw-r--r-- root root 5014 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
2291-rw-r--r-- root root 2136 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
2292-rw-r--r-- root root 2306 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
2293-rw-r--r-- root root 3394 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
2294-rw-r--r-- root root 8638 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
2295-rw-r--r-- root root 15509 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
2296-rw-r--r-- root root 1920 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
2297-rw-r--r-- root root 3807 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
2298-rw-r--r-- root root 4562 ./usr/include/c++/10.1.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp
2299drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_
2300-rw-r--r-- root root 2539 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
2301-rw-r--r-- root root 2029 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
2302-rw-r--r-- root root 7224 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
2303-rw-r--r-- root root 1970 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
2304-rw-r--r-- root root 2980 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
2305-rw-r--r-- root root 5500 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
2306-rw-r--r-- root root 3739 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
2307drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_
2308-rw-r--r-- root root 5745 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
2309-rw-r--r-- root root 3824 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
2310-rw-r--r-- root root 7978 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
2311-rw-r--r-- root root 7908 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
2312-rw-r--r-- root root 2108 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
2313-rw-r--r-- root root 14508 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
2314-rw-r--r-- root root 3513 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
2315-rw-r--r-- root root 36857 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
2316-rw-r--r-- root root 16777 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
2317-rw-r--r-- root root 2248 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
2318-rw-r--r-- root root 2953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
2319-rw-r--r-- root root 4363 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
2320-rw-r--r-- root root 7758 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
2321-rw-r--r-- root root 6718 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
2322-rw-r--r-- root root 3434 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
2323-rw-r--r-- root root 6305 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/traits.hpp
2324-rw-r--r-- root root 2075 ./usr/include/c++/10.1.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
2325-rw-r--r-- root root 4140 ./usr/include/c++/10.1.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
2326drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_
2327-rw-r--r-- root root 2816 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
2328-rw-r--r-- root root 2794 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
2329-rw-r--r-- root root 7084 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
2330-rw-r--r-- root root 1703 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
2331-rw-r--r-- root root 1874 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
2332-rw-r--r-- root root 3900 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
2333-rw-r--r-- root root 3671 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/node.hpp
2334-rw-r--r-- root root 7962 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
2335-rw-r--r-- root root 7894 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
2336-rw-r--r-- root root 3283 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp
2337drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_
2338-rw-r--r-- root root 2500 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
2339-rw-r--r-- root root 3571 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
2340-rw-r--r-- root root 2922 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
2341-rw-r--r-- root root 4270 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
2342-rw-r--r-- root root 5303 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
2343-rw-r--r-- root root 6199 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
2344-rw-r--r-- root root 2451 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
2345-rw-r--r-- root root 1937 ./usr/include/c++/10.1.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
2346drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy
2347-rw-r--r-- root root 4932 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
2348-rw-r--r-- root root 2805 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
2349-rw-r--r-- root root 7785 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
2350-rw-r--r-- root root 2970 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
2351-rw-r--r-- root root 6172 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
2352-rw-r--r-- root root 6316 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
2353-rw-r--r-- root root 3578 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
2354-rw-r--r-- root root 3914 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
2355-rw-r--r-- root root 2427 ./usr/include/c++/10.1.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
2356drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_
2357-rw-r--r-- root root 2880 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
2358-rw-r--r-- root root 2496 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
2359-rw-r--r-- root root 4302 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
2360-rw-r--r-- root root 3352 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
2361-rw-r--r-- root root 1689 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
2362-rw-r--r-- root root 3386 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
2363-rw-r--r-- root root 3587 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/node.hpp
2364-rw-r--r-- root root 8082 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
2365-rw-r--r-- root root 9307 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
2366-rw-r--r-- root root 3667 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
2367-rw-r--r-- root root 3351 ./usr/include/c++/10.1.0/ext/pb_ds/detail/splay_tree_/traits.hpp
2368-rw-r--r-- root root 5031 ./usr/include/c++/10.1.0/ext/pb_ds/detail/standard_policies.hpp
2369drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_
2370-rw-r--r-- root root 2979 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
2371-rw-r--r-- root root 3899 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
2372-rw-r--r-- root root 6088 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
2373-rw-r--r-- root root 1985 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
2374-rw-r--r-- root root 7516 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
2375-rw-r--r-- root root 3188 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
2376-rw-r--r-- root root 8389 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
2377-rw-r--r-- root root 1995 ./usr/include/c++/10.1.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
2378drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy
2379-rw-r--r-- root root 3338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
2380-rw-r--r-- root root 3756 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
2381-rw-r--r-- root root 2346 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
2382-rw-r--r-- root root 5153 ./usr/include/c++/10.1.0/ext/pb_ds/detail/tree_trace_base.hpp
2383drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy
2384-rw-r--r-- root root 3338 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
2385-rw-r--r-- root root 4734 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
2386-rw-r--r-- root root 4544 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
2387-rw-r--r-- root root 2666 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
2388-rw-r--r-- root root 2348 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
2389-rw-r--r-- root root 5847 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
2390-rw-r--r-- root root 3084 ./usr/include/c++/10.1.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
2391-rw-r--r-- root root 6450 ./usr/include/c++/10.1.0/ext/pb_ds/detail/types_traits.hpp
2392-rw-r--r-- root root 4318 ./usr/include/c++/10.1.0/ext/pb_ds/detail/type_utils.hpp
2393drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator
2394-rw-r--r-- root root 3517 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
2395-rw-r--r-- root root 3966 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp
2396-rw-r--r-- root root 3975 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
2397-rw-r--r-- root root 3742 ./usr/include/c++/10.1.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
2398-rw-r--r-- root root 2988 ./usr/include/c++/10.1.0/ext/pb_ds/exception.hpp
2399-rw-r--r-- root root 16815 ./usr/include/c++/10.1.0/ext/pb_ds/hash_policy.hpp
2400-rw-r--r-- root root 4318 ./usr/include/c++/10.1.0/ext/pb_ds/list_update_policy.hpp
2401-rw-r--r-- root root 5444 ./usr/include/c++/10.1.0/ext/pb_ds/priority_queue.hpp
2402-rw-r--r-- root root 12268 ./usr/include/c++/10.1.0/ext/pb_ds/tag_and_trait.hpp
2403-rw-r--r-- root root 5569 ./usr/include/c++/10.1.0/ext/pb_ds/tree_policy.hpp
2404-rw-r--r-- root root 12201 ./usr/include/c++/10.1.0/ext/pb_ds/trie_policy.hpp
2405-rw-r--r-- root root 5556 ./usr/include/c++/10.1.0/ext/pod_char_traits.h
2406-rw-r--r-- root root 20480 ./usr/include/c++/10.1.0/ext/pointer.h
2407-rw-r--r-- root root 8965 ./usr/include/c++/10.1.0/ext/pool_allocator.h
2408-rw-r--r-- root root 113176 ./usr/include/c++/10.1.0/ext/random
2409-rw-r--r-- root root 60330 ./usr/include/c++/10.1.0/ext/random.tcc
2410-rw-r--r-- root root 3278 ./usr/include/c++/10.1.0/ext/rb_tree
2411-rw-r--r-- root root 23794 ./usr/include/c++/10.1.0/ext/rc_string_base.h
2412-rw-r--r-- root root 88598 ./usr/include/c++/10.1.0/ext/rope
2413-rw-r--r-- root root 48860 ./usr/include/c++/10.1.0/ext/ropeimpl.h
2414-rw-r--r-- root root 29900 ./usr/include/c++/10.1.0/ext/slist
2415-rw-r--r-- root root 16393 ./usr/include/c++/10.1.0/ext/sso_string_base.h
2416-rw-r--r-- root root 5670 ./usr/include/c++/10.1.0/ext/stdio_filebuf.h
2417-rw-r--r-- root root 8782 ./usr/include/c++/10.1.0/ext/stdio_sync_filebuf.h
2418-rw-r--r-- root root 3597 ./usr/include/c++/10.1.0/ext/string_conversions.h
2419-rw-r--r-- root root 25222 ./usr/include/c++/10.1.0/ext/throw_allocator.h
2420-rw-r--r-- root root 16480 ./usr/include/c++/10.1.0/ext/typelist.h
2421-rw-r--r-- root root 5914 ./usr/include/c++/10.1.0/ext/type_traits.h
2422-rw-r--r-- root root 3178 ./usr/include/c++/10.1.0/ext/vstring_fwd.h
2423-rw-r--r-- root root 110624 ./usr/include/c++/10.1.0/ext/vstring.h
2424-rw-r--r-- root root 23614 ./usr/include/c++/10.1.0/ext/vstring.tcc
2425-rw-r--r-- root root 5885 ./usr/include/c++/10.1.0/ext/vstring_util.h
2426-rw-r--r-- root root 2020 ./usr/include/c++/10.1.0/fenv.h
2427-rw-r--r-- root root 1645 ./usr/include/c++/10.1.0/filesystem
2428-rw-r--r-- root root 2690 ./usr/include/c++/10.1.0/forward_list
2429-rw-r--r-- root root 40559 ./usr/include/c++/10.1.0/fstream
2430-rw-r--r-- root root 40189 ./usr/include/c++/10.1.0/functional
2431-rw-r--r-- root root 50826 ./usr/include/c++/10.1.0/future
2432-rw-r--r-- root root 3038 ./usr/include/c++/10.1.0/initializer_list
2433-rw-r--r-- root root 16547 ./usr/include/c++/10.1.0/iomanip
2434-rw-r--r-- root root 1601 ./usr/include/c++/10.1.0/ios
2435-rw-r--r-- root root 6918 ./usr/include/c++/10.1.0/iosfwd
2436-rw-r--r-- root root 2695 ./usr/include/c++/10.1.0/iostream
2437-rw-r--r-- root root 32843 ./usr/include/c++/10.1.0/istream
2438-rw-r--r-- root root 2751 ./usr/include/c++/10.1.0/iterator
2439-rw-r--r-- root root 71808 ./usr/include/c++/10.1.0/limits
2440-rw-r--r-- root root 3657 ./usr/include/c++/10.1.0/list
2441-rw-r--r-- root root 1488 ./usr/include/c++/10.1.0/locale
2442-rw-r--r-- root root 3929 ./usr/include/c++/10.1.0/map
2443-rw-r--r-- root root 4573 ./usr/include/c++/10.1.0/math.h
2444-rw-r--r-- root root 13663 ./usr/include/c++/10.1.0/memory
2445-rw-r--r-- root root 20624 ./usr/include/c++/10.1.0/memory_resource
2446-rw-r--r-- root root 19755 ./usr/include/c++/10.1.0/mutex
2447-rw-r--r-- root root 8199 ./usr/include/c++/10.1.0/new
2448-rw-r--r-- root root 6220 ./usr/include/c++/10.1.0/numbers
2449-rw-r--r-- root root 25090 ./usr/include/c++/10.1.0/numeric
2450-rw-r--r-- root root 38703 ./usr/include/c++/10.1.0/optional
2451-rw-r--r-- root root 24826 ./usr/include/c++/10.1.0/ostream
2452drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/parallel
2453-rw-r--r-- root root 18259 ./usr/include/c++/10.1.0/parallel/algobase.h
2454-rw-r--r-- root root 80136 ./usr/include/c++/10.1.0/parallel/algo.h
2455-rw-r--r-- root root 1381 ./usr/include/c++/10.1.0/parallel/algorithm
2456-rw-r--r-- root root 32306 ./usr/include/c++/10.1.0/parallel/algorithmfwd.h
2457-rw-r--r-- root root 16952 ./usr/include/c++/10.1.0/parallel/balanced_quicksort.h
2458-rw-r--r-- root root 12373 ./usr/include/c++/10.1.0/parallel/base.h
2459-rw-r--r-- root root 1586 ./usr/include/c++/10.1.0/parallel/basic_iterator.h
2460-rw-r--r-- root root 2235 ./usr/include/c++/10.1.0/parallel/checkers.h
2461-rw-r--r-- root root 3790 ./usr/include/c++/10.1.0/parallel/compatibility.h
2462-rw-r--r-- root root 2871 ./usr/include/c++/10.1.0/parallel/compiletime_settings.h
2463-rw-r--r-- root root 3356 ./usr/include/c++/10.1.0/parallel/equally_split.h
2464-rw-r--r-- root root 3543 ./usr/include/c++/10.1.0/parallel/features.h
2465-rw-r--r-- root root 13591 ./usr/include/c++/10.1.0/parallel/find.h
2466-rw-r--r-- root root 6992 ./usr/include/c++/10.1.0/parallel/find_selectors.h
2467-rw-r--r-- root root 3947 ./usr/include/c++/10.1.0/parallel/for_each.h
2468-rw-r--r-- root root 10565 ./usr/include/c++/10.1.0/parallel/for_each_selectors.h
2469-rw-r--r-- root root 5678 ./usr/include/c++/10.1.0/parallel/iterator.h
2470-rw-r--r-- root root 6542 ./usr/include/c++/10.1.0/parallel/list_partition.h
2471-rw-r--r-- root root 28592 ./usr/include/c++/10.1.0/parallel/losertree.h
2472-rw-r--r-- root root 9578 ./usr/include/c++/10.1.0/parallel/merge.h
2473-rw-r--r-- root root 22073 ./usr/include/c++/10.1.0/parallel/multiseq_selection.h
2474-rw-r--r-- root root 70545 ./usr/include/c++/10.1.0/parallel/multiway_merge.h
2475-rw-r--r-- root root 15281 ./usr/include/c++/10.1.0/parallel/multiway_mergesort.h
2476-rw-r--r-- root root 20717 ./usr/include/c++/10.1.0/parallel/numeric
2477-rw-r--r-- root root 7506 ./usr/include/c++/10.1.0/parallel/numericfwd.h
2478-rw-r--r-- root root 4031 ./usr/include/c++/10.1.0/parallel/omp_loop.h
2479-rw-r--r-- root root 4104 ./usr/include/c++/10.1.0/parallel/omp_loop_static.h
2480-rw-r--r-- root root 1576 ./usr/include/c++/10.1.0/parallel/parallel.h
2481-rw-r--r-- root root 4552 ./usr/include/c++/10.1.0/parallel/par_loop.h
2482-rw-r--r-- root root 7474 ./usr/include/c++/10.1.0/parallel/partial_sum.h
2483-rw-r--r-- root root 14961 ./usr/include/c++/10.1.0/parallel/partition.h
2484-rw-r--r-- root root 5542 ./usr/include/c++/10.1.0/parallel/queue.h
2485-rw-r--r-- root root 6126 ./usr/include/c++/10.1.0/parallel/quicksort.h
2486-rw-r--r-- root root 4227 ./usr/include/c++/10.1.0/parallel/random_number.h
2487-rw-r--r-- root root 18675 ./usr/include/c++/10.1.0/parallel/random_shuffle.h
2488-rw-r--r-- root root 5391 ./usr/include/c++/10.1.0/parallel/search.h
2489-rw-r--r-- root root 14590 ./usr/include/c++/10.1.0/parallel/set_operations.h
2490-rw-r--r-- root root 12462 ./usr/include/c++/10.1.0/parallel/settings.h
2491-rw-r--r-- root root 7709 ./usr/include/c++/10.1.0/parallel/sort.h
2492-rw-r--r-- root root 5982 ./usr/include/c++/10.1.0/parallel/tags.h
2493-rw-r--r-- root root 3716 ./usr/include/c++/10.1.0/parallel/types.h
2494-rw-r--r-- root root 6165 ./usr/include/c++/10.1.0/parallel/unique_copy.h
2495-rw-r--r-- root root 9610 ./usr/include/c++/10.1.0/parallel/workstealing.h
2496drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/pstl
2497-rw-r--r-- root root 68340 ./usr/include/c++/10.1.0/pstl/algorithm_fwd.h
2498-rw-r--r-- root root 172216 ./usr/include/c++/10.1.0/pstl/algorithm_impl.h
2499-rw-r--r-- root root 3694 ./usr/include/c++/10.1.0/pstl/execution_defs.h
2500-rw-r--r-- root root 4834 ./usr/include/c++/10.1.0/pstl/execution_impl.h
2501-rw-r--r-- root root 32278 ./usr/include/c++/10.1.0/pstl/glue_algorithm_defs.h
2502-rw-r--r-- root root 64874 ./usr/include/c++/10.1.0/pstl/glue_algorithm_impl.h
2503-rw-r--r-- root root 1549 ./usr/include/c++/10.1.0/pstl/glue_execution_defs.h
2504-rw-r--r-- root root 3865 ./usr/include/c++/10.1.0/pstl/glue_memory_defs.h
2505-rw-r--r-- root root 19574 ./usr/include/c++/10.1.0/pstl/glue_memory_impl.h
2506-rw-r--r-- root root 6620 ./usr/include/c++/10.1.0/pstl/glue_numeric_defs.h
2507-rw-r--r-- root root 11628 ./usr/include/c++/10.1.0/pstl/glue_numeric_impl.h
2508-rw-r--r-- root root 1997 ./usr/include/c++/10.1.0/pstl/memory_impl.h
2509-rw-r--r-- root root 7929 ./usr/include/c++/10.1.0/pstl/numeric_fwd.h
2510-rw-r--r-- root root 18748 ./usr/include/c++/10.1.0/pstl/numeric_impl.h
2511-rw-r--r-- root root 718 ./usr/include/c++/10.1.0/pstl/parallel_backend.h
2512-rw-r--r-- root root 4084 ./usr/include/c++/10.1.0/pstl/parallel_backend_serial.h
2513-rw-r--r-- root root 26379 ./usr/include/c++/10.1.0/pstl/parallel_backend_tbb.h
2514-rw-r--r-- root root 5602 ./usr/include/c++/10.1.0/pstl/parallel_backend_utils.h
2515-rw-r--r-- root root 4110 ./usr/include/c++/10.1.0/pstl/parallel_impl.h
2516-rw-r--r-- root root 6990 ./usr/include/c++/10.1.0/pstl/pstl_config.h
2517-rw-r--r-- root root 29256 ./usr/include/c++/10.1.0/pstl/unseq_backend_simd.h
2518-rw-r--r-- root root 4606 ./usr/include/c++/10.1.0/pstl/utils.h
2519-rw-r--r-- root root 2467 ./usr/include/c++/10.1.0/queue
2520-rw-r--r-- root root 1692 ./usr/include/c++/10.1.0/random
2521-rw-r--r-- root root 97030 ./usr/include/c++/10.1.0/ranges
2522-rw-r--r-- root root 20107 ./usr/include/c++/10.1.0/ratio
2523-rw-r--r-- root root 2648 ./usr/include/c++/10.1.0/regex
2524-rw-r--r-- root root 17459 ./usr/include/c++/10.1.0/scoped_allocator
2525-rw-r--r-- root root 3799 ./usr/include/c++/10.1.0/set
2526-rw-r--r-- root root 24417 ./usr/include/c++/10.1.0/shared_mutex
2527-rw-r--r-- root root 13251 ./usr/include/c++/10.1.0/span
2528-rw-r--r-- root root 28524 ./usr/include/c++/10.1.0/sstream
2529-rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/stack
2530-rw-r--r-- root root 9877 ./usr/include/c++/10.1.0/stdexcept
2531-rw-r--r-- root root 2248 ./usr/include/c++/10.1.0/stdlib.h
2532-rw-r--r-- root root 16254 ./usr/include/c++/10.1.0/stop_token
2533-rw-r--r-- root root 30017 ./usr/include/c++/10.1.0/streambuf
2534-rw-r--r-- root root 4645 ./usr/include/c++/10.1.0/string
2535-rw-r--r-- root root 24878 ./usr/include/c++/10.1.0/string_view
2536-rw-r--r-- root root 14871 ./usr/include/c++/10.1.0/system_error
2537-rw-r--r-- root root 1360 ./usr/include/c++/10.1.0/tgmath.h
2538-rw-r--r-- root root 13968 ./usr/include/c++/10.1.0/thread
2539drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/tr1
2540-rw-r--r-- root root 6983 ./usr/include/c++/10.1.0/tr1/array
2541-rw-r--r-- root root 22937 ./usr/include/c++/10.1.0/tr1/bessel_function.tcc
2542-rw-r--r-- root root 5995 ./usr/include/c++/10.1.0/tr1/beta_function.tcc
2543-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/ccomplex
2544-rw-r--r-- root root 1478 ./usr/include/c++/10.1.0/tr1/cctype
2545-rw-r--r-- root root 2070 ./usr/include/c++/10.1.0/tr1/cfenv
2546-rw-r--r-- root root 1380 ./usr/include/c++/10.1.0/tr1/cfloat
2547-rw-r--r-- root root 2322 ./usr/include/c++/10.1.0/tr1/cinttypes
2548-rw-r--r-- root root 1454 ./usr/include/c++/10.1.0/tr1/climits
2549-rw-r--r-- root root 43874 ./usr/include/c++/10.1.0/tr1/cmath
2550-rw-r--r-- root root 12384 ./usr/include/c++/10.1.0/tr1/complex
2551-rw-r--r-- root root 1261 ./usr/include/c++/10.1.0/tr1/complex.h
2552-rw-r--r-- root root 1246 ./usr/include/c++/10.1.0/tr1/cstdarg
2553-rw-r--r-- root root 1344 ./usr/include/c++/10.1.0/tr1/cstdbool
2554-rw-r--r-- root root 2687 ./usr/include/c++/10.1.0/tr1/cstdint
2555-rw-r--r-- root root 1548 ./usr/include/c++/10.1.0/tr1/cstdio
2556-rw-r--r-- root root 1862 ./usr/include/c++/10.1.0/tr1/cstdlib
2557-rw-r--r-- root root 1248 ./usr/include/c++/10.1.0/tr1/ctgmath
2558-rw-r--r-- root root 1234 ./usr/include/c++/10.1.0/tr1/ctime
2559-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/ctype.h
2560-rw-r--r-- root root 1784 ./usr/include/c++/10.1.0/tr1/cwchar
2561-rw-r--r-- root root 1525 ./usr/include/c++/10.1.0/tr1/cwctype
2562-rw-r--r-- root root 27644 ./usr/include/c++/10.1.0/tr1/ell_integral.tcc
2563-rw-r--r-- root root 16013 ./usr/include/c++/10.1.0/tr1/exp_integral.tcc
2564-rw-r--r-- root root 1204 ./usr/include/c++/10.1.0/tr1/fenv.h
2565-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/float.h
2566-rw-r--r-- root root 70545 ./usr/include/c++/10.1.0/tr1/functional
2567-rw-r--r-- root root 6043 ./usr/include/c++/10.1.0/tr1/functional_hash.h
2568-rw-r--r-- root root 14682 ./usr/include/c++/10.1.0/tr1/gamma.tcc
2569-rw-r--r-- root root 41995 ./usr/include/c++/10.1.0/tr1/hashtable.h
2570-rw-r--r-- root root 25086 ./usr/include/c++/10.1.0/tr1/hashtable_policy.h
2571-rw-r--r-- root root 28066 ./usr/include/c++/10.1.0/tr1/hypergeometric.tcc
2572-rw-r--r-- root root 1267 ./usr/include/c++/10.1.0/tr1/inttypes.h
2573-rw-r--r-- root root 10652 ./usr/include/c++/10.1.0/tr1/legendre_function.tcc
2574-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/limits.h
2575-rw-r--r-- root root 4553 ./usr/include/c++/10.1.0/tr1/math.h
2576-rw-r--r-- root root 1791 ./usr/include/c++/10.1.0/tr1/memory
2577-rw-r--r-- root root 16324 ./usr/include/c++/10.1.0/tr1/modified_bessel_func.tcc
2578-rw-r--r-- root root 3925 ./usr/include/c++/10.1.0/tr1/poly_hermite.tcc
2579-rw-r--r-- root root 11676 ./usr/include/c++/10.1.0/tr1/poly_laguerre.tcc
2580-rw-r--r-- root root 1589 ./usr/include/c++/10.1.0/tr1/random
2581-rw-r--r-- root root 73123 ./usr/include/c++/10.1.0/tr1/random.h
2582-rw-r--r-- root root 53927 ./usr/include/c++/10.1.0/tr1/random.tcc
2583-rw-r--r-- root root 92899 ./usr/include/c++/10.1.0/tr1/regex
2584-rw-r--r-- root root 14067 ./usr/include/c++/10.1.0/tr1/riemann_zeta.tcc
2585-rw-r--r-- root root 32608 ./usr/include/c++/10.1.0/tr1/shared_ptr.h
2586-rw-r--r-- root root 5055 ./usr/include/c++/10.1.0/tr1/special_function_util.h
2587-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/stdarg.h
2588-rw-r--r-- root root 1219 ./usr/include/c++/10.1.0/tr1/stdbool.h
2589-rw-r--r-- root root 1214 ./usr/include/c++/10.1.0/tr1/stdint.h
2590-rw-r--r-- root root 1209 ./usr/include/c++/10.1.0/tr1/stdio.h
2591-rw-r--r-- root root 1487 ./usr/include/c++/10.1.0/tr1/stdlib.h
2592-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/tgmath.h
2593-rw-r--r-- root root 12119 ./usr/include/c++/10.1.0/tr1/tuple
2594-rw-r--r-- root root 19019 ./usr/include/c++/10.1.0/tr1/type_traits
2595-rw-r--r-- root root 1574 ./usr/include/c++/10.1.0/tr1/unordered_map
2596-rw-r--r-- root root 10216 ./usr/include/c++/10.1.0/tr1/unordered_map.h
2597-rw-r--r-- root root 1574 ./usr/include/c++/10.1.0/tr1/unordered_set
2598-rw-r--r-- root root 9540 ./usr/include/c++/10.1.0/tr1/unordered_set.h
2599-rw-r--r-- root root 3225 ./usr/include/c++/10.1.0/tr1/utility
2600-rw-r--r-- root root 1249 ./usr/include/c++/10.1.0/tr1/wchar.h
2601-rw-r--r-- root root 1255 ./usr/include/c++/10.1.0/tr1/wctype.h
2602drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/tr2
2603-rw-r--r-- root root 7370 ./usr/include/c++/10.1.0/tr2/bool_set
2604-rw-r--r-- root root 8319 ./usr/include/c++/10.1.0/tr2/bool_set.tcc
2605-rw-r--r-- root root 34336 ./usr/include/c++/10.1.0/tr2/dynamic_bitset
2606-rw-r--r-- root root 8925 ./usr/include/c++/10.1.0/tr2/dynamic_bitset.tcc
2607-rw-r--r-- root root 2130 ./usr/include/c++/10.1.0/tr2/ratio
2608-rw-r--r-- root root 2699 ./usr/include/c++/10.1.0/tr2/type_traits
2609-rw-r--r-- root root 60078 ./usr/include/c++/10.1.0/tuple
2610-rw-r--r-- root root 3512 ./usr/include/c++/10.1.0/typeindex
2611-rw-r--r-- root root 7746 ./usr/include/c++/10.1.0/typeinfo
2612-rw-r--r-- root root 103356 ./usr/include/c++/10.1.0/type_traits
2613-rw-r--r-- root root 3467 ./usr/include/c++/10.1.0/unordered_map
2614-rw-r--r-- root root 3340 ./usr/include/c++/10.1.0/unordered_set
2615-rw-r--r-- root root 14820 ./usr/include/c++/10.1.0/utility
2616-rw-r--r-- root root 40362 ./usr/include/c++/10.1.0/valarray
2617-rw-r--r-- root root 60701 ./usr/include/c++/10.1.0/variant
2618-rw-r--r-- root root 4275 ./usr/include/c++/10.1.0/vector
2619-rw-r--r-- root root 7706 ./usr/include/c++/10.1.0/version
2620drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux
2621drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits
2622-rw-r--r-- root root 1518 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/atomic_word.h
2623-rw-r--r-- root root 3575 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/basic_file.h
2624-rw-r--r-- root root 1979 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++allocator.h
2625-rw-r--r-- root root 61947 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++config.h
2626-rw-r--r-- root root 1608 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++io.h
2627-rw-r--r-- root root 3307 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/c++locale.h
2628-rw-r--r-- root root 1333 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/cpu_defines.h
2629-rw-r--r-- root root 2316 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/ctype_base.h
2630-rw-r--r-- root root 2284 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/ctype_inline.h
2631-rw-r--r-- root root 2096 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/cxxabi_tweaks.h
2632-rw-r--r-- root root 5175 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/error_constants.h
2633-rw-r--r-- root root 2628 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/extc++.h
2634-rw-r--r-- root root 24260 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-default.h
2635-rw-r--r-- root root 5608 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr.h
2636-rw-r--r-- root root 24260 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-posix.h
2637-rw-r--r-- root root 6808 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/gthr-single.h
2638-rw-r--r-- root root 4516 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/messages_members.h
2639-rw-r--r-- root root 6194 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/opt_random.h
2640-rw-r--r-- root root 2007 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/os_defines.h
2641-rw-r--r-- root root 3286 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/stdc++.h
2642-rw-r--r-- root root 1741 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/stdtr1c++.h
2643-rw-r--r-- root root 2924 ./usr/include/c++/10.1.0/x86_64-poky-linux/bits/time_members.h
2644drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/x86_64-poky-linux/ext
2645-rw-r--r-- root root 4756 ./usr/include/c++/10.1.0/x86_64-poky-linux/ext/opt_random.h
2646drwxr-xr-x root root 4096 ./usr/include/cairo
2647-rw-r--r-- root root 8698 ./usr/include/cairo/cairo-deprecated.h
2648-rw-r--r-- root root 1460 ./usr/include/cairo/cairo-features.h
2649-rw-r--r-- root root 3721 ./usr/include/cairo/cairo-ft.h
2650-rw-r--r-- root root 5117 ./usr/include/cairo/cairo-gl.h
2651-rw-r--r-- root root 6452 ./usr/include/cairo/cairo-gobject.h
2652-rw-r--r-- root root 110955 ./usr/include/cairo/cairo.h
2653-rw-r--r-- root root 5617 ./usr/include/cairo/cairo-pdf.h
2654-rw-r--r-- root root 3632 ./usr/include/cairo/cairo-ps.h
2655-rw-r--r-- root root 3072 ./usr/include/cairo/cairo-script.h
2656-rw-r--r-- root root 4059 ./usr/include/cairo/cairo-script-interpreter.h
2657-rw-r--r-- root root 4504 ./usr/include/cairo/cairo-svg.h
2658-rw-r--r-- root root 2173 ./usr/include/cairo/cairo-tee.h
2659-rw-r--r-- root root 148 ./usr/include/cairo/cairo-version.h
2660-rw-r--r-- root root 3775 ./usr/include/cairo/cairo-xcb.h
2661-rw-r--r-- root root 3577 ./usr/include/cairo/cairo-xlib.h
2662-rw-r--r-- root root 2436 ./usr/include/cairo/cairo-xlib-xrender.h
2663-rw-r--r-- root root 3198 ./usr/include/cap-ng.h
2664-rw-r--r-- root root 2118 ./usr/include/com_err.h
2665-rw-r--r-- root root 7164 ./usr/include/complex.h
2666-rw-r--r-- root root 2268 ./usr/include/cpio.h
2667-rw-r--r-- root root 11160 ./usr/include/crypt.h
2668-rw-r--r-- root root 19025 ./usr/include/ctf-api.h
2669-rw-r--r-- root root 25153 ./usr/include/ctf.h
2670-rw-r--r-- root root 10969 ./usr/include/ctype.h
2671-rw-r--r-- root root 100249 ./usr/include/curses-64.h
2672-rw-r--r-- root root 6878 ./usr/include/cursesapp.h
2673-rw-r--r-- root root 28021 ./usr/include/cursesf.h
2674-rw-r--r-- root root 512 ./usr/include/curses.h
2675-rw-r--r-- root root 19874 ./usr/include/cursesm.h
2676-rw-r--r-- root root 8722 ./usr/include/cursesp.h
2677-rw-r--r-- root root 49871 ./usr/include/cursesw.h
2678-rw-r--r-- root root 7407 ./usr/include/cursslk.h
2679drwxr-xr-x root root 4096 ./usr/include/db51
2680-rw-r--r-- root root 49057 ./usr/include/db51/db_cxx.h
2681-rw-r--r-- root root 123105 ./usr/include/db51/db.h
2682lrwxrwxrwx root root 13 ./usr/include/db_cxx.h -> db51/db_cxx.h
2683lrwxrwxrwx root root 9 ./usr/include/db.h -> db51/db.h
2684-rw-r--r-- root root 1414 ./usr/include/dbm.h
2685drwxr-xr-x root root 4096 ./usr/include/dbus-1.0
2686drwxr-xr-x root root 4096 ./usr/include/dbus-1.0/dbus
2687-rw-r--r-- root root 2812 ./usr/include/dbus-1.0/dbus/dbus-address.h
2688-rw-r--r-- root root 3472 ./usr/include/dbus-1.0/dbus/dbus-bus.h
2689-rw-r--r-- root root 27020 ./usr/include/dbus-1.0/dbus/dbus-connection.h
2690-rw-r--r-- root root 2911 ./usr/include/dbus-1.0/dbus/dbus-errors.h
2691-rw-r--r-- root root 3963 ./usr/include/dbus-1.0/dbus/dbus.h
2692-rw-r--r-- root root 6757 ./usr/include/dbus-1.0/dbus/dbus-macros.h
2693-rw-r--r-- root root 1963 ./usr/include/dbus-1.0/dbus/dbus-memory.h
2694-rw-r--r-- root root 15005 ./usr/include/dbus-1.0/dbus/dbus-message.h
2695-rw-r--r-- root root 1813 ./usr/include/dbus-1.0/dbus/dbus-misc.h
2696-rw-r--r-- root root 3811 ./usr/include/dbus-1.0/dbus/dbus-pending-call.h
2697-rw-r--r-- root root 23642 ./usr/include/dbus-1.0/dbus/dbus-protocol.h
2698-rw-r--r-- root root 4045 ./usr/include/dbus-1.0/dbus/dbus-python.h
2699-rw-r--r-- root root 5414 ./usr/include/dbus-1.0/dbus/dbus-server.h
2700-rw-r--r-- root root 5394 ./usr/include/dbus-1.0/dbus/dbus-shared.h
2701-rw-r--r-- root root 3049 ./usr/include/dbus-1.0/dbus/dbus-signature.h
2702-rw-r--r-- root root 2359 ./usr/include/dbus-1.0/dbus/dbus-syntax.h
2703-rw-r--r-- root root 8507 ./usr/include/dbus-1.0/dbus/dbus-threads.h
2704-rw-r--r-- root root 4145 ./usr/include/dbus-1.0/dbus/dbus-types.h
2705-rw-r--r-- root root 3332 ./usr/include/diagnostics.h
2706-rw-r--r-- root root 12515 ./usr/include/dirent.h
2707-rw-r--r-- root root 16687 ./usr/include/dis-asm.h
2708-rw-r--r-- root root 7479 ./usr/include/dlfcn.h
2709drwxr-xr-x root root 4096 ./usr/include/drm
2710-rw-r--r-- root root 31894 ./usr/include/drm/amdgpu_drm.h
2711-rw-r--r-- root root 1212 ./usr/include/drm/armada_drm.h
2712-rw-r--r-- root root 32817 ./usr/include/drm/drm_fourcc.h
2713-rw-r--r-- root root 32129 ./usr/include/drm/drm.h
2714-rw-r--r-- root root 28604 ./usr/include/drm/drm_mode.h
2715-rw-r--r-- root root 2782 ./usr/include/drm/drm_sarea.h
2716-rw-r--r-- root root 11822 ./usr/include/drm/etnaviv_drm.h
2717-rw-r--r-- root root 11132 ./usr/include/drm/exynos_drm.h
2718-rw-r--r-- root root 10061 ./usr/include/drm/i810_drm.h
2719-rw-r--r-- root root 70507 ./usr/include/drm/i915_drm.h
2720-rw-r--r-- root root 4817 ./usr/include/drm/lima_drm.h
2721-rw-r--r-- root root 13010 ./usr/include/drm/mga_drm.h
2722-rw-r--r-- root root 13230 ./usr/include/drm/msm_drm.h
2723-rw-r--r-- root root 6560 ./usr/include/drm/nouveau_drm.h
2724-rw-r--r-- root root 4141 ./usr/include/drm/omap_drm.h
2725-rw-r--r-- root root 7346 ./usr/include/drm/panfrost_drm.h
2726-rw-r--r-- root root 4131 ./usr/include/drm/qxl_drm.h
2727-rw-r--r-- root root 10000 ./usr/include/drm/r128_drm.h
2728-rw-r--r-- root root 38236 ./usr/include/drm/radeon_drm.h
2729-rw-r--r-- root root 7170 ./usr/include/drm/savage_drm.h
2730-rw-r--r-- root root 2637 ./usr/include/drm/sis_drm.h
2731-rw-r--r-- root root 14877 ./usr/include/drm/tegra_drm.h
2732-rw-r--r-- root root 8671 ./usr/include/drm/v3d_drm.h
2733-rw-r--r-- root root 14457 ./usr/include/drm/vc4_drm.h
2734-rw-r--r-- root root 1971 ./usr/include/drm/vgem_drm.h
2735-rw-r--r-- root root 8345 ./usr/include/drm/via_drm.h
2736-rw-r--r-- root root 5010 ./usr/include/drm/virtgpu_drm.h
2737-rw-r--r-- root root 35392 ./usr/include/drm/vmwgfx_drm.h
2738-rw-r--r-- root root 31014 ./usr/include/dwarf.h
2739drwxr-xr-x root root 4096 ./usr/include/e2p
2740-rw-r--r-- root root 3252 ./usr/include/e2p/e2p.h
2741-rw-r--r-- root root 180099 ./usr/include/elf.h
2742drwxr-xr-x root root 4096 ./usr/include/elfutils
2743-rw-r--r-- root root 3947 ./usr/include/elfutils/elf-knowledge.h
2744-rw-r--r-- root root 41860 ./usr/include/elfutils/known-dwarf.h
2745-rw-r--r-- root root 7098 ./usr/include/elfutils/libasm.h
2746-rw-r--r-- root root 6452 ./usr/include/elfutils/libdwelf.h
2747-rw-r--r-- root root 37558 ./usr/include/elfutils/libdwfl.h
2748-rw-r--r-- root root 44920 ./usr/include/elfutils/libdw.h
2749-rw-r--r-- root root 1274 ./usr/include/elfutils/version.h
2750-rw-r--r-- root root 2299 ./usr/include/endian.h
2751-rw-r--r-- root root 2867 ./usr/include/envz.h
2752-rw-r--r-- root root 2267 ./usr/include/err.h
2753-rw-r--r-- root root 1679 ./usr/include/errno.h
2754-rw-r--r-- root root 2282 ./usr/include/error.h
2755drwxr-xr-x root root 4096 ./usr/include/et
2756-rw-r--r-- root root 2118 ./usr/include/et/com_err.h
2757-rw-r--r-- root root 2969 ./usr/include/eti.h
2758-rw-r--r-- root root 9775 ./usr/include/etip.h
2759-rw-r--r-- root root 1523 ./usr/include/execinfo.h
2760-rw-r--r-- root root 3830 ./usr/include/expat_config.h
2761-rw-r--r-- root root 5528 ./usr/include/expat_external.h
2762-rw-r--r-- root root 41473 ./usr/include/expat.h
2763drwxr-xr-x root root 4096 ./usr/include/ext2fs
2764-rw-r--r-- root root 22148 ./usr/include/ext2fs/bitops.h
2765-rw-r--r-- root root 11847 ./usr/include/ext2fs/ext2_err.h
2766-rw-r--r-- root root 2644 ./usr/include/ext2fs/ext2_ext_attr.h
2767-rw-r--r-- root root 42075 ./usr/include/ext2fs/ext2_fs.h
2768-rw-r--r-- root root 72208 ./usr/include/ext2fs/ext2fs.h
2769-rw-r--r-- root root 5391 ./usr/include/ext2fs/ext2_io.h
2770-rw-r--r-- root root 4212 ./usr/include/ext2fs/ext2_types-64.h
2771-rw-r--r-- root root 556 ./usr/include/ext2fs/ext2_types.h
2772-rw-r--r-- root root 4558 ./usr/include/ext2fs/ext3_extents.h
2773-rw-r--r-- root root 1179 ./usr/include/ext2fs/hashmap.h
2774-rw-r--r-- root root 2588 ./usr/include/ext2fs/qcow2.h
2775-rw-r--r-- root root 8871 ./usr/include/ext2fs/tdb.h
2776-rw-r--r-- root root 11026 ./usr/include/fcntl.h
2777-rw-r--r-- root root 17235 ./usr/include/features.h
2778-rw-r--r-- root root 5874 ./usr/include/fenv.h
2779-rw-r--r-- root root 13934 ./usr/include/ffi-64.h
2780-rw-r--r-- root root 500 ./usr/include/ffi.h
2781-rw-r--r-- root root 4343 ./usr/include/ffitarget.h
2782drwxr-xr-x root root 4096 ./usr/include/finclude
2783-rw-r--r-- root root 2384 ./usr/include/finclude/math-vector-fortran.h
2784-rw-r--r-- root root 6893 ./usr/include/FlexLexer.h
2785-rw-r--r-- root root 3240 ./usr/include/fmtmsg.h
2786-rw-r--r-- root root 2296 ./usr/include/fnmatch.h
2787drwxr-xr-x root root 4096 ./usr/include/fontconfig
2788-rw-r--r-- root root 1958 ./usr/include/fontconfig/fcfreetype.h
2789-rw-r--r-- root root 4489 ./usr/include/fontconfig/fcprivate.h
2790-rw-r--r-- root root 28461 ./usr/include/fontconfig/fontconfig.h
2791-rw-r--r-- root root 18811 ./usr/include/form.h
2792-rw-r--r-- root root 3584 ./usr/include/fpu_control.h
2793drwxr-xr-x root root 4096 ./usr/include/freedreno
2794-rw-r--r-- root root 4992 ./usr/include/freedreno/freedreno_drmif.h
2795-rw-r--r-- root root 4963 ./usr/include/freedreno/freedreno_ringbuffer.h
2796drwxr-xr-x root root 4096 ./usr/include/freetype2
2797drwxr-xr-x root root 4096 ./usr/include/freetype2/freetype
2798drwxr-xr-x root root 4096 ./usr/include/freetype2/freetype/config
2799-rw-r--r-- root root 19859 ./usr/include/freetype2/freetype/config/ftconfig-64.h
2800-rw-r--r-- root root 624 ./usr/include/freetype2/freetype/config/ftconfig.h
2801-rw-r--r-- root root 23228 ./usr/include/freetype2/freetype/config/ftheader.h
2802-rw-r--r-- root root 1056 ./usr/include/freetype2/freetype/config/ftmodule.h
2803-rw-r--r-- root root 39330 ./usr/include/freetype2/freetype/config/ftoption.h
2804-rw-r--r-- root root 4307 ./usr/include/freetype2/freetype/config/ftstdlib.h
2805-rw-r--r-- root root 165664 ./usr/include/freetype2/freetype/freetype.h
2806-rw-r--r-- root root 5479 ./usr/include/freetype2/freetype/ftadvanc.h
2807-rw-r--r-- root root 2652 ./usr/include/freetype2/freetype/ftbbox.h
2808-rw-r--r-- root root 5336 ./usr/include/freetype2/freetype/ftbdf.h
2809-rw-r--r-- root root 9055 ./usr/include/freetype2/freetype/ftbitmap.h
2810-rw-r--r-- root root 2745 ./usr/include/freetype2/freetype/ftbzip2.h
2811-rw-r--r-- root root 33870 ./usr/include/freetype2/freetype/ftcache.h
2812-rw-r--r-- root root 2510 ./usr/include/freetype2/freetype/ftchapters.h
2813-rw-r--r-- root root 4036 ./usr/include/freetype2/freetype/ftcid.h
2814-rw-r--r-- root root 8927 ./usr/include/freetype2/freetype/ftcolor.h
2815-rw-r--r-- root root 47451 ./usr/include/freetype2/freetype/ftdriver.h
2816-rw-r--r-- root root 12336 ./usr/include/freetype2/freetype/fterrdef.h
2817-rw-r--r-- root root 8904 ./usr/include/freetype2/freetype/fterrors.h
2818-rw-r--r-- root root 2227 ./usr/include/freetype2/freetype/ftfntfmt.h
2819-rw-r--r-- root root 4152 ./usr/include/freetype2/freetype/ftgasp.h
2820-rw-r--r-- root root 18505 ./usr/include/freetype2/freetype/ftglyph.h
2821-rw-r--r-- root root 10639 ./usr/include/freetype2/freetype/ftgxval.h
2822-rw-r--r-- root root 4170 ./usr/include/freetype2/freetype/ftgzip.h
2823-rw-r--r-- root root 39169 ./usr/include/freetype2/freetype/ftimage.h
2824-rw-r--r-- root root 10322 ./usr/include/freetype2/freetype/ftincrem.h
2825-rw-r--r-- root root 11969 ./usr/include/freetype2/freetype/ftlcdfil.h
2826-rw-r--r-- root root 7114 ./usr/include/freetype2/freetype/ftlist.h
2827-rw-r--r-- root root 2726 ./usr/include/freetype2/freetype/ftlzw.h
2828-rw-r--r-- root root 7793 ./usr/include/freetype2/freetype/ftmac.h
2829-rw-r--r-- root root 21811 ./usr/include/freetype2/freetype/ftmm.h
2830-rw-r--r-- root root 21820 ./usr/include/freetype2/freetype/ftmodapi.h
2831-rw-r--r-- root root 6598 ./usr/include/freetype2/freetype/ftmoderr.h
2832-rw-r--r-- root root 5360 ./usr/include/freetype2/freetype/ftotval.h
2833-rw-r--r-- root root 17476 ./usr/include/freetype2/freetype/ftoutln.h
2834-rw-r--r-- root root 5606 ./usr/include/freetype2/freetype/ftparams.h
2835-rw-r--r-- root root 4924 ./usr/include/freetype2/freetype/ftpfr.h
2836-rw-r--r-- root root 6627 ./usr/include/freetype2/freetype/ftrender.h
2837-rw-r--r-- root root 4302 ./usr/include/freetype2/freetype/ftsizes.h
2838-rw-r--r-- root root 7742 ./usr/include/freetype2/freetype/ftsnames.h
2839-rw-r--r-- root root 21778 ./usr/include/freetype2/freetype/ftstroke.h
2840-rw-r--r-- root root 3376 ./usr/include/freetype2/freetype/ftsynth.h
2841-rw-r--r-- root root 8540 ./usr/include/freetype2/freetype/ftsystem.h
2842-rw-r--r-- root root 7403 ./usr/include/freetype2/freetype/fttrigon.h
2843-rw-r--r-- root root 14467 ./usr/include/freetype2/freetype/fttypes.h
2844-rw-r--r-- root root 7980 ./usr/include/freetype2/freetype/ftwinfnt.h
2845-rw-r--r-- root root 22843 ./usr/include/freetype2/freetype/t1tables.h
2846-rw-r--r-- root root 58791 ./usr/include/freetype2/freetype/ttnameid.h
2847-rw-r--r-- root root 25245 ./usr/include/freetype2/freetype/tttables.h
2848-rw-r--r-- root root 5106 ./usr/include/freetype2/freetype/tttags.h
2849-rw-r--r-- root root 1111 ./usr/include/freetype2/ft2build.h
2850-rw-r--r-- root root 3111 ./usr/include/fstab.h
2851-rw-r--r-- root root 8373 ./usr/include/fts.h
2852-rw-r--r-- root root 5252 ./usr/include/ftw.h
2853-rw-r--r-- root root 40645 ./usr/include/gawkapi.h
2854-rw-r--r-- root root 4211 ./usr/include/gconv.h
2855drwxr-xr-x root root 4096 ./usr/include/gdbm
2856lrwxrwxrwx root root 9 ./usr/include/gdbm/gdbm.h -> ../gdbm.h
2857-rw-r--r-- root root 10345 ./usr/include/gdbm.h
2858lrwxrwxrwx root root 9 ./usr/include/gdbm/ndbm.h -> ../ndbm.h
2859-rw-r--r-- root root 11312 ./usr/include/gelf.h
2860-rw-r--r-- root root 1469 ./usr/include/getopt.h
2861drwxr-xr-x root root 4096 ./usr/include/gio-unix-2.0
2862drwxr-xr-x root root 4096 ./usr/include/gio-unix-2.0/gio
2863-rw-r--r-- root root 8679 ./usr/include/gio-unix-2.0/gio/gdesktopappinfo.h
2864-rw-r--r-- root root 2218 ./usr/include/gio-unix-2.0/gio/gfiledescriptorbased.h
2865-rw-r--r-- root root 5761 ./usr/include/gio-unix-2.0/gio/gunixconnection.h
2866-rw-r--r-- root root 3197 ./usr/include/gio-unix-2.0/gio/gunixcredentialsmessage.h
2867-rw-r--r-- root root 4245 ./usr/include/gio-unix-2.0/gio/gunixfdlist.h
2868-rw-r--r-- root root 3767 ./usr/include/gio-unix-2.0/gio/gunixfdmessage.h
2869-rw-r--r-- root root 3018 ./usr/include/gio-unix-2.0/gio/gunixinputstream.h
2870-rw-r--r-- root root 7349 ./usr/include/gio-unix-2.0/gio/gunixmounts.h
2871-rw-r--r-- root root 3050 ./usr/include/gio-unix-2.0/gio/gunixoutputstream.h
2872-rw-r--r-- root root 3424 ./usr/include/gio-unix-2.0/gio/gunixsocketaddress.h
2873drwxr-xr-x root root 4096 ./usr/include/GL
2874-rw-r--r-- root root 421419 ./usr/include/GL/glcorearb.h
2875-rw-r--r-- root root 848217 ./usr/include/GL/glext.h
2876-rw-r--r-- root root 80393 ./usr/include/GL/gl.h
2877-rw-r--r-- root root 48752 ./usr/include/GL/glxext.h
2878-rw-r--r-- root root 14578 ./usr/include/GL/glx.h
2879-rw-r--r-- root root 4695 ./usr/include/GL/glxint.h
2880-rw-r--r-- root root 2085 ./usr/include/GL/glxmd.h
2881-rw-r--r-- root root 78531 ./usr/include/GL/glxproto.h
2882-rw-r--r-- root root 11429 ./usr/include/GL/glxtokens.h
2883drwxr-xr-x root root 4096 ./usr/include/glib-2.0
2884drwxr-xr-x root root 4096 ./usr/include/glib-2.0/gio
2885-rw-r--r-- root root 1768 ./usr/include/glib-2.0/gio/gactiongroupexporter.h
2886-rw-r--r-- root root 9167 ./usr/include/glib-2.0/gio/gactiongroup.h
2887-rw-r--r-- root root 4610 ./usr/include/glib-2.0/gio/gaction.h
2888-rw-r--r-- root root 3996 ./usr/include/glib-2.0/gio/gactionmap.h
2889-rw-r--r-- root root 19095 ./usr/include/glib-2.0/gio/gappinfo.h
2890-rw-r--r-- root root 6168 ./usr/include/glib-2.0/gio/gapplicationcommandline.h
2891-rw-r--r-- root root 14551 ./usr/include/glib-2.0/gio/gapplication.h
2892-rw-r--r-- root root 4423 ./usr/include/glib-2.0/gio/gasyncinitable.h
2893-rw-r--r-- root root 2818 ./usr/include/glib-2.0/gio/gasyncresult.h
2894-rw-r--r-- root root 5229 ./usr/include/glib-2.0/gio/gbufferedinputstream.h
2895-rw-r--r-- root root 3334 ./usr/include/glib-2.0/gio/gbufferedoutputstream.h
2896-rw-r--r-- root root 1652 ./usr/include/glib-2.0/gio/gbytesicon.h
2897-rw-r--r-- root root 4058 ./usr/include/glib-2.0/gio/gcancellable.h
2898-rw-r--r-- root root 2518 ./usr/include/glib-2.0/gio/gcharsetconverter.h
2899-rw-r--r-- root root 2971 ./usr/include/glib-2.0/gio/gcontenttype.h
2900-rw-r--r-- root root 2885 ./usr/include/glib-2.0/gio/gconverter.h
2901-rw-r--r-- root root 3015 ./usr/include/glib-2.0/gio/gconverterinputstream.h
2902-rw-r--r-- root root 3054 ./usr/include/glib-2.0/gio/gconverteroutputstream.h
2903-rw-r--r-- root root 3408 ./usr/include/glib-2.0/gio/gcredentials.h
2904-rw-r--r-- root root 6661 ./usr/include/glib-2.0/gio/gdatagrambased.h
2905-rw-r--r-- root root 11140 ./usr/include/glib-2.0/gio/gdatainputstream.h
2906-rw-r--r-- root root 4923 ./usr/include/glib-2.0/gio/gdataoutputstream.h
2907-rw-r--r-- root root 2739 ./usr/include/glib-2.0/gio/gdbusactiongroup.h
2908-rw-r--r-- root root 2670 ./usr/include/glib-2.0/gio/gdbusaddress.h
2909-rw-r--r-- root root 2130 ./usr/include/glib-2.0/gio/gdbusauthobserver.h
2910-rw-r--r-- root root 38873 ./usr/include/glib-2.0/gio/gdbusconnection.h
2911-rw-r--r-- root root 4306 ./usr/include/glib-2.0/gio/gdbuserror.h
2912-rw-r--r-- root root 3069 ./usr/include/glib-2.0/gio/gdbusinterface.h
2913-rw-r--r-- root root 6055 ./usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h
2914-rw-r--r-- root root 12393 ./usr/include/glib-2.0/gio/gdbusintrospection.h
2915-rw-r--r-- root root 1730 ./usr/include/glib-2.0/gio/gdbusmenumodel.h
2916-rw-r--r-- root root 11383 ./usr/include/glib-2.0/gio/gdbusmessage.h
2917-rw-r--r-- root root 5801 ./usr/include/glib-2.0/gio/gdbusmethodinvocation.h
2918-rw-r--r-- root root 4877 ./usr/include/glib-2.0/gio/gdbusnameowning.h
2919-rw-r--r-- root root 4521 ./usr/include/glib-2.0/gio/gdbusnamewatching.h
2920-rw-r--r-- root root 2941 ./usr/include/glib-2.0/gio/gdbusobject.h
2921-rw-r--r-- root root 9800 ./usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h
2922-rw-r--r-- root root 4474 ./usr/include/glib-2.0/gio/gdbusobjectmanager.h
2923-rw-r--r-- root root 4120 ./usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h
2924-rw-r--r-- root root 2635 ./usr/include/glib-2.0/gio/gdbusobjectproxy.h
2925-rw-r--r-- root root 3957 ./usr/include/glib-2.0/gio/gdbusobjectskeleton.h
2926-rw-r--r-- root root 12082 ./usr/include/glib-2.0/gio/gdbusproxy.h
2927-rw-r--r-- root root 2534 ./usr/include/glib-2.0/gio/gdbusserver.h
2928-rw-r--r-- root root 1779 ./usr/include/glib-2.0/gio/gdbusutils.h
2929-rw-r--r-- root root 14503 ./usr/include/glib-2.0/gio/gdrive.h
2930-rw-r--r-- root root 3197 ./usr/include/glib-2.0/gio/gdtlsclientconnection.h
2931-rw-r--r-- root root 11430 ./usr/include/glib-2.0/gio/gdtlsconnection.h
2932-rw-r--r-- root root 2446 ./usr/include/glib-2.0/gio/gdtlsserverconnection.h
2933-rw-r--r-- root root 2788 ./usr/include/glib-2.0/gio/gemblemedicon.h
2934-rw-r--r-- root root 2155 ./usr/include/glib-2.0/gio/gemblem.h
2935-rw-r--r-- root root 2801 ./usr/include/glib-2.0/gio/gfileattribute.h
2936-rw-r--r-- root root 6393 ./usr/include/glib-2.0/gio/gfileenumerator.h
2937-rw-r--r-- root root 79870 ./usr/include/glib-2.0/gio/gfile.h
2938-rw-r--r-- root root 1959 ./usr/include/glib-2.0/gio/gfileicon.h
2939-rw-r--r-- root root 44335 ./usr/include/glib-2.0/gio/gfileinfo.h
2940-rw-r--r-- root root 4656 ./usr/include/glib-2.0/gio/gfileinputstream.h
2941-rw-r--r-- root root 5041 ./usr/include/glib-2.0/gio/gfileiostream.h
2942-rw-r--r-- root root 3280 ./usr/include/glib-2.0/gio/gfilemonitor.h
2943-rw-r--r-- root root 3090 ./usr/include/glib-2.0/gio/gfilenamecompleter.h
2944-rw-r--r-- root root 5338 ./usr/include/glib-2.0/gio/gfileoutputstream.h
2945-rw-r--r-- root root 2832 ./usr/include/glib-2.0/gio/gfilterinputstream.h
2946-rw-r--r-- root root 2875 ./usr/include/glib-2.0/gio/gfilteroutputstream.h
2947-rw-r--r-- root root 3435 ./usr/include/glib-2.0/gio/gicon.h
2948-rw-r--r-- root root 4529 ./usr/include/glib-2.0/gio/ginetaddress.h
2949-rw-r--r-- root root 3119 ./usr/include/glib-2.0/gio/ginetaddressmask.h
2950-rw-r--r-- root root 3111 ./usr/include/glib-2.0/gio/ginetsocketaddress.h
2951-rw-r--r-- root root 2976 ./usr/include/glib-2.0/gio/ginitable.h
2952-rw-r--r-- root root 9188 ./usr/include/glib-2.0/gio/ginputstream.h
2953-rw-r--r-- root root 9066 ./usr/include/glib-2.0/gio/gio-autocleanups.h
2954-rw-r--r-- root root 76503 ./usr/include/glib-2.0/gio/gioenums.h
2955-rw-r--r-- root root 12517 ./usr/include/glib-2.0/gio/gioenumtypes.h
2956-rw-r--r-- root root 1558 ./usr/include/glib-2.0/gio/gioerror.h
2957-rw-r--r-- root root 5646 ./usr/include/glib-2.0/gio/gio.h
2958-rw-r--r-- root root 8064 ./usr/include/glib-2.0/gio/giomodule.h
2959-rw-r--r-- root root 1999 ./usr/include/glib-2.0/gio/gioscheduler.h
2960-rw-r--r-- root root 4862 ./usr/include/glib-2.0/gio/giostream.h
2961-rw-r--r-- root root 24681 ./usr/include/glib-2.0/gio/giotypes.h
2962-rw-r--r-- root root 2576 ./usr/include/glib-2.0/gio/glistmodel.h
2963-rw-r--r-- root root 4178 ./usr/include/glib-2.0/gio/gliststore.h
2964-rw-r--r-- root root 3671 ./usr/include/glib-2.0/gio/gloadableicon.h
2965-rw-r--r-- root root 3434 ./usr/include/glib-2.0/gio/gmemoryinputstream.h
2966-rw-r--r-- root root 2140 ./usr/include/glib-2.0/gio/gmemorymonitor.h
2967-rw-r--r-- root root 3933 ./usr/include/glib-2.0/gio/gmemoryoutputstream.h
2968-rw-r--r-- root root 1611 ./usr/include/glib-2.0/gio/gmenuexporter.h
2969-rw-r--r-- root root 8940 ./usr/include/glib-2.0/gio/gmenu.h
2970-rw-r--r-- root root 14334 ./usr/include/glib-2.0/gio/gmenumodel.h
2971-rw-r--r-- root root 15791 ./usr/include/glib-2.0/gio/gmount.h
2972-rw-r--r-- root root 6765 ./usr/include/glib-2.0/gio/gmountoperation.h
2973-rw-r--r-- root root 2536 ./usr/include/glib-2.0/gio/gnativesocketaddress.h
2974-rw-r--r-- root root 2270 ./usr/include/glib-2.0/gio/gnativevolumemonitor.h
2975-rw-r--r-- root root 2956 ./usr/include/glib-2.0/gio/gnetworkaddress.h
2976-rw-r--r-- root root 1994 ./usr/include/glib-2.0/gio/gnetworking.h
2977-rw-r--r-- root root 4239 ./usr/include/glib-2.0/gio/gnetworkmonitor.h
2978-rw-r--r-- root root 2756 ./usr/include/glib-2.0/gio/gnetworkservice.h
2979-rw-r--r-- root root 4898 ./usr/include/glib-2.0/gio/gnotification.h
2980-rw-r--r-- root root 15760 ./usr/include/glib-2.0/gio/goutputstream.h
2981-rw-r--r-- root root 5862 ./usr/include/glib-2.0/gio/gpermission.h
2982-rw-r--r-- root root 3829 ./usr/include/glib-2.0/gio/gpollableinputstream.h
2983-rw-r--r-- root root 4919 ./usr/include/glib-2.0/gio/gpollableoutputstream.h
2984-rw-r--r-- root root 2134 ./usr/include/glib-2.0/gio/gpollableutils.h
2985-rw-r--r-- root root 1994 ./usr/include/glib-2.0/gio/gpropertyaction.h
2986-rw-r--r-- root root 2939 ./usr/include/glib-2.0/gio/gproxyaddressenumerator.h
2987-rw-r--r-- root root 3166 ./usr/include/glib-2.0/gio/gproxyaddress.h
2988-rw-r--r-- root root 4067 ./usr/include/glib-2.0/gio/gproxy.h
2989-rw-r--r-- root root 3393 ./usr/include/glib-2.0/gio/gproxyresolver.h
2990-rw-r--r-- root root 3635 ./usr/include/glib-2.0/gio/gremoteactiongroup.h
2991-rw-r--r-- root root 16852 ./usr/include/glib-2.0/gio/gresolver.h
2992-rw-r--r-- root root 4651 ./usr/include/glib-2.0/gio/gresource.h
2993-rw-r--r-- root root 3280 ./usr/include/glib-2.0/gio/gseekable.h
2994-rw-r--r-- root root 8508 ./usr/include/glib-2.0/gio/gsettingsbackend.h
2995-rw-r--r-- root root 21148 ./usr/include/glib-2.0/gio/gsettings.h
2996-rw-r--r-- root root 5933 ./usr/include/glib-2.0/gio/gsettingsschema.h
2997-rw-r--r-- root root 4355 ./usr/include/glib-2.0/gio/gsimpleactiongroup.h
2998-rw-r--r-- root root 2915 ./usr/include/glib-2.0/gio/gsimpleaction.h
2999-rw-r--r-- root root 7809 ./usr/include/glib-2.0/gio/gsimpleasyncresult.h
3000-rw-r--r-- root root 1722 ./usr/include/glib-2.0/gio/gsimpleiostream.h
3001-rw-r--r-- root root 1686 ./usr/include/glib-2.0/gio/gsimplepermission.h
3002-rw-r--r-- root root 3531 ./usr/include/glib-2.0/gio/gsimpleproxyresolver.h
3003-rw-r--r-- root root 3897 ./usr/include/glib-2.0/gio/gsocketaddressenumerator.h
3004-rw-r--r-- root root 3086 ./usr/include/glib-2.0/gio/gsocketaddress.h
3005-rw-r--r-- root root 11211 ./usr/include/glib-2.0/gio/gsocketclient.h
3006-rw-r--r-- root root 2886 ./usr/include/glib-2.0/gio/gsocketconnectable.h
3007-rw-r--r-- root root 5056 ./usr/include/glib-2.0/gio/gsocketconnection.h
3008-rw-r--r-- root root 4886 ./usr/include/glib-2.0/gio/gsocketcontrolmessage.h
3009-rw-r--r-- root root 16181 ./usr/include/glib-2.0/gio/gsocket.h
3010-rw-r--r-- root root 7680 ./usr/include/glib-2.0/gio/gsocketlistener.h
3011-rw-r--r-- root root 3620 ./usr/include/glib-2.0/gio/gsocketservice.h
3012-rw-r--r-- root root 1936 ./usr/include/glib-2.0/gio/gsrvtarget.h
3013-rw-r--r-- root root 8606 ./usr/include/glib-2.0/gio/gsubprocess.h
3014-rw-r--r-- root root 6399 ./usr/include/glib-2.0/gio/gsubprocesslauncher.h
3015-rw-r--r-- root root 8278 ./usr/include/glib-2.0/gio/gtask.h
3016-rw-r--r-- root root 2957 ./usr/include/glib-2.0/gio/gtcpconnection.h
3017-rw-r--r-- root root 2973 ./usr/include/glib-2.0/gio/gtcpwrapperconnection.h
3018-rw-r--r-- root root 2303 ./usr/include/glib-2.0/gio/gtestdbus.h
3019-rw-r--r-- root root 2643 ./usr/include/glib-2.0/gio/gthemedicon.h
3020-rw-r--r-- root root 3665 ./usr/include/glib-2.0/gio/gthreadedsocketservice.h
3021-rw-r--r-- root root 4587 ./usr/include/glib-2.0/gio/gtlsbackend.h
3022-rw-r--r-- root root 3505 ./usr/include/glib-2.0/gio/gtlscertificate.h
3023-rw-r--r-- root root 3683 ./usr/include/glib-2.0/gio/gtlsclientconnection.h
3024-rw-r--r-- root root 6575 ./usr/include/glib-2.0/gio/gtlsconnection.h
3025-rw-r--r-- root root 17271 ./usr/include/glib-2.0/gio/gtlsdatabase.h
3026-rw-r--r-- root root 1909 ./usr/include/glib-2.0/gio/gtlsfiledatabase.h
3027-rw-r--r-- root root 8333 ./usr/include/glib-2.0/gio/gtlsinteraction.h
3028-rw-r--r-- root root 4818 ./usr/include/glib-2.0/gio/gtlspassword.h
3029-rw-r--r-- root root 2348 ./usr/include/glib-2.0/gio/gtlsserverconnection.h
3030-rw-r--r-- root root 6616 ./usr/include/glib-2.0/gio/gvfs.h
3031-rw-r--r-- root root 11736 ./usr/include/glib-2.0/gio/gvolume.h
3032-rw-r--r-- root root 5998 ./usr/include/glib-2.0/gio/gvolumemonitor.h
3033-rw-r--r-- root root 2350 ./usr/include/glib-2.0/gio/gzlibcompressor.h
3034-rw-r--r-- root root 2212 ./usr/include/glib-2.0/gio/gzlibdecompressor.h
3035drwxr-xr-x root root 4096 ./usr/include/glib-2.0/glib
3036drwxr-xr-x root root 4096 ./usr/include/glib-2.0/glib/deprecated
3037-rw-r--r-- root root 3256 ./usr/include/glib-2.0/glib/deprecated/gallocator.h
3038-rw-r--r-- root root 2987 ./usr/include/glib-2.0/glib/deprecated/gcache.h
3039-rw-r--r-- root root 2922 ./usr/include/glib-2.0/glib/deprecated/gcompletion.h
3040-rw-r--r-- root root 4392 ./usr/include/glib-2.0/glib/deprecated/gmain.h
3041-rw-r--r-- root root 3682 ./usr/include/glib-2.0/glib/deprecated/grel.h
3042-rw-r--r-- root root 10938 ./usr/include/glib-2.0/glib/deprecated/gthread.h
3043-rw-r--r-- root root 3912 ./usr/include/glib-2.0/glib/galloca.h
3044-rw-r--r-- root root 11385 ./usr/include/glib-2.0/glib/garray.h
3045-rw-r--r-- root root 5726 ./usr/include/glib-2.0/glib/gasyncqueue.h
3046-rw-r--r-- root root 23740 ./usr/include/glib-2.0/glib/gatomic.h
3047-rw-r--r-- root root 2727 ./usr/include/glib-2.0/glib/gbacktrace.h
3048-rw-r--r-- root root 2323 ./usr/include/glib-2.0/glib/gbase64.h
3049-rw-r--r-- root root 2902 ./usr/include/glib-2.0/glib/gbitlock.h
3050-rw-r--r-- root root 9596 ./usr/include/glib-2.0/glib/gbookmarkfile.h
3051-rw-r--r-- root root 3334 ./usr/include/glib-2.0/glib/gbytes.h
3052-rw-r--r-- root root 1578 ./usr/include/glib-2.0/glib/gcharset.h
3053-rw-r--r-- root root 3864 ./usr/include/glib-2.0/glib/gchecksum.h
3054-rw-r--r-- root root 5923 ./usr/include/glib-2.0/glib/gconvert.h
3055-rw-r--r-- root root 6245 ./usr/include/glib-2.0/glib/gdataset.h
3056-rw-r--r-- root root 12420 ./usr/include/glib-2.0/glib/gdate.h
3057-rw-r--r-- root root 12738 ./usr/include/glib-2.0/glib/gdatetime.h
3058-rw-r--r-- root root 1641 ./usr/include/glib-2.0/glib/gdir.h
3059-rw-r--r-- root root 2364 ./usr/include/glib-2.0/glib/genviron.h
3060-rw-r--r-- root root 3943 ./usr/include/glib-2.0/glib/gerror.h
3061-rw-r--r-- root root 5813 ./usr/include/glib-2.0/glib/gfileutils.h
3062-rw-r--r-- root root 2424 ./usr/include/glib-2.0/glib/ggettext.h
3063-rw-r--r-- root root 7886 ./usr/include/glib-2.0/glib/ghash.h
3064-rw-r--r-- root root 3469 ./usr/include/glib-2.0/glib/ghmac.h
3065-rw-r--r-- root root 6358 ./usr/include/glib-2.0/glib/ghook.h
3066-rw-r--r-- root root 1456 ./usr/include/glib-2.0/glib/ghostutils.h
3067-rw-r--r-- root root 1167 ./usr/include/glib-2.0/glib/gi18n.h
3068-rw-r--r-- root root 1370 ./usr/include/glib-2.0/glib/gi18n-lib.h
3069-rw-r--r-- root root 13954 ./usr/include/glib-2.0/glib/giochannel.h
3070-rw-r--r-- root root 14913 ./usr/include/glib-2.0/glib/gkeyfile.h
3071-rw-r--r-- root root 4789 ./usr/include/glib-2.0/glib/glib-autocleanups.h
3072-rw-r--r-- root root 6930 ./usr/include/glib-2.0/glib/glist.h
3073-rw-r--r-- root root 42372 ./usr/include/glib-2.0/glib/gmacros.h
3074-rw-r--r-- root root 28138 ./usr/include/glib-2.0/glib/gmain.h
3075-rw-r--r-- root root 1986 ./usr/include/glib-2.0/glib/gmappedfile.h
3076-rw-r--r-- root root 10876 ./usr/include/glib-2.0/glib/gmarkup.h
3077-rw-r--r-- root root 14684 ./usr/include/glib-2.0/glib/gmem.h
3078-rw-r--r-- root root 26913 ./usr/include/glib-2.0/glib/gmessages.h
3079-rw-r--r-- root root 8700 ./usr/include/glib-2.0/glib/gnode.h
3080-rw-r--r-- root root 16099 ./usr/include/glib-2.0/glib/goption.h
3081-rw-r--r-- root root 1782 ./usr/include/glib-2.0/glib/gpattern.h
3082-rw-r--r-- root root 4125 ./usr/include/glib-2.0/glib/gpoll.h
3083-rw-r--r-- root root 1694 ./usr/include/glib-2.0/glib/gprimes.h
3084-rw-r--r-- root root 1984 ./usr/include/glib-2.0/glib/gprintf.h
3085-rw-r--r-- root root 1499 ./usr/include/glib-2.0/glib/gqsort.h
3086-rw-r--r-- root root 2688 ./usr/include/glib-2.0/glib/gquark.h
3087-rw-r--r-- root root 7750 ./usr/include/glib-2.0/glib/gqueue.h
3088-rw-r--r-- root root 3182 ./usr/include/glib-2.0/glib/grand.h
3089-rw-r--r-- root root 3764 ./usr/include/glib-2.0/glib/grcbox.h
3090-rw-r--r-- root root 3988 ./usr/include/glib-2.0/glib/grefcount.h
3091-rw-r--r-- root root 1868 ./usr/include/glib-2.0/glib/grefstring.h
3092-rw-r--r-- root root 28095 ./usr/include/glib-2.0/glib/gregex.h
3093-rw-r--r-- root root 8861 ./usr/include/glib-2.0/glib/gscanner.h
3094-rw-r--r-- root root 8811 ./usr/include/glib-2.0/glib/gsequence.h
3095-rw-r--r-- root root 1752 ./usr/include/glib-2.0/glib/gshell.h
3096-rw-r--r-- root root 3892 ./usr/include/glib-2.0/glib/gslice.h
3097-rw-r--r-- root root 6551 ./usr/include/glib-2.0/glib/gslist.h
3098-rw-r--r-- root root 11874 ./usr/include/glib-2.0/glib/gspawn.h
3099-rw-r--r-- root root 5109 ./usr/include/glib-2.0/glib/gstdio.h
3100-rw-r--r-- root root 13232 ./usr/include/glib-2.0/glib/gstrfuncs.h
3101-rw-r--r-- root root 2130 ./usr/include/glib-2.0/glib/gstringchunk.h
3102-rw-r--r-- root root 8045 ./usr/include/glib-2.0/glib/gstring.h
3103-rw-r--r-- root root 31435 ./usr/include/glib-2.0/glib/gtestutils.h
3104-rw-r--r-- root root 17496 ./usr/include/glib-2.0/glib/gthread.h
3105-rw-r--r-- root root 3824 ./usr/include/glib-2.0/glib/gthreadpool.h
3106-rw-r--r-- root root 2576 ./usr/include/glib-2.0/glib/gtimer.h
3107-rw-r--r-- root root 3723 ./usr/include/glib-2.0/glib/gtimezone.h
3108-rw-r--r-- root root 1906 ./usr/include/glib-2.0/glib/gtrashstack.h
3109-rw-r--r-- root root 4194 ./usr/include/glib-2.0/glib/gtree.h
3110-rw-r--r-- root root 20493 ./usr/include/glib-2.0/glib/gtypes.h
3111-rw-r--r-- root root 40690 ./usr/include/glib-2.0/glib/gunicode.h
3112-rw-r--r-- root root 2716 ./usr/include/glib-2.0/glib/gurifuncs.h
3113-rw-r--r-- root root 14564 ./usr/include/glib-2.0/glib/gutils.h
3114-rw-r--r-- root root 1291 ./usr/include/glib-2.0/glib/guuid.h
3115-rw-r--r-- root root 29560 ./usr/include/glib-2.0/glib/gvariant.h
3116-rw-r--r-- root root 13244 ./usr/include/glib-2.0/glib/gvarianttype.h
3117-rw-r--r-- root root 1981 ./usr/include/glib-2.0/glib/gversion.h
3118-rw-r--r-- root root 40799 ./usr/include/glib-2.0/glib/gversionmacros.h
3119-rw-r--r-- root root 4667 ./usr/include/glib-2.0/glib/gwin32.h
3120-rw-r--r-- root root 3381 ./usr/include/glib-2.0/glib.h
3121-rw-r--r-- root root 1462 ./usr/include/glib-2.0/glib-object.h
3122-rw-r--r-- root root 4461 ./usr/include/glib-2.0/glib-unix.h
3123-rw-r--r-- root root 4318 ./usr/include/glib-2.0/gmodule.h
3124drwxr-xr-x root root 4096 ./usr/include/glib-2.0/gobject
3125-rw-r--r-- root root 6342 ./usr/include/glib-2.0/gobject/gbinding.h
3126-rw-r--r-- root root 3965 ./usr/include/glib-2.0/gobject/gboxed.h
3127-rw-r--r-- root root 11053 ./usr/include/glib-2.0/gobject/gclosure.h
3128-rw-r--r-- root root 8041 ./usr/include/glib-2.0/gobject/genums.h
3129-rw-r--r-- root root 1026 ./usr/include/glib-2.0/gobject/glib-enumtypes.h
3130-rw-r--r-- root root 8656 ./usr/include/glib-2.0/gobject/glib-types.h
3131-rw-r--r-- root root 21841 ./usr/include/glib-2.0/gobject/gmarshal.h
3132-rw-r--r-- root root 1382 ./usr/include/glib-2.0/gobject/gobject-autocleanups.h
3133-rw-r--r-- root root 34088 ./usr/include/glib-2.0/gobject/gobject.h
3134-rw-r--r-- root root 5516 ./usr/include/glib-2.0/gobject/gobjectnotifyqueue.c
3135-rw-r--r-- root root 16431 ./usr/include/glib-2.0/gobject/gparam.h
3136-rw-r--r-- root root 34850 ./usr/include/glib-2.0/gobject/gparamspecs.h
3137-rw-r--r-- root root 24872 ./usr/include/glib-2.0/gobject/gsignal.h
3138-rw-r--r-- root root 1275 ./usr/include/glib-2.0/gobject/gsourceclosure.h
3139-rw-r--r-- root root 92450 ./usr/include/glib-2.0/gobject/gtype.h
3140-rw-r--r-- root root 10837 ./usr/include/glib-2.0/gobject/gtypemodule.h
3141-rw-r--r-- root root 4965 ./usr/include/glib-2.0/gobject/gtypeplugin.h
3142-rw-r--r-- root root 3218 ./usr/include/glib-2.0/gobject/gvaluearray.h
3143-rw-r--r-- root root 9817 ./usr/include/glib-2.0/gobject/gvaluecollector.h
3144-rw-r--r-- root root 5656 ./usr/include/glib-2.0/gobject/gvalue.h
3145-rw-r--r-- root root 9653 ./usr/include/glib-2.0/gobject/gvaluetypes.h
3146drwxr-xr-x root root 4096 ./usr/include/GL/internal
3147-rw-r--r-- root root 78637 ./usr/include/GL/internal/dri_interface.h
3148-rw-r--r-- root root 6315 ./usr/include/GL/internal/glcore.h
3149-rw-r--r-- root root 6617 ./usr/include/glob.h
3150-rw-r--r-- root root 84177 ./usr/include/gmp-64.h
3151-rw-r--r-- root root 500 ./usr/include/gmp.h
3152-rw-r--r-- root root 129113 ./usr/include/gmpxx.h
3153drwxr-xr-x root root 4096 ./usr/include/gnu
3154-rw-r--r-- root root 1264 ./usr/include/gnu/libc-version.h
3155-rw-r--r-- root root 1665 ./usr/include/gnu/lib-names-64.h
3156-rw-r--r-- root root 467 ./usr/include/gnu/lib-names.h
3157-rw-r--r-- root root 2912 ./usr/include/gnumake.h
3158-rw-r--r-- root root 523 ./usr/include/gnu/stubs-64.h
3159-rw-r--r-- root root 384 ./usr/include/gnu/stubs.h
3160-rw-r--r-- root root 2343 ./usr/include/gnu-versions.h
3161drwxr-xr-x root root 4096 ./usr/include/gobject-introspection-1.0
3162-rw-r--r-- root root 2622 ./usr/include/gobject-introspection-1.0/giarginfo.h
3163-rw-r--r-- root root 3275 ./usr/include/gobject-introspection-1.0/gibaseinfo.h
3164-rw-r--r-- root root 4523 ./usr/include/gobject-introspection-1.0/gicallableinfo.h
3165-rw-r--r-- root root 1769 ./usr/include/gobject-introspection-1.0/giconstantinfo.h
3166-rw-r--r-- root root 2348 ./usr/include/gobject-introspection-1.0/gienuminfo.h
3167-rw-r--r-- root root 2129 ./usr/include/gobject-introspection-1.0/gifieldinfo.h
3168-rw-r--r-- root root 2877 ./usr/include/gobject-introspection-1.0/gifunctioninfo.h
3169-rw-r--r-- root root 3418 ./usr/include/gobject-introspection-1.0/giinterfaceinfo.h
3170-rw-r--r-- root root 6060 ./usr/include/gobject-introspection-1.0/giobjectinfo.h
3171-rw-r--r-- root root 1685 ./usr/include/gobject-introspection-1.0/gipropertyinfo.h
3172-rw-r--r-- root root 2363 ./usr/include/gobject-introspection-1.0/giregisteredtypeinfo.h
3173-rw-r--r-- root root 8052 ./usr/include/gobject-introspection-1.0/girepository.h
3174-rw-r--r-- root root 3468 ./usr/include/gobject-introspection-1.0/girffi.h
3175-rw-r--r-- root root 1696 ./usr/include/gobject-introspection-1.0/gisignalinfo.h
3176-rw-r--r-- root root 2403 ./usr/include/gobject-introspection-1.0/gistructinfo.h
3177-rw-r--r-- root root 2556 ./usr/include/gobject-introspection-1.0/gitypeinfo.h
3178-rw-r--r-- root root 2327 ./usr/include/gobject-introspection-1.0/gitypelib.h
3179-rw-r--r-- root root 14019 ./usr/include/gobject-introspection-1.0/gitypes.h
3180-rw-r--r-- root root 2558 ./usr/include/gobject-introspection-1.0/giunioninfo.h
3181-rw-r--r-- root root 1578 ./usr/include/gobject-introspection-1.0/giversion.h
3182-rw-r--r-- root root 5730 ./usr/include/gobject-introspection-1.0/giversionmacros.h
3183-rw-r--r-- root root 2572 ./usr/include/gobject-introspection-1.0/givfuncinfo.h
3184-rw-r--r-- root root 6687 ./usr/include/grp.h
3185-rw-r--r-- root root 4529 ./usr/include/gshadow.h
3186-rw-r--r-- root root 1858 ./usr/include/iconv.h
3187-rw-r--r-- root root 4916 ./usr/include/ieee754.h
3188-rw-r--r-- root root 2841 ./usr/include/ifaddrs.h
3189-rw-r--r-- root root 2446 ./usr/include/initreq.h
3190-rw-r--r-- root root 11893 ./usr/include/inttypes.h
3191drwxr-xr-x root root 4096 ./usr/include/iproute2
3192-rw-r--r-- root root 1271 ./usr/include/iproute2/bpf_elf.h
3193-rw-r--r-- root root 17849 ./usr/include/langinfo.h
3194-rw-r--r-- root root 126 ./usr/include/lastlog.h
3195drwxr-xr-x root root 4096 ./usr/include/libdrm
3196-rw-r--r-- root root 31894 ./usr/include/libdrm/amdgpu_drm.h
3197-rw-r--r-- root root 55079 ./usr/include/libdrm/amdgpu.h
3198-rw-r--r-- root root 32818 ./usr/include/libdrm/drm_fourcc.h
3199-rw-r--r-- root root 32306 ./usr/include/libdrm/drm.h
3200-rw-r--r-- root root 24920 ./usr/include/libdrm/drm_mode.h
3201-rw-r--r-- root root 2782 ./usr/include/libdrm/drm_sarea.h
3202-rw-r--r-- root root 6977 ./usr/include/libdrm/etnaviv_drmif.h
3203-rw-r--r-- root root 62951 ./usr/include/libdrm/i915_drm.h
3204-rw-r--r-- root root 5933 ./usr/include/libdrm/intel_aub.h
3205-rw-r--r-- root root 12892 ./usr/include/libdrm/intel_bufmgr.h
3206-rw-r--r-- root root 1585 ./usr/include/libdrm/intel_debug.h
3207-rw-r--r-- root root 7895 ./usr/include/libdrm/mach64_drm.h
3208-rw-r--r-- root root 13010 ./usr/include/libdrm/mga_drm.h
3209-rw-r--r-- root root 12105 ./usr/include/libdrm/msm_drm.h
3210drwxr-xr-x root root 4096 ./usr/include/libdrm/nouveau
3211-rw-r--r-- root root 5699 ./usr/include/libdrm/nouveau_drm.h
3212-rw-r--r-- root root 7766 ./usr/include/libdrm/nouveau/nouveau.h
3213drwxr-xr-x root root 4096 ./usr/include/libdrm/nouveau/nvif
3214-rw-r--r-- root root 1785 ./usr/include/libdrm/nouveau/nvif/cl0080.h
3215-rw-r--r-- root root 2062 ./usr/include/libdrm/nouveau/nvif/cl9097.h
3216-rw-r--r-- root root 8789 ./usr/include/libdrm/nouveau/nvif/class.h
3217-rw-r--r-- root root 769 ./usr/include/libdrm/nouveau/nvif/if0002.h
3218-rw-r--r-- root root 645 ./usr/include/libdrm/nouveau/nvif/if0003.h
3219-rw-r--r-- root root 3174 ./usr/include/libdrm/nouveau/nvif/ioctl.h
3220-rw-r--r-- root root 1551 ./usr/include/libdrm/nouveau/nvif/unpack.h
3221-rw-r--r-- root root 2555 ./usr/include/libdrm/omap_drmif.h
3222-rw-r--r-- root root 4131 ./usr/include/libdrm/qxl_drm.h
3223-rw-r--r-- root root 10000 ./usr/include/libdrm/r128_drm.h
3224-rw-r--r-- root root 16388 ./usr/include/libdrm/r600_pci_ids.h
3225-rw-r--r-- root root 1991 ./usr/include/libdrm/radeon_bo_gem.h
3226-rw-r--r-- root root 2839 ./usr/include/libdrm/radeon_bo.h
3227-rw-r--r-- root root 1678 ./usr/include/libdrm/radeon_bo_int.h
3228-rw-r--r-- root root 1601 ./usr/include/libdrm/radeon_cs_gem.h
3229-rw-r--r-- root root 5121 ./usr/include/libdrm/radeon_cs.h
3230-rw-r--r-- root root 2179 ./usr/include/libdrm/radeon_cs_int.h
3231-rw-r--r-- root root 38317 ./usr/include/libdrm/radeon_drm.h
3232-rw-r--r-- root root 5968 ./usr/include/libdrm/radeon_surface.h
3233-rw-r--r-- root root 7170 ./usr/include/libdrm/savage_drm.h
3234-rw-r--r-- root root 2633 ./usr/include/libdrm/sis_drm.h
3235-rw-r--r-- root root 14877 ./usr/include/libdrm/tegra_drm.h
3236-rw-r--r-- root root 14457 ./usr/include/libdrm/vc4_drm.h
3237-rw-r--r-- root root 16906 ./usr/include/libdrm/vc4_packet.h
3238-rw-r--r-- root root 8244 ./usr/include/libdrm/vc4_qpu_defines.h
3239-rw-r--r-- root root 8372 ./usr/include/libdrm/via_drm.h
3240-rw-r--r-- root root 5010 ./usr/include/libdrm/virtgpu_drm.h
3241-rw-r--r-- root root 32085 ./usr/include/libdrm/vmwgfx_drm.h
3242-rw-r--r-- root root 19573 ./usr/include/libelf.h
3243drwxr-xr-x root root 4096 ./usr/include/libfdisk
3244-rw-r--r-- root root 29857 ./usr/include/libfdisk/libfdisk.h
3245-rw-r--r-- root root 1386 ./usr/include/libgen.h
3246drwxr-xr-x root root 4096 ./usr/include/libiberty
3247-rw-r--r-- root root 14130 ./usr/include/libiberty/ansidecl.h
3248-rw-r--r-- root root 27301 ./usr/include/libiberty/demangle.h
3249-rw-r--r-- root root 2706 ./usr/include/libiberty/dyn-string.h
3250-rw-r--r-- root root 2937 ./usr/include/libiberty/fibheap.h
3251-rw-r--r-- root root 5890 ./usr/include/libiberty/floatformat.h
3252-rw-r--r-- root root 27820 ./usr/include/libiberty.h
3253-rw-r--r-- root root 7270 ./usr/include/libiberty/hashtab.h
3254-rw-r--r-- root root 27820 ./usr/include/libiberty/libiberty.h
3255-rw-r--r-- root root 3976 ./usr/include/libiberty/objalloc.h
3256-rw-r--r-- root root 2824 ./usr/include/libiberty/partition.h
3257-rw-r--r-- root root 5642 ./usr/include/libiberty/safe-ctype.h
3258-rw-r--r-- root root 1209 ./usr/include/libiberty/sort.h
3259-rw-r--r-- root root 6238 ./usr/include/libiberty/splay-tree.h
3260-rw-r--r-- root root 1296 ./usr/include/libiberty/timeval-utils.h
3261-rw-r--r-- root root 4580 ./usr/include/libintl.h
3262drwxr-xr-x root root 4096 ./usr/include/libiptc
3263-rw-r--r-- root root 360 ./usr/include/libiptc/ipt_kernel_headers.h
3264-rw-r--r-- root root 5375 ./usr/include/libiptc/libip6tc.h
3265-rw-r--r-- root root 5447 ./usr/include/libiptc/libiptc.h
3266-rw-r--r-- root root 724 ./usr/include/libiptc/libxtc.h
3267-rw-r--r-- root root 867 ./usr/include/libiptc/xtcshared.h
3268-rw-r--r-- root root 9468 ./usr/include/libkmod.h
3269drwxr-xr-x root root 4096 ./usr/include/libkms
3270-rw-r--r-- root root 2571 ./usr/include/libkms/libkms.h
3271drwxr-xr-x root root 4096 ./usr/include/libmnl
3272-rw-r--r-- root root 8002 ./usr/include/libmnl/libmnl.h
3273drwxr-xr-x root root 4096 ./usr/include/libmount
3274-rw-r--r-- root root 36308 ./usr/include/libmount/libmount.h
3275drwxr-xr-x root root 4096 ./usr/include/libpng16
3276-rw-r--r-- root root 22846 ./usr/include/libpng16/pngconf.h
3277-rw-r--r-- root root 142860 ./usr/include/libpng16/png.h
3278-rw-r--r-- root root 7629 ./usr/include/libpng16/pnglibconf.h
3279drwxr-xr-x root root 4096 ./usr/include/libsmartcols
3280-rw-r--r-- root root 15473 ./usr/include/libsmartcols/libsmartcols.h
3281-rw-r--r-- root root 3466 ./usr/include/libsync.h
3282-rw-r--r-- root root 10327 ./usr/include/libudev.h
3283drwxr-xr-x root root 4096 ./usr/include/libxml2
3284drwxr-xr-x root root 4096 ./usr/include/libxml2/libxml
3285-rw-r--r-- root root 3115 ./usr/include/libxml2/libxml/c14n.h
3286-rw-r--r-- root root 4906 ./usr/include/libxml2/libxml/catalog.h
3287-rw-r--r-- root root 5159 ./usr/include/libxml2/libxml/chvalid.h
3288-rw-r--r-- root root 5152 ./usr/include/libxml2/libxml/debugXML.h
3289-rw-r--r-- root root 1814 ./usr/include/libxml2/libxml/dict.h
3290-rw-r--r-- root root 3157 ./usr/include/libxml2/libxml/DOCBparser.h
3291-rw-r--r-- root root 8507 ./usr/include/libxml2/libxml/encoding.h
3292-rw-r--r-- root root 4712 ./usr/include/libxml2/libxml/entities.h
3293-rw-r--r-- root root 14670 ./usr/include/libxml2/libxml/globals.h
3294-rw-r--r-- root root 6601 ./usr/include/libxml2/libxml/hash.h
3295-rw-r--r-- root root 9410 ./usr/include/libxml2/libxml/HTMLparser.h
3296-rw-r--r-- root root 3646 ./usr/include/libxml2/libxml/HTMLtree.h
3297-rw-r--r-- root root 3348 ./usr/include/libxml2/libxml/list.h
3298-rw-r--r-- root root 3758 ./usr/include/libxml2/libxml/nanoftp.h
3299-rw-r--r-- root root 2005 ./usr/include/libxml2/libxml/nanohttp.h
3300-rw-r--r-- root root 39718 ./usr/include/libxml2/libxml/parser.h
3301-rw-r--r-- root root 17419 ./usr/include/libxml2/libxml/parserInternals.h
3302-rw-r--r-- root root 2586 ./usr/include/libxml2/libxml/pattern.h
3303-rw-r--r-- root root 5996 ./usr/include/libxml2/libxml/relaxng.h
3304-rw-r--r-- root root 4949 ./usr/include/libxml2/libxml/SAX2.h
3305-rw-r--r-- root root 4341 ./usr/include/libxml2/libxml/SAX.h
3306-rw-r--r-- root root 26224 ./usr/include/libxml2/libxml/schemasInternals.h
3307-rw-r--r-- root root 4371 ./usr/include/libxml2/libxml/schematron.h
3308-rw-r--r-- root root 1958 ./usr/include/libxml2/libxml/threads.h
3309-rw-r--r-- root root 38108 ./usr/include/libxml2/libxml/tree.h
3310-rw-r--r-- root root 2664 ./usr/include/libxml2/libxml/uri.h
3311-rw-r--r-- root root 13622 ./usr/include/libxml2/libxml/valid.h
3312-rw-r--r-- root root 2967 ./usr/include/libxml2/libxml/xinclude.h
3313-rw-r--r-- root root 5042 ./usr/include/libxml2/libxml/xlink.h
3314-rw-r--r-- root root 3956 ./usr/include/libxml2/libxml/xmlautomata.h
3315-rw-r--r-- root root 36809 ./usr/include/libxml2/libxml/xmlerror.h
3316-rw-r--r-- root root 3759 ./usr/include/libxml2/libxml/xmlexports.h
3317-rw-r--r-- root root 10605 ./usr/include/libxml2/libxml/xmlIO.h
3318-rw-r--r-- root root 5945 ./usr/include/libxml2/libxml/xmlmemory.h
3319-rw-r--r-- root root 1170 ./usr/include/libxml2/libxml/xmlmodule.h
3320-rw-r--r-- root root 12607 ./usr/include/libxml2/libxml/xmlreader.h
3321-rw-r--r-- root root 5458 ./usr/include/libxml2/libxml/xmlregexp.h
3322-rw-r--r-- root root 2337 ./usr/include/libxml2/libxml/xmlsave.h
3323-rw-r--r-- root root 7069 ./usr/include/libxml2/libxml/xmlschemas.h
3324-rw-r--r-- root root 4841 ./usr/include/libxml2/libxml/xmlschemastypes.h
3325-rw-r--r-- root root 5511 ./usr/include/libxml2/libxml/xmlstring.h
3326-rw-r--r-- root root 9993 ./usr/include/libxml2/libxml/xmlunicode.h
3327-rw-r--r-- root root 8035 ./usr/include/libxml2/libxml/xmlversion.h
3328-rw-r--r-- root root 21265 ./usr/include/libxml2/libxml/xmlwriter.h
3329-rw-r--r-- root root 16602 ./usr/include/libxml2/libxml/xpath.h
3330-rw-r--r-- root root 19353 ./usr/include/libxml2/libxml/xpathInternals.h
3331-rw-r--r-- root root 3359 ./usr/include/libxml2/libxml/xpointer.h
3332-rw-r--r-- root root 5417 ./usr/include/limits.h
3333-rw-r--r-- root root 7207 ./usr/include/link.h
3334drwxr-xr-x root root 20480 ./usr/include/linux
3335-rw-r--r-- root root 3733 ./usr/include/linux/acct.h
3336-rw-r--r-- root root 1140 ./usr/include/linux/adb.h
3337-rw-r--r-- root root 993 ./usr/include/linux/adfs_fs.h
3338-rw-r--r-- root root 1544 ./usr/include/linux/affs_hardblocks.h
3339-rw-r--r-- root root 3940 ./usr/include/linux/agpgart.h
3340-rw-r--r-- root root 3398 ./usr/include/linux/aio_abi.h
3341-rw-r--r-- root root 3681 ./usr/include/linux/am437x-vpfe.h
3342drwxr-xr-x root root 4096 ./usr/include/linux/android
3343-rw-r--r-- root root 789 ./usr/include/linux/android/binderfs.h
3344-rw-r--r-- root root 14535 ./usr/include/linux/android/binder.h
3345-rw-r--r-- root root 6892 ./usr/include/linux/a.out.h
3346-rw-r--r-- root root 3683 ./usr/include/linux/apm_bios.h
3347-rw-r--r-- root root 213 ./usr/include/linux/arcfb.h
3348-rw-r--r-- root root 2751 ./usr/include/linux/arm_sdei.h
3349-rw-r--r-- root root 1780 ./usr/include/linux/aspeed-lpc-ctrl.h
3350-rw-r--r-- root root 1906 ./usr/include/linux/aspeed-p2a-ctrl.h
3351-rw-r--r-- root root 1023 ./usr/include/linux/atalk.h
3352-rw-r--r-- root root 952 ./usr/include/linux/atmapi.h
3353-rw-r--r-- root root 1296 ./usr/include/linux/atmarp.h
3354-rw-r--r-- root root 3271 ./usr/include/linux/atmbr2684.h
3355-rw-r--r-- root root 576 ./usr/include/linux/atmclip.h
3356-rw-r--r-- root root 7677 ./usr/include/linux/atmdev.h
3357-rw-r--r-- root root 648 ./usr/include/linux/atm_eni.h
3358-rw-r--r-- root root 7888 ./usr/include/linux/atm.h
3359-rw-r--r-- root root 406 ./usr/include/linux/atm_he.h
3360-rw-r--r-- root root 955 ./usr/include/linux/atm_idt77105.h
3361-rw-r--r-- root root 1646 ./usr/include/linux/atmioc.h
3362-rw-r--r-- root root 2381 ./usr/include/linux/atmlec.h
3363-rw-r--r-- root root 4226 ./usr/include/linux/atmmpc.h
3364-rw-r--r-- root root 1278 ./usr/include/linux/atm_nicstar.h
3365-rw-r--r-- root root 639 ./usr/include/linux/atmppp.h
3366-rw-r--r-- root root 4970 ./usr/include/linux/atmsap.h
3367-rw-r--r-- root root 1853 ./usr/include/linux/atmsvc.h
3368-rw-r--r-- root root 1622 ./usr/include/linux/atm_tcp.h
3369-rw-r--r-- root root 1540 ./usr/include/linux/atm_zatm.h
3370-rw-r--r-- root root 20759 ./usr/include/linux/audit.h
3371-rw-r--r-- root root 4986 ./usr/include/linux/auto_dev-ioctl.h
3372-rw-r--r-- root root 451 ./usr/include/linux/auto_fs4.h
3373-rw-r--r-- root root 6428 ./usr/include/linux/auto_fs.h
3374-rw-r--r-- root root 1496 ./usr/include/linux/auxvec.h
3375-rw-r--r-- root root 2824 ./usr/include/linux/ax25.h
3376-rw-r--r-- root root 1717 ./usr/include/linux/b1lli.h
3377-rw-r--r-- root root 20373 ./usr/include/linux/batadv_packet.h
3378-rw-r--r-- root root 16306 ./usr/include/linux/batman_adv.h
3379-rw-r--r-- root root 883 ./usr/include/linux/baycom.h
3380-rw-r--r-- root root 8425 ./usr/include/linux/bcache.h
3381-rw-r--r-- root root 419 ./usr/include/linux/bcm933xx_hcs.h
3382-rw-r--r-- root root 1905 ./usr/include/linux/bfs_fs.h
3383-rw-r--r-- root root 628 ./usr/include/linux/binfmts.h
3384-rw-r--r-- root root 1634 ./usr/include/linux/blkpg.h
3385-rw-r--r-- root root 4701 ./usr/include/linux/blktrace_api.h
3386-rw-r--r-- root root 5368 ./usr/include/linux/blkzoned.h
3387-rw-r--r-- root root 1367 ./usr/include/linux/bpf_common.h
3388-rw-r--r-- root root 138331 ./usr/include/linux/bpf.h
3389-rw-r--r-- root root 465 ./usr/include/linux/bpfilter.h
3390-rw-r--r-- root root 529 ./usr/include/linux/bpf_perf_event.h
3391-rw-r--r-- root root 981 ./usr/include/linux/bpqether.h
3392-rw-r--r-- root root 2494 ./usr/include/linux/bsg.h
3393-rw-r--r-- root root 572 ./usr/include/linux/bt-bmc.h
3394-rw-r--r-- root root 4624 ./usr/include/linux/btf.h
3395-rw-r--r-- root root 29142 ./usr/include/linux/btrfs.h
3396-rw-r--r-- root root 25245 ./usr/include/linux/btrfs_tree.h
3397drwxr-xr-x root root 4096 ./usr/include/linux/byteorder
3398-rw-r--r-- root root 3542 ./usr/include/linux/byteorder/big_endian.h
3399-rw-r--r-- root root 3611 ./usr/include/linux/byteorder/little_endian.h
3400drwxr-xr-x root root 4096 ./usr/include/linux/caif
3401-rw-r--r-- root root 5832 ./usr/include/linux/caif/caif_socket.h
3402-rw-r--r-- root root 1041 ./usr/include/linux/caif/if_caif.h
3403drwxr-xr-x root root 4096 ./usr/include/linux/can
3404-rw-r--r-- root root 4116 ./usr/include/linux/can/bcm.h
3405-rw-r--r-- root root 6610 ./usr/include/linux/can/error.h
3406-rw-r--r-- root root 8031 ./usr/include/linux/can/gw.h
3407-rw-r--r-- root root 8213 ./usr/include/linux/can.h
3408-rw-r--r-- root root 2207 ./usr/include/linux/can/j1939.h
3409-rw-r--r-- root root 3993 ./usr/include/linux/can/netlink.h
3410-rw-r--r-- root root 2858 ./usr/include/linux/can/raw.h
3411-rw-r--r-- root root 232 ./usr/include/linux/can/vxcan.h
3412-rw-r--r-- root root 11780 ./usr/include/linux/capability.h
3413-rw-r--r-- root root 3124 ./usr/include/linux/capi.h
3414-rw-r--r-- root root 3281 ./usr/include/linux/cciss_defs.h
3415-rw-r--r-- root root 2761 ./usr/include/linux/cciss_ioctl.h
3416-rw-r--r-- root root 28859 ./usr/include/linux/cdrom.h
3417-rw-r--r-- root root 53535 ./usr/include/linux/cec-funcs.h
3418-rw-r--r-- root root 36389 ./usr/include/linux/cec.h
3419-rw-r--r-- root root 2219 ./usr/include/linux/cgroupstats.h
3420-rw-r--r-- root root 5344 ./usr/include/linux/chio.h
3421drwxr-xr-x root root 4096 ./usr/include/linux/cifs
3422-rw-r--r-- root root 1225 ./usr/include/linux/cifs/cifs_mount.h
3423-rw-r--r-- root root 1806 ./usr/include/linux/cm4000_cs.h
3424-rw-r--r-- root root 3456 ./usr/include/linux/cn_proc.h
3425-rw-r--r-- root root 18216 ./usr/include/linux/coda.h
3426-rw-r--r-- root root 12549 ./usr/include/linux/coff.h
3427-rw-r--r-- root root 2253 ./usr/include/linux/connector.h
3428-rw-r--r-- root root 788 ./usr/include/linux/const.h
3429-rw-r--r-- root root 674 ./usr/include/linux/coresight-stm.h
3430-rw-r--r-- root root 3555 ./usr/include/linux/cramfs_fs.h
3431-rw-r--r-- root root 5321 ./usr/include/linux/cryptouser.h
3432-rw-r--r-- root root 905 ./usr/include/linux/cuda.h
3433-rw-r--r-- root root 17108 ./usr/include/linux/cyclades.h
3434-rw-r--r-- root root 2990 ./usr/include/linux/cycx_cfm.h
3435-rw-r--r-- root root 25291 ./usr/include/linux/dcbnl.h
3436-rw-r--r-- root root 6436 ./usr/include/linux/dccp.h
3437-rw-r--r-- root root 14860 ./usr/include/linux/devlink.h
3438-rw-r--r-- root root 5080 ./usr/include/linux/dlmconstants.h
3439-rw-r--r-- root root 2543 ./usr/include/linux/dlm_device.h
3440-rw-r--r-- root root 2553 ./usr/include/linux/dlm.h
3441-rw-r--r-- root root 1159 ./usr/include/linux/dlm_netlink.h
3442-rw-r--r-- root root 894 ./usr/include/linux/dlm_plock.h
3443-rw-r--r-- root root 1448 ./usr/include/linux/dma-buf.h
3444-rw-r--r-- root root 10988 ./usr/include/linux/dm-ioctl.h
3445-rw-r--r-- root root 15191 ./usr/include/linux/dm-log-userspace.h
3446-rw-r--r-- root root 4642 ./usr/include/linux/dn.h
3447-rw-r--r-- root root 3949 ./usr/include/linux/dns_resolver.h
3448-rw-r--r-- root root 8999 ./usr/include/linux/dqblk_xfs.h
3449drwxr-xr-x root root 4096 ./usr/include/linux/dvb
3450-rw-r--r-- root root 3550 ./usr/include/linux/dvb/audio.h
3451-rw-r--r-- root root 4247 ./usr/include/linux/dvb/ca.h
3452-rw-r--r-- root root 10177 ./usr/include/linux/dvb/dmx.h
3453-rw-r--r-- root root 29244 ./usr/include/linux/dvb/frontend.h
3454-rw-r--r-- root root 2127 ./usr/include/linux/dvb/net.h
3455-rw-r--r-- root root 5937 ./usr/include/linux/dvb/osd.h
3456-rw-r--r-- root root 1082 ./usr/include/linux/dvb/version.h
3457-rw-r--r-- root root 7106 ./usr/include/linux/dvb/video.h
3458-rw-r--r-- root root 5604 ./usr/include/linux/edd.h
3459-rw-r--r-- root root 2227 ./usr/include/linux/efs_fs_sb.h
3460-rw-r--r-- root root 2995 ./usr/include/linux/elfcore.h
3461-rw-r--r-- root root 2586 ./usr/include/linux/elf-em.h
3462-rw-r--r-- root root 1124 ./usr/include/linux/elf-fdpic.h
3463-rw-r--r-- root root 13642 ./usr/include/linux/elf.h
3464-rw-r--r-- root root 23 ./usr/include/linux/errno.h
3465-rw-r--r-- root root 1572 ./usr/include/linux/errqueue.h
3466-rw-r--r-- root root 1059 ./usr/include/linux/erspan.h
3467-rw-r--r-- root root 74781 ./usr/include/linux/ethtool.h
3468-rw-r--r-- root root 2743 ./usr/include/linux/eventpoll.h
3469-rw-r--r-- root root 842 ./usr/include/linux/fadvise.h
3470-rw-r--r-- root root 3584 ./usr/include/linux/falloc.h
3471-rw-r--r-- root root 5369 ./usr/include/linux/fanotify.h
3472-rw-r--r-- root root 16412 ./usr/include/linux/fb.h
3473-rw-r--r-- root root 3438 ./usr/include/linux/fcntl.h
3474-rw-r--r-- root root 11672 ./usr/include/linux/fd.h
3475-rw-r--r-- root root 5420 ./usr/include/linux/fdreg.h
3476-rw-r--r-- root root 2036 ./usr/include/linux/fib_rules.h
3477-rw-r--r-- root root 2775 ./usr/include/linux/fiemap.h
3478-rw-r--r-- root root 2216 ./usr/include/linux/filter.h
3479-rw-r--r-- root root 44242 ./usr/include/linux/firewire-cdev.h
3480-rw-r--r-- root root 3231 ./usr/include/linux/firewire-constants.h
3481-rw-r--r-- root root 894 ./usr/include/linux/fou.h
3482-rw-r--r-- root root 6103 ./usr/include/linux/fpga-dfl.h
3483-rw-r--r-- root root 6104 ./usr/include/linux/fscrypt.h
3484-rw-r--r-- root root 12205 ./usr/include/linux/fs.h
3485-rw-r--r-- root root 2255 ./usr/include/linux/fsi.h
3486-rw-r--r-- root root 7301 ./usr/include/linux/fsl_hypervisor.h
3487-rw-r--r-- root root 4393 ./usr/include/linux/fsmap.h
3488-rw-r--r-- root root 931 ./usr/include/linux/fsverity.h
3489-rw-r--r-- root root 20407 ./usr/include/linux/fuse.h
3490-rw-r--r-- root root 4993 ./usr/include/linux/futex.h
3491-rw-r--r-- root root 897 ./usr/include/linux/gameport.h
3492-rw-r--r-- root root 1923 ./usr/include/linux/genetlink.h
3493-rw-r--r-- root root 1599 ./usr/include/linux/gen_stats.h
3494drwxr-xr-x root root 4096 ./usr/include/linux/genwqe
3495-rw-r--r-- root root 17802 ./usr/include/linux/genwqe/genwqe_card.h
3496-rw-r--r-- root root 14651 ./usr/include/linux/gfs2_ondisk.h
3497-rw-r--r-- root root 1442 ./usr/include/linux/gigaset_dev.h
3498-rw-r--r-- root root 5753 ./usr/include/linux/gpio.h
3499-rw-r--r-- root root 1144 ./usr/include/linux/gsmmux.h
3500-rw-r--r-- root root 681 ./usr/include/linux/gtp.h
3501-rw-r--r-- root root 971 ./usr/include/linux/hash_info.h
3502drwxr-xr-x root root 4096 ./usr/include/linux/hdlc
3503-rw-r--r-- root root 2908 ./usr/include/linux/hdlcdrv.h
3504-rw-r--r-- root root 637 ./usr/include/linux/hdlc.h
3505-rw-r--r-- root root 2657 ./usr/include/linux/hdlc/ioctl.h
3506-rw-r--r-- root root 22703 ./usr/include/linux/hdreg.h
3507-rw-r--r-- root root 6345 ./usr/include/linux/hiddev.h
3508-rw-r--r-- root root 1901 ./usr/include/linux/hid.h
3509-rw-r--r-- root root 1511 ./usr/include/linux/hidraw.h
3510-rw-r--r-- root root 743 ./usr/include/linux/hpet.h
3511drwxr-xr-x root root 4096 ./usr/include/linux/hsi
3512-rw-r--r-- root root 3656 ./usr/include/linux/hsi/cs-protocol.h
3513-rw-r--r-- root root 1895 ./usr/include/linux/hsi/hsi_char.h
3514-rw-r--r-- root root 1081 ./usr/include/linux/hsr_netlink.h
3515-rw-r--r-- root root 742 ./usr/include/linux/hw_breakpoint.h
3516-rw-r--r-- root root 10569 ./usr/include/linux/hyperv.h
3517-rw-r--r-- root root 1382 ./usr/include/linux/hysdn_if.h
3518-rw-r--r-- root root 2612 ./usr/include/linux/i2c-dev.h
3519-rw-r--r-- root root 7132 ./usr/include/linux/i2c.h
3520-rw-r--r-- root root 11555 ./usr/include/linux/i2o-dev.h
3521-rw-r--r-- root root 1528 ./usr/include/linux/i8k.h
3522-rw-r--r-- root root 2975 ./usr/include/linux/icmp.h
3523-rw-r--r-- root root 4083 ./usr/include/linux/icmpv6.h
3524-rw-r--r-- root root 1886 ./usr/include/linux/if_addr.h
3525-rw-r--r-- root root 721 ./usr/include/linux/if_addrlabel.h
3526-rw-r--r-- root root 946 ./usr/include/linux/if_alg.h
3527-rw-r--r-- root root 3717 ./usr/include/linux/if_arcnet.h
3528-rw-r--r-- root root 6565 ./usr/include/linux/if_arp.h
3529-rw-r--r-- root root 4839 ./usr/include/linux/if_bonding.h
3530-rw-r--r-- root root 7266 ./usr/include/linux/if_bridge.h
3531-rw-r--r-- root root 986 ./usr/include/linux/if_cablemodem.h
3532-rw-r--r-- root root 351 ./usr/include/linux/ife.h
3533-rw-r--r-- root root 1349 ./usr/include/linux/if_eql.h
3534-rw-r--r-- root root 8227 ./usr/include/linux/if_ether.h
3535-rw-r--r-- root root 1738 ./usr/include/linux/if_fc.h
3536-rw-r--r-- root root 4372 ./usr/include/linux/if_fddi.h
3537-rw-r--r-- root root 3019 ./usr/include/linux/if_frad.h
3538-rw-r--r-- root root 10813 ./usr/include/linux/if.h
3539-rw-r--r-- root root 4235 ./usr/include/linux/if_hippi.h
3540-rw-r--r-- root root 1245 ./usr/include/linux/if_infiniband.h
3541-rw-r--r-- root root 23649 ./usr/include/linux/if_link.h
3542-rw-r--r-- root root 210 ./usr/include/linux/if_ltalk.h
3543-rw-r--r-- root root 5832 ./usr/include/linux/if_macsec.h
3544-rw-r--r-- root root 7955 ./usr/include/linux/if_packet.h
3545-rw-r--r-- root root 424 ./usr/include/linux/if_phonet.h
3546-rw-r--r-- root root 660 ./usr/include/linux/if_plip.h
3547-rw-r--r-- root root 29 ./usr/include/linux/if_ppp.h
3548-rw-r--r-- root root 3292 ./usr/include/linux/if_pppol2tp.h
3549-rw-r--r-- root root 4879 ./usr/include/linux/if_pppox.h
3550-rw-r--r-- root root 872 ./usr/include/linux/if_slip.h
3551-rw-r--r-- root root 2600 ./usr/include/linux/if_team.h
3552-rw-r--r-- root root 4098 ./usr/include/linux/if_tun.h
3553-rw-r--r-- root root 4512 ./usr/include/linux/if_tunnel.h
3554-rw-r--r-- root root 1831 ./usr/include/linux/if_vlan.h
3555-rw-r--r-- root root 881 ./usr/include/linux/if_x25.h
3556-rw-r--r-- root root 2819 ./usr/include/linux/if_xdp.h
3557-rw-r--r-- root root 3064 ./usr/include/linux/igmp.h
3558drwxr-xr-x root root 4096 ./usr/include/linux/iio
3559-rw-r--r-- root root 1390 ./usr/include/linux/iio/events.h
3560-rw-r--r-- root root 2114 ./usr/include/linux/iio/types.h
3561-rw-r--r-- root root 1246 ./usr/include/linux/ila.h
3562-rw-r--r-- root root 7505 ./usr/include/linux/in6.h
3563-rw-r--r-- root root 4540 ./usr/include/linux/inet_diag.h
3564-rw-r--r-- root root 9881 ./usr/include/linux/in.h
3565-rw-r--r-- root root 3292 ./usr/include/linux/inotify.h
3566-rw-r--r-- root root 25218 ./usr/include/linux/input-event-codes.h
3567-rw-r--r-- root root 15964 ./usr/include/linux/input.h
3568-rw-r--r-- root root 936 ./usr/include/linux/in_route.h
3569-rw-r--r-- root root 163 ./usr/include/linux/ioctl.h
3570-rw-r--r-- root root 4578 ./usr/include/linux/iommu.h
3571-rw-r--r-- root root 3478 ./usr/include/linux/io_uring.h
3572-rw-r--r-- root root 1953 ./usr/include/linux/ip6_tunnel.h
3573-rw-r--r-- root root 2101 ./usr/include/linux/ipc.h
3574-rw-r--r-- root root 4728 ./usr/include/linux/ip.h
3575-rw-r--r-- root root 488 ./usr/include/linux/ipmi_bmc.h
3576-rw-r--r-- root root 15049 ./usr/include/linux/ipmi.h
3577-rw-r--r-- root root 3350 ./usr/include/linux/ipmi_msgdefs.h
3578-rw-r--r-- root root 947 ./usr/include/linux/ipsec.h
3579-rw-r--r-- root root 3967 ./usr/include/linux/ipv6.h
3580-rw-r--r-- root root 1908 ./usr/include/linux/ipv6_route.h
3581-rw-r--r-- root root 14135 ./usr/include/linux/ip_vs.h
3582-rw-r--r-- root root 2347 ./usr/include/linux/ipx.h
3583-rw-r--r-- root root 104 ./usr/include/linux/irqnr.h
3584drwxr-xr-x root root 4096 ./usr/include/linux/isdn
3585-rw-r--r-- root root 4783 ./usr/include/linux/isdn/capicmd.h
3586-rw-r--r-- root root 6485 ./usr/include/linux/iso_fs.h
3587-rw-r--r-- root root 5408 ./usr/include/linux/isst_if.h
3588-rw-r--r-- root root 1207 ./usr/include/linux/ivtvfb.h
3589-rw-r--r-- root root 3022 ./usr/include/linux/ivtv.h
3590-rw-r--r-- root root 6815 ./usr/include/linux/jffs2.h
3591-rw-r--r-- root root 3434 ./usr/include/linux/joystick.h
3592-rw-r--r-- root root 822 ./usr/include/linux/kcm.h
3593-rw-r--r-- root root 522 ./usr/include/linux/kcmp.h
3594-rw-r--r-- root root 1099 ./usr/include/linux/kcov.h
3595-rw-r--r-- root root 383 ./usr/include/linux/kdev_t.h
3596-rw-r--r-- root root 6253 ./usr/include/linux/kd.h
3597-rw-r--r-- root root 1019 ./usr/include/linux/kernelcapi.h
3598-rw-r--r-- root root 438 ./usr/include/linux/kernel.h
3599-rw-r--r-- root root 900 ./usr/include/linux/kernel-page-flags.h
3600-rw-r--r-- root root 1873 ./usr/include/linux/kexec.h
3601-rw-r--r-- root root 13459 ./usr/include/linux/keyboard.h
3602-rw-r--r-- root root 5837 ./usr/include/linux/keyctl.h
3603-rw-r--r-- root root 16263 ./usr/include/linux/kfd_ioctl.h
3604-rw-r--r-- root root 46258 ./usr/include/linux/kvm.h
3605-rw-r--r-- root root 968 ./usr/include/linux/kvm_para.h
3606-rw-r--r-- root root 5672 ./usr/include/linux/l2tp.h
3607-rw-r--r-- root root 8289 ./usr/include/linux/libc-compat.h
3608-rw-r--r-- root root 5042 ./usr/include/linux/lightnvm.h
3609-rw-r--r-- root root 937 ./usr/include/linux/limits.h
3610-rw-r--r-- root root 8102 ./usr/include/linux/lirc.h
3611-rw-r--r-- root root 3164 ./usr/include/linux/llc.h
3612-rw-r--r-- root root 2520 ./usr/include/linux/loop.h
3613-rw-r--r-- root root 4190 ./usr/include/linux/lp.h
3614-rw-r--r-- root root 1273 ./usr/include/linux/lwtunnel.h
3615-rw-r--r-- root root 3604 ./usr/include/linux/magic.h
3616-rw-r--r-- root root 4713 ./usr/include/linux/major.h
3617-rw-r--r-- root root 7251 ./usr/include/linux/map_to_7segment.h
3618-rw-r--r-- root root 1464 ./usr/include/linux/matroxfb.h
3619-rw-r--r-- root root 1035 ./usr/include/linux/max2175.h
3620-rw-r--r-- root root 15645 ./usr/include/linux/mdio.h
3621-rw-r--r-- root root 6540 ./usr/include/linux/media-bus-format.h
3622-rw-r--r-- root root 12641 ./usr/include/linux/media.h
3623-rw-r--r-- root root 1993 ./usr/include/linux/mei.h
3624-rw-r--r-- root root 7899 ./usr/include/linux/membarrier.h
3625-rw-r--r-- root root 1324 ./usr/include/linux/memfd.h
3626-rw-r--r-- root root 2154 ./usr/include/linux/mempolicy.h
3627-rw-r--r-- root root 2529 ./usr/include/linux/meye.h
3628-rw-r--r-- root root 6519 ./usr/include/linux/mic_common.h
3629-rw-r--r-- root root 2252 ./usr/include/linux/mic_ioctl.h
3630-rw-r--r-- root root 8281 ./usr/include/linux/mii.h
3631-rw-r--r-- root root 2122 ./usr/include/linux/minix_fs.h
3632-rw-r--r-- root root 1508 ./usr/include/linux/mman.h
3633drwxr-xr-x root root 4096 ./usr/include/linux/mmc
3634-rw-r--r-- root root 2331 ./usr/include/linux/mmc/ioctl.h
3635-rw-r--r-- root root 2117 ./usr/include/linux/mmtimer.h
3636-rw-r--r-- root root 255 ./usr/include/linux/module.h
3637-rw-r--r-- root root 4546 ./usr/include/linux/mount.h
3638-rw-r--r-- root root 2302 ./usr/include/linux/mpls.h
3639-rw-r--r-- root root 761 ./usr/include/linux/mpls_iptunnel.h
3640-rw-r--r-- root root 2201 ./usr/include/linux/mqueue.h
3641-rw-r--r-- root root 4931 ./usr/include/linux/mroute6.h
3642-rw-r--r-- root root 5881 ./usr/include/linux/mroute.h
3643-rw-r--r-- root root 6731 ./usr/include/linux/msdos_fs.h
3644-rw-r--r-- root root 3374 ./usr/include/linux/msg.h
3645-rw-r--r-- root root 8175 ./usr/include/linux/mtio.h
3646-rw-r--r-- root root 3024 ./usr/include/linux/nbd.h
3647-rw-r--r-- root root 2378 ./usr/include/linux/nbd-netlink.h
3648-rw-r--r-- root root 4828 ./usr/include/linux/ncsi.h
3649-rw-r--r-- root root 6770 ./usr/include/linux/ndctl.h
3650-rw-r--r-- root root 4406 ./usr/include/linux/neighbour.h
3651-rw-r--r-- root root 614 ./usr/include/linux/netconf.h
3652-rw-r--r-- root root 2253 ./usr/include/linux/netdevice.h
3653-rw-r--r-- root root 2839 ./usr/include/linux/net_dropmon.h
3654drwxr-xr-x root root 4096 ./usr/include/linux/netfilter
3655drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_arp
3656-rw-r--r-- root root 5999 ./usr/include/linux/netfilter_arp/arp_tables.h
3657-rw-r--r-- root root 606 ./usr/include/linux/netfilter_arp/arpt_mangle.h
3658-rw-r--r-- root root 445 ./usr/include/linux/netfilter_arp.h
3659drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_bridge
3660-rw-r--r-- root root 1274 ./usr/include/linux/netfilter_bridge/ebt_802_3.h
3661-rw-r--r-- root root 9308 ./usr/include/linux/netfilter_bridge/ebtables.h
3662-rw-r--r-- root root 2043 ./usr/include/linux/netfilter_bridge/ebt_among.h
3663-rw-r--r-- root root 900 ./usr/include/linux/netfilter_bridge/ebt_arp.h
3664-rw-r--r-- root root 289 ./usr/include/linux/netfilter_bridge/ebt_arpreply.h
3665-rw-r--r-- root root 1056 ./usr/include/linux/netfilter_bridge/ebt_ip6.h
3666-rw-r--r-- root root 1094 ./usr/include/linux/netfilter_bridge/ebt_ip.h
3667-rw-r--r-- root root 616 ./usr/include/linux/netfilter_bridge/ebt_limit.h
3668-rw-r--r-- root root 538 ./usr/include/linux/netfilter_bridge/ebt_log.h
3669-rw-r--r-- root root 388 ./usr/include/linux/netfilter_bridge/ebt_mark_m.h
3670-rw-r--r-- root root 831 ./usr/include/linux/netfilter_bridge/ebt_mark_t.h
3671-rw-r--r-- root root 387 ./usr/include/linux/netfilter_bridge/ebt_nat.h
3672-rw-r--r-- root root 510 ./usr/include/linux/netfilter_bridge/ebt_nflog.h
3673-rw-r--r-- root root 267 ./usr/include/linux/netfilter_bridge/ebt_pkttype.h
3674-rw-r--r-- root root 286 ./usr/include/linux/netfilter_bridge/ebt_redirect.h
3675-rw-r--r-- root root 1110 ./usr/include/linux/netfilter_bridge/ebt_stp.h
3676-rw-r--r-- root root 719 ./usr/include/linux/netfilter_bridge/ebt_vlan.h
3677-rw-r--r-- root root 1168 ./usr/include/linux/netfilter_bridge.h
3678-rw-r--r-- root root 1758 ./usr/include/linux/netfilter_decnet.h
3679-rw-r--r-- root root 1674 ./usr/include/linux/netfilter.h
3680drwxr-xr-x root root 4096 ./usr/include/linux/netfilter/ipset
3681-rw-r--r-- root root 428 ./usr/include/linux/netfilter/ipset/ip_set_bitmap.h
3682-rw-r--r-- root root 9108 ./usr/include/linux/netfilter/ipset/ip_set.h
3683-rw-r--r-- root root 578 ./usr/include/linux/netfilter/ipset/ip_set_hash.h
3684-rw-r--r-- root root 609 ./usr/include/linux/netfilter/ipset/ip_set_list.h
3685drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_ipv4
3686-rw-r--r-- root root 1488 ./usr/include/linux/netfilter_ipv4.h
3687-rw-r--r-- root root 6647 ./usr/include/linux/netfilter_ipv4/ip_tables.h
3688-rw-r--r-- root root 425 ./usr/include/linux/netfilter_ipv4/ipt_ah.h
3689-rw-r--r-- root root 821 ./usr/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
3690-rw-r--r-- root root 431 ./usr/include/linux/netfilter_ipv4/ipt_ecn.h
3691-rw-r--r-- root root 901 ./usr/include/linux/netfilter_ipv4/ipt_ECN.h
3692-rw-r--r-- root root 654 ./usr/include/linux/netfilter_ipv4/ipt_LOG.h
3693-rw-r--r-- root root 468 ./usr/include/linux/netfilter_ipv4/ipt_REJECT.h
3694-rw-r--r-- root root 431 ./usr/include/linux/netfilter_ipv4/ipt_ttl.h
3695-rw-r--r-- root root 375 ./usr/include/linux/netfilter_ipv4/ipt_TTL.h
3696drwxr-xr-x root root 4096 ./usr/include/linux/netfilter_ipv6
3697-rw-r--r-- root root 1383 ./usr/include/linux/netfilter_ipv6.h
3698-rw-r--r-- root root 8011 ./usr/include/linux/netfilter_ipv6/ip6_tables.h
3699-rw-r--r-- root root 657 ./usr/include/linux/netfilter_ipv6/ip6t_ah.h
3700-rw-r--r-- root root 744 ./usr/include/linux/netfilter_ipv6/ip6t_frag.h
3701-rw-r--r-- root root 458 ./usr/include/linux/netfilter_ipv6/ip6t_hl.h
3702-rw-r--r-- root root 408 ./usr/include/linux/netfilter_ipv6/ip6t_HL.h
3703-rw-r--r-- root root 645 ./usr/include/linux/netfilter_ipv6/ip6t_ipv6header.h
3704-rw-r--r-- root root 662 ./usr/include/linux/netfilter_ipv6/ip6t_LOG.h
3705-rw-r--r-- root root 439 ./usr/include/linux/netfilter_ipv6/ip6t_mh.h
3706-rw-r--r-- root root 400 ./usr/include/linux/netfilter_ipv6/ip6t_NPT.h
3707-rw-r--r-- root root 649 ./usr/include/linux/netfilter_ipv6/ip6t_opts.h
3708-rw-r--r-- root root 470 ./usr/include/linux/netfilter_ipv6/ip6t_REJECT.h
3709-rw-r--r-- root root 985 ./usr/include/linux/netfilter_ipv6/ip6t_rt.h
3710-rw-r--r-- root root 3305 ./usr/include/linux/netfilter_ipv6/ip6t_srh.h
3711-rw-r--r-- root root 4421 ./usr/include/linux/netfilter/nf_conntrack_common.h
3712-rw-r--r-- root root 438 ./usr/include/linux/netfilter/nf_conntrack_ftp.h
3713-rw-r--r-- root root 576 ./usr/include/linux/netfilter/nf_conntrack_sctp.h
3714-rw-r--r-- root root 1415 ./usr/include/linux/netfilter/nf_conntrack_tcp.h
3715-rw-r--r-- root root 896 ./usr/include/linux/netfilter/nf_conntrack_tuple_common.h
3716-rw-r--r-- root root 538 ./usr/include/linux/netfilter/nf_log.h
3717-rw-r--r-- root root 1522 ./usr/include/linux/netfilter/nf_nat.h
3718-rw-r--r-- root root 900 ./usr/include/linux/netfilter/nfnetlink_acct.h
3719-rw-r--r-- root root 2444 ./usr/include/linux/netfilter/nfnetlink_compat.h
3720-rw-r--r-- root root 5924 ./usr/include/linux/netfilter/nfnetlink_conntrack.h
3721-rw-r--r-- root root 1202 ./usr/include/linux/netfilter/nfnetlink_cthelper.h
3722-rw-r--r-- root root 2930 ./usr/include/linux/netfilter/nfnetlink_cttimeout.h
3723-rw-r--r-- root root 2428 ./usr/include/linux/netfilter/nfnetlink.h
3724-rw-r--r-- root root 3106 ./usr/include/linux/netfilter/nfnetlink_log.h
3725-rw-r--r-- root root 2665 ./usr/include/linux/netfilter/nfnetlink_osf.h
3726-rw-r--r-- root root 3499 ./usr/include/linux/netfilter/nfnetlink_queue.h
3727-rw-r--r-- root root 576 ./usr/include/linux/netfilter/nf_synproxy.h
3728-rw-r--r-- root root 731 ./usr/include/linux/netfilter/nf_tables_compat.h
3729-rw-r--r-- root root 51835 ./usr/include/linux/netfilter/nf_tables.h
3730-rw-r--r-- root root 4467 ./usr/include/linux/netfilter/x_tables.h
3731-rw-r--r-- root root 1084 ./usr/include/linux/netfilter/xt_addrtype.h
3732-rw-r--r-- root root 718 ./usr/include/linux/netfilter/xt_AUDIT.h
3733-rw-r--r-- root root 935 ./usr/include/linux/netfilter/xt_bpf.h
3734-rw-r--r-- root root 740 ./usr/include/linux/netfilter/xt_cgroup.h
3735-rw-r--r-- root root 563 ./usr/include/linux/netfilter/xt_CHECKSUM.h
3736-rw-r--r-- root root 217 ./usr/include/linux/netfilter/xt_CLASSIFY.h
3737-rw-r--r-- root root 374 ./usr/include/linux/netfilter/xt_cluster.h
3738-rw-r--r-- root root 230 ./usr/include/linux/netfilter/xt_comment.h
3739-rw-r--r-- root root 577 ./usr/include/linux/netfilter/xt_connbytes.h
3740-rw-r--r-- root root 360 ./usr/include/linux/netfilter/xt_connlabel.h
3741-rw-r--r-- root root 575 ./usr/include/linux/netfilter/xt_connlimit.h
3742-rw-r--r-- root root 900 ./usr/include/linux/netfilter/xt_connmark.h
3743-rw-r--r-- root root 199 ./usr/include/linux/netfilter/xt_CONNMARK.h
3744-rw-r--r-- root root 301 ./usr/include/linux/netfilter/xt_CONNSECMARK.h
3745-rw-r--r-- root root 2557 ./usr/include/linux/netfilter/xt_conntrack.h
3746-rw-r--r-- root root 199 ./usr/include/linux/netfilter/xt_cpu.h
3747-rw-r--r-- root root 853 ./usr/include/linux/netfilter/xt_CT.h
3748-rw-r--r-- root root 483 ./usr/include/linux/netfilter/xt_dccp.h
3749-rw-r--r-- root root 429 ./usr/include/linux/netfilter/xt_devgroup.h
3750-rw-r--r-- root root 701 ./usr/include/linux/netfilter/xt_dscp.h
3751-rw-r--r-- root root 697 ./usr/include/linux/netfilter/xt_DSCP.h
3752-rw-r--r-- root root 736 ./usr/include/linux/netfilter/xt_ecn.h
3753-rw-r--r-- root root 418 ./usr/include/linux/netfilter/xt_esp.h
3754-rw-r--r-- root root 3256 ./usr/include/linux/netfilter/xt_hashlimit.h
3755-rw-r--r-- root root 188 ./usr/include/linux/netfilter/xt_helper.h
3756-rw-r--r-- root root 933 ./usr/include/linux/netfilter/xt_HMARK.h
3757-rw-r--r-- root root 1393 ./usr/include/linux/netfilter/xt_IDLETIMER.h
3758-rw-r--r-- root root 485 ./usr/include/linux/netfilter/xt_ipcomp.h
3759-rw-r--r-- root root 581 ./usr/include/linux/netfilter/xt_iprange.h
3760-rw-r--r-- root root 680 ./usr/include/linux/netfilter/xt_ipvs.h
3761-rw-r--r-- root root 739 ./usr/include/linux/netfilter/xt_l2tp.h
3762-rw-r--r-- root root 470 ./usr/include/linux/netfilter/xt_LED.h
3763-rw-r--r-- root root 221 ./usr/include/linux/netfilter/xt_length.h
3764-rw-r--r-- root root 673 ./usr/include/linux/netfilter/xt_limit.h
3765-rw-r--r-- root root 642 ./usr/include/linux/netfilter/xt_LOG.h
3766-rw-r--r-- root root 227 ./usr/include/linux/netfilter/xt_mac.h
3767-rw-r--r-- root root 260 ./usr/include/linux/netfilter/xt_mark.h
3768-rw-r--r-- root root 184 ./usr/include/linux/netfilter/xt_MARK.h
3769-rw-r--r-- root root 721 ./usr/include/linux/netfilter/xt_multiport.h
3770-rw-r--r-- root root 421 ./usr/include/linux/netfilter/xt_nfacct.h
3771-rw-r--r-- root root 556 ./usr/include/linux/netfilter/xt_NFLOG.h
3772-rw-r--r-- root root 779 ./usr/include/linux/netfilter/xt_NFQUEUE.h
3773-rw-r--r-- root root 1703 ./usr/include/linux/netfilter/xt_osf.h
3774-rw-r--r-- root root 535 ./usr/include/linux/netfilter/xt_owner.h
3775-rw-r--r-- root root 553 ./usr/include/linux/netfilter/xt_physdev.h
3776-rw-r--r-- root root 188 ./usr/include/linux/netfilter/xt_pkttype.h
3777-rw-r--r-- root root 1051 ./usr/include/linux/netfilter/xt_policy.h
3778-rw-r--r-- root root 400 ./usr/include/linux/netfilter/xt_quota.h
3779-rw-r--r-- root root 859 ./usr/include/linux/netfilter/xt_rateest.h
3780-rw-r--r-- root root 390 ./usr/include/linux/netfilter/xt_RATEEST.h
3781-rw-r--r-- root root 220 ./usr/include/linux/netfilter/xt_realm.h
3782-rw-r--r-- root root 1058 ./usr/include/linux/netfilter/xt_recent.h
3783-rw-r--r-- root root 320 ./usr/include/linux/netfilter/xt_rpfilter.h
3784-rw-r--r-- root root 2326 ./usr/include/linux/netfilter/xt_sctp.h
3785-rw-r--r-- root root 549 ./usr/include/linux/netfilter/xt_SECMARK.h
3786-rw-r--r-- root root 1827 ./usr/include/linux/netfilter/xt_set.h
3787-rw-r--r-- root root 640 ./usr/include/linux/netfilter/xt_socket.h
3788-rw-r--r-- root root 331 ./usr/include/linux/netfilter/xt_state.h
3789-rw-r--r-- root root 716 ./usr/include/linux/netfilter/xt_statistic.h
3790-rw-r--r-- root root 664 ./usr/include/linux/netfilter/xt_string.h
3791-rw-r--r-- root root 498 ./usr/include/linux/netfilter/xt_SYNPROXY.h
3792-rw-r--r-- root root 253 ./usr/include/linux/netfilter/xt_tcpmss.h
3793-rw-r--r-- root root 235 ./usr/include/linux/netfilter/xt_TCPMSS.h
3794-rw-r--r-- root root 407 ./usr/include/linux/netfilter/xt_TCPOPTSTRIP.h
3795-rw-r--r-- root root 1250 ./usr/include/linux/netfilter/xt_tcpudp.h
3796-rw-r--r-- root root 333 ./usr/include/linux/netfilter/xt_TEE.h
3797-rw-r--r-- root root 730 ./usr/include/linux/netfilter/xt_time.h
3798-rw-r--r-- root root 575 ./usr/include/linux/netfilter/xt_TPROXY.h
3799-rw-r--r-- root root 752 ./usr/include/linux/netfilter/xt_u32.h
3800-rw-r--r-- root root 2085 ./usr/include/linux/net.h
3801-rw-r--r-- root root 1524 ./usr/include/linux/netlink_diag.h
3802-rw-r--r-- root root 7825 ./usr/include/linux/netlink.h
3803-rw-r--r-- root root 715 ./usr/include/linux/net_namespace.h
3804-rw-r--r-- root root 807 ./usr/include/linux/netrom.h
3805-rw-r--r-- root root 4914 ./usr/include/linux/net_tstamp.h
3806-rw-r--r-- root root 1534 ./usr/include/linux/nexthop.h
3807-rw-r--r-- root root 11209 ./usr/include/linux/nfc.h
3808-rw-r--r-- root root 1468 ./usr/include/linux/nfs2.h
3809-rw-r--r-- root root 2359 ./usr/include/linux/nfs3.h
3810-rw-r--r-- root root 6338 ./usr/include/linux/nfs4.h
3811-rw-r--r-- root root 1932 ./usr/include/linux/nfs4_mount.h
3812-rw-r--r-- root root 668 ./usr/include/linux/nfsacl.h
3813drwxr-xr-x root root 4096 ./usr/include/linux/nfsd
3814-rw-r--r-- root root 3122 ./usr/include/linux/nfsd/cld.h
3815-rw-r--r-- root root 736 ./usr/include/linux/nfsd/debug.h
3816-rw-r--r-- root root 2113 ./usr/include/linux/nfsd/export.h
3817-rw-r--r-- root root 3517 ./usr/include/linux/nfsd/nfsfh.h
3818-rw-r--r-- root root 421 ./usr/include/linux/nfsd/stats.h
3819-rw-r--r-- root root 1608 ./usr/include/linux/nfs_fs.h
3820-rw-r--r-- root root 4500 ./usr/include/linux/nfs.h
3821-rw-r--r-- root root 2243 ./usr/include/linux/nfs_idmap.h
3822-rw-r--r-- root root 2142 ./usr/include/linux/nfs_mount.h
3823-rw-r--r-- root root 7589 ./usr/include/linux/nilfs2_api.h
3824-rw-r--r-- root root 18085 ./usr/include/linux/nilfs2_ondisk.h
3825-rw-r--r-- root root 280715 ./usr/include/linux/nl80211.h
3826-rw-r--r-- root root 2410 ./usr/include/linux/n_r3964.h
3827-rw-r--r-- root root 639 ./usr/include/linux/nsfs.h
3828-rw-r--r-- root root 8191 ./usr/include/linux/nubus.h
3829-rw-r--r-- root root 1661 ./usr/include/linux/nvme_ioctl.h
3830-rw-r--r-- root root 532 ./usr/include/linux/nvram.h
3831-rw-r--r-- root root 20853 ./usr/include/linux/omap3isp.h
3832-rw-r--r-- root root 5918 ./usr/include/linux/omapfb.h
3833-rw-r--r-- root root 511 ./usr/include/linux/oom.h
3834-rw-r--r-- root root 37676 ./usr/include/linux/openvswitch.h
3835-rw-r--r-- root root 1672 ./usr/include/linux/packet_diag.h
3836-rw-r--r-- root root 141 ./usr/include/linux/param.h
3837-rw-r--r-- root root 3644 ./usr/include/linux/parport.h
3838-rw-r--r-- root root 892 ./usr/include/linux/patchkey.h
3839-rw-r--r-- root root 1380 ./usr/include/linux/pci.h
3840-rw-r--r-- root root 56733 ./usr/include/linux/pci_regs.h
3841-rw-r--r-- root root 711 ./usr/include/linux/pcitest.h
3842-rw-r--r-- root root 34228 ./usr/include/linux/perf_event.h
3843-rw-r--r-- root root 2097 ./usr/include/linux/personality.h
3844-rw-r--r-- root root 10569 ./usr/include/linux/pfkeyv2.h
3845-rw-r--r-- root root 2394 ./usr/include/linux/pg.h
3846-rw-r--r-- root root 1654 ./usr/include/linux/phantom.h
3847-rw-r--r-- root root 4677 ./usr/include/linux/phonet.h
3848-rw-r--r-- root root 2687 ./usr/include/linux/pktcdvd.h
3849-rw-r--r-- root root 15441 ./usr/include/linux/pkt_cls.h
3850-rw-r--r-- root root 27648 ./usr/include/linux/pkt_sched.h
3851-rw-r--r-- root root 5444 ./usr/include/linux/pmu.h
3852-rw-r--r-- root root 22 ./usr/include/linux/poll.h
3853-rw-r--r-- root root 1254 ./usr/include/linux/posix_acl.h
3854-rw-r--r-- root root 1115 ./usr/include/linux/posix_acl_xattr.h
3855-rw-r--r-- root root 1098 ./usr/include/linux/posix_types.h
3856-rw-r--r-- root root 3285 ./usr/include/linux/ppdev.h
3857-rw-r--r-- root root 2527 ./usr/include/linux/ppp-comp.h
3858-rw-r--r-- root root 5107 ./usr/include/linux/ppp_defs.h
3859-rw-r--r-- root root 5438 ./usr/include/linux/ppp-ioctl.h
3860-rw-r--r-- root root 4734 ./usr/include/linux/pps.h
3861-rw-r--r-- root root 8073 ./usr/include/linux/prctl.h
3862-rw-r--r-- root root 1073 ./usr/include/linux/pr.h
3863-rw-r--r-- root root 798 ./usr/include/linux/psample.h
3864-rw-r--r-- root root 4328 ./usr/include/linux/psci.h
3865-rw-r--r-- root root 4036 ./usr/include/linux/psp-sev.h
3866-rw-r--r-- root root 6731 ./usr/include/linux/ptp_clock.h
3867-rw-r--r-- root root 4265 ./usr/include/linux/ptrace.h
3868-rw-r--r-- root root 2469 ./usr/include/linux/qemu_fw_cfg.h
3869-rw-r--r-- root root 2328 ./usr/include/linux/qnx4_fs.h
3870-rw-r--r-- root root 624 ./usr/include/linux/qnxtypes.h
3871-rw-r--r-- root root 893 ./usr/include/linux/qrtr.h
3872-rw-r--r-- root root 6291 ./usr/include/linux/quota.h
3873-rw-r--r-- root root 360 ./usr/include/linux/radeonfb.h
3874drwxr-xr-x root root 4096 ./usr/include/linux/raid
3875-rw-r--r-- root root 16161 ./usr/include/linux/raid/md_p.h
3876-rw-r--r-- root root 4484 ./usr/include/linux/raid/md_u.h
3877-rw-r--r-- root root 1370 ./usr/include/linux/random.h
3878-rw-r--r-- root root 365 ./usr/include/linux/raw.h
3879-rw-r--r-- root root 11081 ./usr/include/linux/rds.h
3880-rw-r--r-- root root 1343 ./usr/include/linux/reboot.h
3881-rw-r--r-- root root 775 ./usr/include/linux/reiserfs_fs.h
3882-rw-r--r-- root root 533 ./usr/include/linux/reiserfs_xattr.h
3883-rw-r--r-- root root 2347 ./usr/include/linux/resource.h
3884-rw-r--r-- root root 3682 ./usr/include/linux/rfkill.h
3885-rw-r--r-- root root 3248 ./usr/include/linux/rio_cm_cdev.h
3886-rw-r--r-- root root 9330 ./usr/include/linux/rio_mport_cdev.h
3887-rw-r--r-- root root 1238 ./usr/include/linux/romfs_fs.h
3888-rw-r--r-- root root 2232 ./usr/include/linux/rose.h
3889-rw-r--r-- root root 2332 ./usr/include/linux/route.h
3890-rw-r--r-- root root 544 ./usr/include/linux/rpmsg.h
3891-rw-r--r-- root root 4904 ./usr/include/linux/rseq.h
3892-rw-r--r-- root root 4009 ./usr/include/linux/rtc.h
3893-rw-r--r-- root root 19055 ./usr/include/linux/rtnetlink.h
3894-rw-r--r-- root root 4897 ./usr/include/linux/rxrpc.h
3895-rw-r--r-- root root 4597 ./usr/include/linux/scc.h
3896drwxr-xr-x root root 4096 ./usr/include/linux/sched
3897-rw-r--r-- root root 4647 ./usr/include/linux/sched.h
3898-rw-r--r-- root root 4480 ./usr/include/linux/sched/types.h
3899-rw-r--r-- root root 6382 ./usr/include/linux/scif_ioctl.h
3900-rw-r--r-- root root 2479 ./usr/include/linux/screen_info.h
3901-rw-r--r-- root root 34783 ./usr/include/linux/sctp.h
3902-rw-r--r-- root root 2839 ./usr/include/linux/sdla.h
3903-rw-r--r-- root root 3235 ./usr/include/linux/seccomp.h
3904-rw-r--r-- root root 2704 ./usr/include/linux/securebits.h
3905-rw-r--r-- root root 3297 ./usr/include/linux/sed-opal.h
3906-rw-r--r-- root root 589 ./usr/include/linux/seg6_genl.h
3907-rw-r--r-- root root 1170 ./usr/include/linux/seg6.h
3908-rw-r--r-- root root 423 ./usr/include/linux/seg6_hmac.h
3909-rw-r--r-- root root 927 ./usr/include/linux/seg6_iptunnel.h
3910-rw-r--r-- root root 2060 ./usr/include/linux/seg6_local.h
3911-rw-r--r-- root root 1195 ./usr/include/linux/selinux_netlink.h
3912-rw-r--r-- root root 3043 ./usr/include/linux/sem.h
3913-rw-r--r-- root root 6436 ./usr/include/linux/serial_core.h
3914-rw-r--r-- root root 3866 ./usr/include/linux/serial.h
3915-rw-r--r-- root root 15496 ./usr/include/linux/serial_reg.h
3916-rw-r--r-- root root 2063 ./usr/include/linux/serio.h
3917-rw-r--r-- root root 3785 ./usr/include/linux/shm.h
3918-rw-r--r-- root root 1233 ./usr/include/linux/signalfd.h
3919-rw-r--r-- root root 388 ./usr/include/linux/signal.h
3920-rw-r--r-- root root 2835 ./usr/include/linux/smc_diag.h
3921-rw-r--r-- root root 780 ./usr/include/linux/smc.h
3922-rw-r--r-- root root 1058 ./usr/include/linux/smiapp.h
3923-rw-r--r-- root root 13014 ./usr/include/linux/snmp.h
3924-rw-r--r-- root root 727 ./usr/include/linux/sock_diag.h
3925-rw-r--r-- root root 819 ./usr/include/linux/socket.h
3926-rw-r--r-- root root 6846 ./usr/include/linux/sockios.h
3927-rw-r--r-- root root 2290 ./usr/include/linux/sonet.h
3928-rw-r--r-- root root 5309 ./usr/include/linux/sonypi.h
3929-rw-r--r-- root root 46038 ./usr/include/linux/soundcard.h
3930-rw-r--r-- root root 1237 ./usr/include/linux/sound.h
3931drwxr-xr-x root root 4096 ./usr/include/linux/spi
3932-rw-r--r-- root root 5286 ./usr/include/linux/spi/spidev.h
3933-rw-r--r-- root root 6100 ./usr/include/linux/stat.h
3934-rw-r--r-- root root 131 ./usr/include/linux/stddef.h
3935-rw-r--r-- root root 1275 ./usr/include/linux/stm.h
3936-rw-r--r-- root root 238 ./usr/include/linux/string.h
3937drwxr-xr-x root root 4096 ./usr/include/linux/sunrpc
3938-rw-r--r-- root root 1144 ./usr/include/linux/sunrpc/debug.h
3939-rw-r--r-- root root 1431 ./usr/include/linux/suspend_ioctls.h
3940-rw-r--r-- root root 6711 ./usr/include/linux/swab.h
3941-rw-r--r-- root root 4768 ./usr/include/linux/switchtec_ioctl.h
3942-rw-r--r-- root root 2883 ./usr/include/linux/sync_file.h
3943-rw-r--r-- root root 8985 ./usr/include/linux/synclink.h
3944-rw-r--r-- root root 25880 ./usr/include/linux/sysctl.h
3945-rw-r--r-- root root 1049 ./usr/include/linux/sysinfo.h
3946-rw-r--r-- root root 3899 ./usr/include/linux/target_core_user.h
3947-rw-r--r-- root root 7152 ./usr/include/linux/taskstats.h
3948drwxr-xr-x root root 4096 ./usr/include/linux/tc_act
3949-rw-r--r-- root root 764 ./usr/include/linux/tc_act/tc_bpf.h
3950-rw-r--r-- root root 390 ./usr/include/linux/tc_act/tc_connmark.h
3951-rw-r--r-- root root 644 ./usr/include/linux/tc_act/tc_csum.h
3952-rw-r--r-- root root 934 ./usr/include/linux/tc_act/tc_ct.h
3953-rw-r--r-- root root 556 ./usr/include/linux/tc_act/tc_ctinfo.h
3954-rw-r--r-- root root 322 ./usr/include/linux/tc_act/tc_defact.h
3955-rw-r--r-- root root 626 ./usr/include/linux/tc_act/tc_gact.h
3956-rw-r--r-- root root 600 ./usr/include/linux/tc_act/tc_ife.h
3957-rw-r--r-- root root 415 ./usr/include/linux/tc_act/tc_ipt.h
3958-rw-r--r-- root root 728 ./usr/include/linux/tc_act/tc_mirred.h
3959-rw-r--r-- root root 992 ./usr/include/linux/tc_act/tc_mpls.h
3960-rw-r--r-- root root 424 ./usr/include/linux/tc_act/tc_nat.h
3961-rw-r--r-- root root 1527 ./usr/include/linux/tc_act/tc_pedit.h
3962-rw-r--r-- root root 456 ./usr/include/linux/tc_act/tc_sample.h
3963-rw-r--r-- root root 1443 ./usr/include/linux/tc_act/tc_skbedit.h
3964-rw-r--r-- root root 815 ./usr/include/linux/tc_act/tc_skbmod.h
3965-rw-r--r-- root root 1898 ./usr/include/linux/tc_act/tc_tunnel_key.h
3966-rw-r--r-- root root 816 ./usr/include/linux/tc_act/tc_vlan.h
3967drwxr-xr-x root root 4096 ./usr/include/linux/tc_ematch
3968-rw-r--r-- root root 414 ./usr/include/linux/tc_ematch/tc_em_cmp.h
3969-rw-r--r-- root root 391 ./usr/include/linux/tc_ematch/tc_em_ipt.h
3970-rw-r--r-- root root 2116 ./usr/include/linux/tc_ematch/tc_em_meta.h
3971-rw-r--r-- root root 255 ./usr/include/linux/tc_ematch/tc_em_nbyte.h
3972-rw-r--r-- root root 384 ./usr/include/linux/tc_ematch/tc_em_text.h
3973-rw-r--r-- root root 10857 ./usr/include/linux/tcp.h
3974-rw-r--r-- root root 1549 ./usr/include/linux/tcp_metrics.h
3975-rw-r--r-- root root 12581 ./usr/include/linux/tee.h
3976-rw-r--r-- root root 506 ./usr/include/linux/termios.h
3977-rw-r--r-- root root 924 ./usr/include/linux/thermal.h
3978-rw-r--r-- root root 1748 ./usr/include/linux/time.h
3979-rw-r--r-- root root 936 ./usr/include/linux/timerfd.h
3980-rw-r--r-- root root 278 ./usr/include/linux/times.h
3981-rw-r--r-- root root 996 ./usr/include/linux/time_types.h
3982-rw-r--r-- root root 7817 ./usr/include/linux/timex.h
3983-rw-r--r-- root root 1729 ./usr/include/linux/tiocl.h
3984-rw-r--r-- root root 14848 ./usr/include/linux/tipc_config.h
3985-rw-r--r-- root root 8272 ./usr/include/linux/tipc.h
3986-rw-r--r-- root root 9156 ./usr/include/linux/tipc_netlink.h
3987-rw-r--r-- root root 468 ./usr/include/linux/tipc_sockets_diag.h
3988-rw-r--r-- root root 4288 ./usr/include/linux/tls.h
3989-rw-r--r-- root root 1930 ./usr/include/linux/toshiba.h
3990-rw-r--r-- root root 4527 ./usr/include/linux/tty_flags.h
3991-rw-r--r-- root root 1585 ./usr/include/linux/tty.h
3992-rw-r--r-- root root 1476 ./usr/include/linux/types.h
3993-rw-r--r-- root root 697 ./usr/include/linux/udf_fs_i.h
3994-rw-r--r-- root root 643 ./usr/include/linux/udmabuf.h
3995-rw-r--r-- root root 1613 ./usr/include/linux/udp.h
3996-rw-r--r-- root root 4648 ./usr/include/linux/uhid.h
3997-rw-r--r-- root root 9261 ./usr/include/linux/uinput.h
3998-rw-r--r-- root root 732 ./usr/include/linux/uio.h
3999-rw-r--r-- root root 798 ./usr/include/linux/uleds.h
4000-rw-r--r-- root root 4562 ./usr/include/linux/ultrasound.h
4001-rw-r--r-- root root 384 ./usr/include/linux/un.h
4002-rw-r--r-- root root 220 ./usr/include/linux/unistd.h
4003-rw-r--r-- root root 1328 ./usr/include/linux/unix_diag.h
4004drwxr-xr-x root root 4096 ./usr/include/linux/usb
4005-rw-r--r-- root root 19490 ./usr/include/linux/usb/audio.h
4006-rw-r--r-- root root 12962 ./usr/include/linux/usb/cdc.h
4007-rw-r--r-- root root 739 ./usr/include/linux/usb/cdc-wdm.h
4008-rw-r--r-- root root 9149 ./usr/include/linux/usb/ch11.h
4009-rw-r--r-- root root 38850 ./usr/include/linux/usb/ch9.h
4010-rw-r--r-- root root 566 ./usr/include/linux/usb/charger.h
4011-rw-r--r-- root root 8317 ./usr/include/linux/usbdevice_fs.h
4012-rw-r--r-- root root 10370 ./usr/include/linux/usb/functionfs.h
4013-rw-r--r-- root root 2818 ./usr/include/linux/usb/gadgetfs.h
4014-rw-r--r-- root root 1385 ./usr/include/linux/usb/g_printer.h
4015-rw-r--r-- root root 1097 ./usr/include/linux/usb/g_uvc.h
4016-rw-r--r-- root root 640 ./usr/include/linux/usbip.h
4017-rw-r--r-- root root 3434 ./usr/include/linux/usb/midi.h
4018-rw-r--r-- root root 4713 ./usr/include/linux/usb/tmc.h
4019-rw-r--r-- root root 16360 ./usr/include/linux/usb/video.h
4020-rw-r--r-- root root 6811 ./usr/include/linux/userfaultfd.h
4021-rw-r--r-- root root 1516 ./usr/include/linux/userio.h
4022-rw-r--r-- root root 215 ./usr/include/linux/utime.h
4023-rw-r--r-- root root 669 ./usr/include/linux/utsname.h
4024-rw-r--r-- root root 1356 ./usr/include/linux/uuid.h
4025-rw-r--r-- root root 2590 ./usr/include/linux/uvcvideo.h
4026-rw-r--r-- root root 4177 ./usr/include/linux/v4l2-common.h
4027-rw-r--r-- root root 52061 ./usr/include/linux/v4l2-controls.h
4028-rw-r--r-- root root 31562 ./usr/include/linux/v4l2-dv-timings.h
4029-rw-r--r-- root root 5101 ./usr/include/linux/v4l2-mediabus.h
4030-rw-r--r-- root root 6339 ./usr/include/linux/v4l2-subdev.h
4031-rw-r--r-- root root 7257 ./usr/include/linux/vbox_err.h
4032-rw-r--r-- root root 8755 ./usr/include/linux/vboxguest.h
4033-rw-r--r-- root root 11509 ./usr/include/linux/vbox_vmmdev_types.h
4034-rw-r--r-- root root 97 ./usr/include/linux/version.h
4035-rw-r--r-- root root 224 ./usr/include/linux/veth.h
4036-rw-r--r-- root root 836 ./usr/include/linux/vfio_ccw.h
4037-rw-r--r-- root root 33767 ./usr/include/linux/vfio.h
4038-rw-r--r-- root root 5069 ./usr/include/linux/vhost.h
4039-rw-r--r-- root root 3164 ./usr/include/linux/vhost_types.h
4040-rw-r--r-- root root 91377 ./usr/include/linux/videodev2.h
4041-rw-r--r-- root root 2041 ./usr/include/linux/virtio_9p.h
4042-rw-r--r-- root root 5036 ./usr/include/linux/virtio_balloon.h
4043-rw-r--r-- root root 6797 ./usr/include/linux/virtio_blk.h
4044-rw-r--r-- root root 3836 ./usr/include/linux/virtio_config.h
4045-rw-r--r-- root root 3136 ./usr/include/linux/virtio_console.h
4046-rw-r--r-- root root 13874 ./usr/include/linux/virtio_crypto.h
4047-rw-r--r-- root root 490 ./usr/include/linux/virtio_fs.h
4048-rw-r--r-- root root 8540 ./usr/include/linux/virtio_gpu.h
4049-rw-r--r-- root root 2592 ./usr/include/linux/virtio_ids.h
4050-rw-r--r-- root root 2506 ./usr/include/linux/virtio_input.h
4051-rw-r--r-- root root 3783 ./usr/include/linux/virtio_iommu.h
4052-rw-r--r-- root root 4586 ./usr/include/linux/virtio_mmio.h
4053-rw-r--r-- root root 10549 ./usr/include/linux/virtio_net.h
4054-rw-r--r-- root root 7079 ./usr/include/linux/virtio_pci.h
4055-rw-r--r-- root root 639 ./usr/include/linux/virtio_pmem.h
4056-rw-r--r-- root root 7430 ./usr/include/linux/virtio_ring.h
4057-rw-r--r-- root root 265 ./usr/include/linux/virtio_rng.h
4058-rw-r--r-- root root 6035 ./usr/include/linux/virtio_scsi.h
4059-rw-r--r-- root root 2153 ./usr/include/linux/virtio_types.h
4060-rw-r--r-- root root 3086 ./usr/include/linux/virtio_vsock.h
4061-rw-r--r-- root root 455 ./usr/include/linux/vmcore.h
4062-rw-r--r-- root root 963 ./usr/include/linux/vm_sockets_diag.h
4063-rw-r--r-- root root 5314 ./usr/include/linux/vm_sockets.h
4064-rw-r--r-- root root 1885 ./usr/include/linux/vsockmon.h
4065-rw-r--r-- root root 3059 ./usr/include/linux/vt.h
4066-rw-r--r-- root root 1719 ./usr/include/linux/vtpm_proxy.h
4067-rw-r--r-- root root 682 ./usr/include/linux/wait.h
4068-rw-r--r-- root root 2335 ./usr/include/linux/watchdog.h
4069drwxr-xr-x root root 4096 ./usr/include/linux/wimax
4070-rw-r--r-- root root 8371 ./usr/include/linux/wimax.h
4071-rw-r--r-- root root 15930 ./usr/include/linux/wimax/i2400m.h
4072-rw-r--r-- root root 42713 ./usr/include/linux/wireless.h
4073-rw-r--r-- root root 1761 ./usr/include/linux/wmi.h
4074-rw-r--r-- root root 3562 ./usr/include/linux/x25.h
4075-rw-r--r-- root root 2860 ./usr/include/linux/xattr.h
4076-rw-r--r-- root root 1259 ./usr/include/linux/xdp_diag.h
4077-rw-r--r-- root root 11737 ./usr/include/linux/xfrm.h
4078-rw-r--r-- root root 2976 ./usr/include/linux/xilinx-v4l2-controls.h
4079-rw-r--r-- root root 3296 ./usr/include/linux/zorro.h
4080-rw-r--r-- root root 29963 ./usr/include/linux/zorro_ids.h
4081-rw-r--r-- root root 7675 ./usr/include/locale.h
4082drwxr-xr-x root root 4096 ./usr/include/lzma
4083-rw-r--r-- root root 24858 ./usr/include/lzma/base.h
4084-rw-r--r-- root root 2630 ./usr/include/lzma/bcj.h
4085-rw-r--r-- root root 22107 ./usr/include/lzma/block.h
4086-rw-r--r-- root root 4255 ./usr/include/lzma/check.h
4087-rw-r--r-- root root 24844 ./usr/include/lzma/container.h
4088-rw-r--r-- root root 1865 ./usr/include/lzma/delta.h
4089-rw-r--r-- root root 16520 ./usr/include/lzma/filter.h
4090-rw-r--r-- root root 9866 ./usr/include/lzma.h
4091-rw-r--r-- root root 2604 ./usr/include/lzma/hardware.h
4092-rw-r--r-- root root 23491 ./usr/include/lzma/index.h
4093-rw-r--r-- root root 3914 ./usr/include/lzma/index_hash.h
4094-rw-r--r-- root root 14744 ./usr/include/lzma/lzma12.h
4095-rw-r--r-- root root 8253 ./usr/include/lzma/stream_flags.h
4096-rw-r--r-- root root 3497 ./usr/include/lzma/version.h
4097-rw-r--r-- root root 6546 ./usr/include/lzma/vli.h
4098drwxr-xr-x root root 4096 ./usr/include/lzo
4099-rw-r--r-- root root 2638 ./usr/include/lzo/lzo1a.h
4100-rw-r--r-- root root 5387 ./usr/include/lzo/lzo1b.h
4101-rw-r--r-- root root 5384 ./usr/include/lzo/lzo1c.h
4102-rw-r--r-- root root 3073 ./usr/include/lzo/lzo1f.h
4103-rw-r--r-- root root 2634 ./usr/include/lzo/lzo1.h
4104-rw-r--r-- root root 5873 ./usr/include/lzo/lzo1x.h
4105-rw-r--r-- root root 4641 ./usr/include/lzo/lzo1y.h
4106-rw-r--r-- root root 3771 ./usr/include/lzo/lzo1z.h
4107-rw-r--r-- root root 2525 ./usr/include/lzo/lzo2a.h
4108-rw-r--r-- root root 5566 ./usr/include/lzo/lzo_asm.h
4109-rw-r--r-- root root 16006 ./usr/include/lzo/lzoconf.h
4110-rw-r--r-- root root 127289 ./usr/include/lzo/lzodefs.h
4111-rw-r--r-- root root 1823 ./usr/include/lzo/lzoutil.h
4112-rw-r--r-- root root 6186 ./usr/include/malloc.h
4113-rw-r--r-- root root 46404 ./usr/include/math.h
4114-rw-r--r-- root root 2435 ./usr/include/mcheck.h
4115-rw-r--r-- root root 956 ./usr/include/memory.h
4116-rw-r--r-- root root 12275 ./usr/include/menu.h
4117drwxr-xr-x root root 4096 ./usr/include/misc
4118-rw-r--r-- root root 3936 ./usr/include/misc/cxl.h
4119-rw-r--r-- root root 953 ./usr/include/misc/fastrpc.h
4120-rw-r--r-- root root 19004 ./usr/include/misc/habanalabs.h
4121-rw-r--r-- root root 1947 ./usr/include/misc/ocxl.h
4122-rw-r--r-- root root 12341 ./usr/include/misc/xilinx_sdfec.h
4123-rw-r--r-- root root 3359 ./usr/include/mntent.h
4124-rw-r--r-- root root 1804 ./usr/include/monetary.h
4125-rw-r--r-- root root 3760 ./usr/include/mqueue.h
4126drwxr-xr-x root root 4096 ./usr/include/mtd
4127-rw-r--r-- root root 1644 ./usr/include/mtd/inftl-user.h
4128-rw-r--r-- root root 9732 ./usr/include/mtd/mtd-abi.h
4129-rw-r--r-- root root 1242 ./usr/include/mtd/mtd-user.h
4130-rw-r--r-- root root 2116 ./usr/include/mtd/nftl-user.h
4131-rw-r--r-- root root 18220 ./usr/include/mtd/ubi-user.h
4132-rw-r--r-- root root 4240 ./usr/include/nc_tparm.h
4133-rw-r--r-- root root 4522 ./usr/include/ncurses_dll.h
4134lrwxrwxrwx root root 8 ./usr/include/ncurses.h -> curses.h
4135-rw-r--r-- root root 2454 ./usr/include/ndbm.h
4136drwxr-xr-x root root 4096 ./usr/include/net
4137drwxr-xr-x root root 4096 ./usr/include/netash
4138-rw-r--r-- root root 1363 ./usr/include/netash/ash.h
4139drwxr-xr-x root root 4096 ./usr/include/netatalk
4140-rw-r--r-- root root 1029 ./usr/include/netatalk/at.h
4141drwxr-xr-x root root 4096 ./usr/include/netax25
4142-rw-r--r-- root root 4810 ./usr/include/netax25/ax25.h
4143-rw-r--r-- root root 28100 ./usr/include/netdb.h
4144drwxr-xr-x root root 4096 ./usr/include/neteconet
4145-rw-r--r-- root root 1668 ./usr/include/neteconet/ec.h
4146-rw-r--r-- root root 3136 ./usr/include/net/ethernet.h
4147-rw-r--r-- root root 7132 ./usr/include/net/if_arp.h
4148-rw-r--r-- root root 6982 ./usr/include/net/if.h
4149-rw-r--r-- root root 1262 ./usr/include/net/if_packet.h
4150-rw-r--r-- root root 6714 ./usr/include/net/if_ppp.h
4151-rw-r--r-- root root 1625 ./usr/include/net/if_shaper.h
4152-rw-r--r-- root root 933 ./usr/include/net/if_slip.h
4153drwxr-xr-x root root 4096 ./usr/include/netinet
4154-rw-r--r-- root root 1985 ./usr/include/netinet/ether.h
4155-rw-r--r-- root root 11515 ./usr/include/netinet/icmp6.h
4156-rw-r--r-- root root 3976 ./usr/include/netinet/if_ether.h
4157-rw-r--r-- root root 1186 ./usr/include/netinet/if_fddi.h
4158-rw-r--r-- root root 3692 ./usr/include/netinet/if_tr.h
4159-rw-r--r-- root root 4663 ./usr/include/netinet/igmp.h
4160-rw-r--r-- root root 21702 ./usr/include/netinet/in.h
4161-rw-r--r-- root root 1494 ./usr/include/netinet/in_systm.h
4162-rw-r--r-- root root 5394 ./usr/include/netinet/ip6.h
4163-rw-r--r-- root root 9436 ./usr/include/netinet/ip.h
4164-rw-r--r-- root root 10131 ./usr/include/netinet/ip_icmp.h
4165-rw-r--r-- root root 10490 ./usr/include/netinet/tcp.h
4166-rw-r--r-- root root 3774 ./usr/include/netinet/udp.h
4167drwxr-xr-x root root 4096 ./usr/include/netipx
4168-rw-r--r-- root root 2900 ./usr/include/netipx/ipx.h
4169drwxr-xr-x root root 4096 ./usr/include/netiucv
4170-rw-r--r-- root root 1594 ./usr/include/netiucv/iucv.h
4171drwxr-xr-x root root 4096 ./usr/include/netpacket
4172-rw-r--r-- root root 2438 ./usr/include/netpacket/packet.h
4173-rw-r--r-- root root 28 ./usr/include/net/ppp-comp.h
4174-rw-r--r-- root root 162 ./usr/include/net/ppp_defs.h
4175drwxr-xr-x root root 4096 ./usr/include/netrom
4176-rw-r--r-- root root 2226 ./usr/include/netrom/netrom.h
4177drwxr-xr-x root root 4096 ./usr/include/netrose
4178-rw-r--r-- root root 3184 ./usr/include/netrose/rose.h
4179-rw-r--r-- root root 4704 ./usr/include/net/route.h
4180drwxr-xr-x root root 4096 ./usr/include/nfs
4181-rw-r--r-- root root 23 ./usr/include/nfs/nfs.h
4182-rw-r--r-- root root 1601 ./usr/include/nlist.h
4183-rw-r--r-- root root 1753 ./usr/include/nl_types.h
4184-rw-r--r-- root root 1879 ./usr/include/nss.h
4185-rw-r--r-- root root 21307 ./usr/include/obstack.h
4186drwxr-xr-x root root 4096 ./usr/include/omap
4187-rw-r--r-- root root 4843 ./usr/include/omap/omap_drm.h
4188drwxr-xr-x root root 4096 ./usr/include/openssl
4189-rw-r--r-- root root 3349 ./usr/include/openssl/aes.h
4190-rw-r--r-- root root 14599 ./usr/include/openssl/asn1err.h
4191-rw-r--r-- root root 33627 ./usr/include/openssl/asn1.h
4192-rw-r--r-- root root 395 ./usr/include/openssl/asn1_mac.h
4193-rw-r--r-- root root 32940 ./usr/include/openssl/asn1t.h
4194-rw-r--r-- root root 1326 ./usr/include/openssl/asyncerr.h
4195-rw-r--r-- root root 2398 ./usr/include/openssl/async.h
4196-rw-r--r-- root root 6400 ./usr/include/openssl/bioerr.h
4197-rw-r--r-- root root 34907 ./usr/include/openssl/bio.h
4198-rw-r--r-- root root 1847 ./usr/include/openssl/blowfish.h
4199-rw-r--r-- root root 4907 ./usr/include/openssl/bnerr.h
4200-rw-r--r-- root root 22135 ./usr/include/openssl/bn.h
4201-rw-r--r-- root root 820 ./usr/include/openssl/buffererr.h
4202-rw-r--r-- root root 1600 ./usr/include/openssl/buffer.h
4203-rw-r--r-- root root 3179 ./usr/include/openssl/camellia.h
4204-rw-r--r-- root root 1674 ./usr/include/openssl/cast.h
4205-rw-r--r-- root root 1064 ./usr/include/openssl/cmac.h
4206-rw-r--r-- root root 11160 ./usr/include/openssl/cmserr.h
4207-rw-r--r-- root root 16379 ./usr/include/openssl/cms.h
4208-rw-r--r-- root root 1212 ./usr/include/openssl/comperr.h
4209-rw-r--r-- root root 1328 ./usr/include/openssl/comp.h
4210-rw-r--r-- root root 1300 ./usr/include/openssl/conf_api.h
4211-rw-r--r-- root root 3429 ./usr/include/openssl/conferr.h
4212-rw-r--r-- root root 5601 ./usr/include/openssl/conf.h
4213-rw-r--r-- root root 2261 ./usr/include/openssl/cryptoerr.h
4214-rw-r--r-- root root 17239 ./usr/include/openssl/crypto.h
4215-rw-r--r-- root root 3470 ./usr/include/openssl/cterr.h
4216-rw-r--r-- root root 15872 ./usr/include/openssl/ct.h
4217-rw-r--r-- root root 7627 ./usr/include/openssl/des.h
4218-rw-r--r-- root root 3974 ./usr/include/openssl/dherr.h
4219-rw-r--r-- root root 13403 ./usr/include/openssl/dh.h
4220-rw-r--r-- root root 2972 ./usr/include/openssl/dsaerr.h
4221-rw-r--r-- root root 10051 ./usr/include/openssl/dsa.h
4222-rw-r--r-- root root 1578 ./usr/include/openssl/dtls1.h
4223-rw-r--r-- root root 924 ./usr/include/openssl/ebcdic.h
4224-rw-r--r-- root root 358 ./usr/include/openssl/ecdh.h
4225-rw-r--r-- root root 358 ./usr/include/openssl/ecdsa.h
4226-rw-r--r-- root root 15758 ./usr/include/openssl/ecerr.h
4227-rw-r--r-- root root 63596 ./usr/include/openssl/ec.h
4228-rw-r--r-- root root 5447 ./usr/include/openssl/engineerr.h
4229-rw-r--r-- root root 34661 ./usr/include/openssl/engine.h
4230-rw-r--r-- root root 8888 ./usr/include/openssl/e_os2.h
4231-rw-r--r-- root root 11269 ./usr/include/openssl/err.h
4232-rw-r--r-- root root 11427 ./usr/include/openssl/evperr.h
4233-rw-r--r-- root root 76828 ./usr/include/openssl/evp.h
4234-rw-r--r-- root root 1591 ./usr/include/openssl/hmac.h
4235-rw-r--r-- root root 2099 ./usr/include/openssl/idea.h
4236-rw-r--r-- root root 2122 ./usr/include/openssl/kdferr.h
4237-rw-r--r-- root root 4326 ./usr/include/openssl/kdf.h
4238-rw-r--r-- root root 9271 ./usr/include/openssl/lhash.h
4239-rw-r--r-- root root 1054 ./usr/include/openssl/md2.h
4240-rw-r--r-- root root 1322 ./usr/include/openssl/md4.h
4241-rw-r--r-- root root 1320 ./usr/include/openssl/md5.h
4242-rw-r--r-- root root 1053 ./usr/include/openssl/mdc2.h
4243-rw-r--r-- root root 10478 ./usr/include/openssl/modes.h
4244-rw-r--r-- root root 1316 ./usr/include/openssl/objectserr.h
4245-rw-r--r-- root root 6633 ./usr/include/openssl/objects.h
4246-rw-r--r-- root root 217522 ./usr/include/openssl/obj_mac.h
4247-rw-r--r-- root root 3356 ./usr/include/openssl/ocsperr.h
4248-rw-r--r-- root root 15305 ./usr/include/openssl/ocsp.h
4249-rw-r--r-- root root 4520 ./usr/include/openssl/opensslconf-64.h
4250-rw-r--r-- root root 564 ./usr/include/openssl/opensslconf.h
4251-rw-r--r-- root root 4102 ./usr/include/openssl/opensslv.h
4252-rw-r--r-- root root 6266 ./usr/include/openssl/ossl_typ.h
4253-rw-r--r-- root root 415 ./usr/include/openssl/pem2.h
4254-rw-r--r-- root root 5098 ./usr/include/openssl/pemerr.h
4255-rw-r--r-- root root 15468 ./usr/include/openssl/pem.h
4256-rw-r--r-- root root 3749 ./usr/include/openssl/pkcs12err.h
4257-rw-r--r-- root root 9871 ./usr/include/openssl/pkcs12.h
4258-rw-r--r-- root root 5110 ./usr/include/openssl/pkcs7err.h
4259-rw-r--r-- root root 11590 ./usr/include/openssl/pkcs7.h
4260-rw-r--r-- root root 4763 ./usr/include/openssl/rand_drbg.h
4261-rw-r--r-- root root 4633 ./usr/include/openssl/randerr.h
4262-rw-r--r-- root root 2213 ./usr/include/openssl/rand.h
4263-rw-r--r-- root root 1534 ./usr/include/openssl/rc2.h
4264-rw-r--r-- root root 825 ./usr/include/openssl/rc4.h
4265-rw-r--r-- root root 1988 ./usr/include/openssl/rc5.h
4266-rw-r--r-- root root 1243 ./usr/include/openssl/ripemd.h
4267-rw-r--r-- root root 9075 ./usr/include/openssl/rsaerr.h
4268-rw-r--r-- root root 22202 ./usr/include/openssl/rsa.h
4269-rw-r--r-- root root 8139 ./usr/include/openssl/safestack.h
4270-rw-r--r-- root root 3479 ./usr/include/openssl/seed.h
4271-rw-r--r-- root root 3831 ./usr/include/openssl/sha.h
4272-rw-r--r-- root root 3827 ./usr/include/openssl/srp.h
4273-rw-r--r-- root root 1316 ./usr/include/openssl/srtp.h
4274-rw-r--r-- root root 542 ./usr/include/openssl/ssl2.h
4275-rw-r--r-- root root 14576 ./usr/include/openssl/ssl3.h
4276-rw-r--r-- root root 46676 ./usr/include/openssl/sslerr.h
4277-rw-r--r-- root root 111253 ./usr/include/openssl/ssl.h
4278-rw-r--r-- root root 3095 ./usr/include/openssl/stack.h
4279-rw-r--r-- root root 4399 ./usr/include/openssl/storeerr.h
4280-rw-r--r-- root root 11199 ./usr/include/openssl/store.h
4281-rw-r--r-- root root 1311 ./usr/include/openssl/symhacks.h
4282-rw-r--r-- root root 72490 ./usr/include/openssl/tls1.h
4283-rw-r--r-- root root 6746 ./usr/include/openssl/tserr.h
4284-rw-r--r-- root root 22429 ./usr/include/openssl/ts.h
4285-rw-r--r-- root root 1666 ./usr/include/openssl/txt_db.h
4286-rw-r--r-- root root 2737 ./usr/include/openssl/uierr.h
4287-rw-r--r-- root root 16052 ./usr/include/openssl/ui.h
4288-rw-r--r-- root root 1377 ./usr/include/openssl/whrlpool.h
4289-rw-r--r-- root root 6777 ./usr/include/openssl/x509err.h
4290-rw-r--r-- root root 43123 ./usr/include/openssl/x509.h
4291-rw-r--r-- root root 8777 ./usr/include/openssl/x509v3err.h
4292-rw-r--r-- root root 33377 ./usr/include/openssl/x509v3.h
4293-rw-r--r-- root root 32179 ./usr/include/openssl/x509_vfy.h
4294-rw-r--r-- root root 4201 ./usr/include/panel.h
4295-rw-r--r-- root root 2977 ./usr/include/paths.h
4296-rw-r--r-- root root 15456 ./usr/include/pciaccess.h
4297-rw-r--r-- root root 6783 ./usr/include/pcrecpparg.h
4298-rw-r--r-- root root 26529 ./usr/include/pcrecpp.h
4299-rw-r--r-- root root 31718 ./usr/include/pcre.h
4300-rw-r--r-- root root 5631 ./usr/include/pcreposix.h
4301-rw-r--r-- root root 6600 ./usr/include/pcre_scanner.h
4302-rw-r--r-- root root 6312 ./usr/include/pcre_stringpiece.h
4303drwxr-xr-x root root 4096 ./usr/include/pixman-1
4304-rw-r--r-- root root 47735 ./usr/include/pixman-1/pixman.h
4305-rw-r--r-- root root 1786 ./usr/include/pixman-1/pixman-version.h
4306-rw-r--r-- root root 15029 ./usr/include/plugin-api.h
4307lrwxrwxrwx root root 18 ./usr/include/pngconf.h -> libpng16/pngconf.h
4308lrwxrwxrwx root root 14 ./usr/include/png.h -> libpng16/png.h
4309lrwxrwxrwx root root 21 ./usr/include/pnglibconf.h -> libpng16/pnglibconf.h
4310-rw-r--r-- root root 22 ./usr/include/poll.h
4311-rw-r--r-- root root 6801 ./usr/include/printf.h
4312drwxr-xr-x root root 4096 ./usr/include/proc
4313-rw-r--r-- root root 509 ./usr/include/proc/alloc.h
4314-rw-r--r-- root root 457 ./usr/include/proc/devname.h
4315-rw-r--r-- root root 913 ./usr/include/proc/escape.h
4316-rw-r--r-- root root 1068 ./usr/include/proc/numa.h
4317-rw-r--r-- root root 2936 ./usr/include/proc/procps.h
4318-rw-r--r-- root root 305 ./usr/include/proc/pwcache.h
4319-rw-r--r-- root root 15204 ./usr/include/proc/readproc.h
4320-rw-r--r-- root root 3477 ./usr/include/proc_service.h
4321-rw-r--r-- root root 1000 ./usr/include/proc/sig.h
4322-rw-r--r-- root root 1797 ./usr/include/proc/slab.h
4323-rw-r--r-- root root 4820 ./usr/include/proc/sysinfo.h
4324-rw-r--r-- root root 1480 ./usr/include/proc/version.h
4325-rw-r--r-- root root 160 ./usr/include/proc/wchan.h
4326-rw-r--r-- root root 202 ./usr/include/proc/whattime.h
4327drwxr-xr-x root root 4096 ./usr/include/protocols
4328-rw-r--r-- root root 3844 ./usr/include/protocols/routed.h
4329-rw-r--r-- root root 2567 ./usr/include/protocols/rwhod.h
4330-rw-r--r-- root root 4826 ./usr/include/protocols/talkd.h
4331-rw-r--r-- root root 3881 ./usr/include/protocols/timed.h
4332-rw-r--r-- root root 41701 ./usr/include/pthread.h
4333-rw-r--r-- root root 1570 ./usr/include/pty.h
4334-rw-r--r-- root root 6159 ./usr/include/pwd.h
4335drwxr-xr-x root root 4096 ./usr/include/pycairo
4336-rw-r--r-- root root 9152 ./usr/include/pycairo/py3cairo.h
4337drwxr-xr-x root root 4096 ./usr/include/pygobject-3.0
4338-rw-r--r-- root root 24983 ./usr/include/pygobject-3.0/pygobject.h
4339drwxr-xr-x root root 4096 ./usr/include/python3.8
4340-rw-r--r-- root root 30286 ./usr/include/python3.8/abstract.h
4341-rw-r--r-- root root 1229 ./usr/include/python3.8/asdl.h
4342-rw-r--r-- root root 948 ./usr/include/python3.8/ast.h
4343-rw-r--r-- root root 468 ./usr/include/python3.8/bitset.h
4344-rw-r--r-- root root 264 ./usr/include/python3.8/bltinmodule.h
4345-rw-r--r-- root root 886 ./usr/include/python3.8/boolobject.h
4346-rw-r--r-- root root 2114 ./usr/include/python3.8/bytearrayobject.h
4347-rw-r--r-- root root 3301 ./usr/include/python3.8/bytes_methods.h
4348-rw-r--r-- root root 8493 ./usr/include/python3.8/bytesobject.h
4349-rw-r--r-- root root 713 ./usr/include/python3.8/cellobject.h
4350-rw-r--r-- root root 8366 ./usr/include/python3.8/ceval.h
4351-rw-r--r-- root root 1710 ./usr/include/python3.8/classobject.h
4352-rw-r--r-- root root 6793 ./usr/include/python3.8/codecs.h
4353-rw-r--r-- root root 7178 ./usr/include/python3.8/code.h
4354-rw-r--r-- root root 3582 ./usr/include/python3.8/compile.h
4355-rw-r--r-- root root 1807 ./usr/include/python3.8/complexobject.h
4356-rw-r--r-- root root 2014 ./usr/include/python3.8/context.h
4357drwxr-xr-x root root 4096 ./usr/include/python3.8/cpython
4358-rw-r--r-- root root 12295 ./usr/include/python3.8/cpython/abstract.h
4359-rw-r--r-- root root 3845 ./usr/include/python3.8/cpython/dictobject.h
4360-rw-r--r-- root root 951 ./usr/include/python3.8/cpython/fileobject.h
4361-rw-r--r-- root root 16028 ./usr/include/python3.8/cpython/initconfig.h
4362-rw-r--r-- root root 456 ./usr/include/python3.8/cpython/interpreteridobject.h
4363-rw-r--r-- root root 15691 ./usr/include/python3.8/cpython/object.h
4364-rw-r--r-- root root 3600 ./usr/include/python3.8/cpython/objimpl.h
4365-rw-r--r-- root root 4607 ./usr/include/python3.8/cpython/pyerrors.h
4366-rw-r--r-- root root 2263 ./usr/include/python3.8/cpython/pylifecycle.h
4367-rw-r--r-- root root 3511 ./usr/include/python3.8/cpython/pymem.h
4368-rw-r--r-- root root 9810 ./usr/include/python3.8/cpython/pystate.h
4369-rw-r--r-- root root 547 ./usr/include/python3.8/cpython/sysmodule.h
4370-rw-r--r-- root root 473 ./usr/include/python3.8/cpython/traceback.h
4371-rw-r--r-- root root 1036 ./usr/include/python3.8/cpython/tupleobject.h
4372-rw-r--r-- root root 46299 ./usr/include/python3.8/cpython/unicodeobject.h
4373-rw-r--r-- root root 9260 ./usr/include/python3.8/datetime.h
4374-rw-r--r-- root root 3019 ./usr/include/python3.8/descrobject.h
4375-rw-r--r-- root root 3716 ./usr/include/python3.8/dictobject.h
4376-rw-r--r-- root root 458 ./usr/include/python3.8/dtoa.h
4377-rw-r--r-- root root 22469 ./usr/include/python3.8/dynamic_annotations.h
4378-rw-r--r-- root root 253 ./usr/include/python3.8/enumobject.h
4379-rw-r--r-- root root 1695 ./usr/include/python3.8/errcode.h
4380-rw-r--r-- root root 1209 ./usr/include/python3.8/eval.h
4381-rw-r--r-- root root 1342 ./usr/include/python3.8/fileobject.h
4382-rw-r--r-- root root 4352 ./usr/include/python3.8/fileutils.h
4383-rw-r--r-- root root 4794 ./usr/include/python3.8/floatobject.h
4384-rw-r--r-- root root 3317 ./usr/include/python3.8/frameobject.h
4385-rw-r--r-- root root 4200 ./usr/include/python3.8/funcobject.h
4386-rw-r--r-- root root 3720 ./usr/include/python3.8/genobject.h
4387-rw-r--r-- root root 2118 ./usr/include/python3.8/graminit.h
4388-rw-r--r-- root root 1821 ./usr/include/python3.8/grammar.h
4389-rw-r--r-- root root 4926 ./usr/include/python3.8/import.h
4390drwxr-xr-x root root 4096 ./usr/include/python3.8/internal
4391-rw-r--r-- root root 1126 ./usr/include/python3.8/internal/pycore_accu.h
4392-rw-r--r-- root root 16944 ./usr/include/python3.8/internal/pycore_atomic.h
4393-rw-r--r-- root root 966 ./usr/include/python3.8/internal/pycore_ceval.h
4394-rw-r--r-- root root 542 ./usr/include/python3.8/internal/pycore_code.h
4395-rw-r--r-- root root 2809 ./usr/include/python3.8/internal/pycore_condvar.h
4396-rw-r--r-- root root 779 ./usr/include/python3.8/internal/pycore_context.h
4397-rw-r--r-- root root 1254 ./usr/include/python3.8/internal/pycore_fileutils.h
4398-rw-r--r-- root root 490 ./usr/include/python3.8/internal/pycore_getopt.h
4399-rw-r--r-- root root 1520 ./usr/include/python3.8/internal/pycore_gil.h
4400-rw-r--r-- root root 3128 ./usr/include/python3.8/internal/pycore_hamt.h
4401-rw-r--r-- root root 5168 ./usr/include/python3.8/internal/pycore_initconfig.h
4402-rw-r--r-- root root 2896 ./usr/include/python3.8/internal/pycore_object.h
4403-rw-r--r-- root root 2037 ./usr/include/python3.8/internal/pycore_pathconfig.h
4404-rw-r--r-- root root 1329 ./usr/include/python3.8/internal/pycore_pyerrors.h
4405-rw-r--r-- root root 206 ./usr/include/python3.8/internal/pycore_pyhash.h
4406-rw-r--r-- root root 3758 ./usr/include/python3.8/internal/pycore_pylifecycle.h
4407-rw-r--r-- root root 8217 ./usr/include/python3.8/internal/pycore_pymem.h
4408-rw-r--r-- root root 9494 ./usr/include/python3.8/internal/pycore_pystate.h
4409-rw-r--r-- root root 3076 ./usr/include/python3.8/internal/pycore_traceback.h
4410-rw-r--r-- root root 418 ./usr/include/python3.8/internal/pycore_tupleobject.h
4411-rw-r--r-- root root 591 ./usr/include/python3.8/internal/pycore_warnings.h
4412-rw-r--r-- root root 334 ./usr/include/python3.8/interpreteridobject.h
4413-rw-r--r-- root root 861 ./usr/include/python3.8/intrcheck.h
4414-rw-r--r-- root root 567 ./usr/include/python3.8/iterobject.h
4415-rw-r--r-- root root 2927 ./usr/include/python3.8/listobject.h
4416-rw-r--r-- root root 3799 ./usr/include/python3.8/longintrepr.h
4417-rw-r--r-- root root 9520 ./usr/include/python3.8/longobject.h
4418-rw-r--r-- root root 803 ./usr/include/python3.8/marshal.h
4419-rw-r--r-- root root 2765 ./usr/include/python3.8/memoryobject.h
4420-rw-r--r-- root root 4406 ./usr/include/python3.8/methodobject.h
4421-rw-r--r-- root root 9591 ./usr/include/python3.8/modsupport.h
4422-rw-r--r-- root root 2362 ./usr/include/python3.8/moduleobject.h
4423-rw-r--r-- root root 349 ./usr/include/python3.8/namespaceobject.h
4424-rw-r--r-- root root 1328 ./usr/include/python3.8/node.h
4425-rw-r--r-- root root 29599 ./usr/include/python3.8/object.h
4426-rw-r--r-- root root 10537 ./usr/include/python3.8/objimpl.h
4427-rw-r--r-- root root 1300 ./usr/include/python3.8/odictobject.h
4428-rw-r--r-- root root 5164 ./usr/include/python3.8/opcode.h
4429-rw-r--r-- root root 737 ./usr/include/python3.8/osdefs.h
4430-rw-r--r-- root root 291 ./usr/include/python3.8/osmodule.h
4431-rw-r--r-- root root 2958 ./usr/include/python3.8/parsetok.h
4432-rw-r--r-- root root 1297 ./usr/include/python3.8/patchlevel.h
4433-rw-r--r-- root root 847 ./usr/include/python3.8/picklebufobject.h
4434-rw-r--r-- root root 2744 ./usr/include/python3.8/pyarena.h
4435-rw-r--r-- root root 1726 ./usr/include/python3.8/pycapsule.h
4436-rw-r--r-- root root 47511 ./usr/include/python3.8/pyconfig-64.h
4437-rw-r--r-- root root 560 ./usr/include/python3.8/pyconfig.h
4438-rw-r--r-- root root 1320 ./usr/include/python3.8/pyctype.h
4439-rw-r--r-- root root 2477 ./usr/include/python3.8/py_curses.h
4440-rw-r--r-- root root 1214 ./usr/include/python3.8/pydebug.h
4441-rw-r--r-- root root 2413 ./usr/include/python3.8/pydtrace.h
4442-rw-r--r-- root root 12786 ./usr/include/python3.8/pyerrors.h
4443-rw-r--r-- root root 2450 ./usr/include/python3.8/pyexpat.h
4444-rw-r--r-- root root 341 ./usr/include/python3.8/pyfpe.h
4445-rw-r--r-- root root 4140 ./usr/include/python3.8/pyhash.h
4446-rw-r--r-- root root 2081 ./usr/include/python3.8/pylifecycle.h
4447-rw-r--r-- root root 2989 ./usr/include/python3.8/pymacconfig.h
4448-rw-r--r-- root root 3778 ./usr/include/python3.8/pymacro.h
4449-rw-r--r-- root root 8312 ./usr/include/python3.8/pymath.h
4450-rw-r--r-- root root 5406 ./usr/include/python3.8/pymem.h
4451-rw-r--r-- root root 30221 ./usr/include/python3.8/pyport.h
4452-rw-r--r-- root root 4686 ./usr/include/python3.8/pystate.h
4453-rw-r--r-- root root 436 ./usr/include/python3.8/pystrcmp.h
4454-rw-r--r-- root root 849 ./usr/include/python3.8/pystrhex.h
4455-rw-r--r-- root root 1483 ./usr/include/python3.8/pystrtod.h
4456-rw-r--r-- root root 26491 ./usr/include/python3.8/Python-ast.h
4457-rw-r--r-- root root 3615 ./usr/include/python3.8/Python.h
4458-rw-r--r-- root root 7688 ./usr/include/python3.8/pythonrun.h
4459-rw-r--r-- root root 5660 ./usr/include/python3.8/pythread.h
4460-rw-r--r-- root root 8926 ./usr/include/python3.8/pytime.h
4461-rw-r--r-- root root 629 ./usr/include/python3.8/rangeobject.h
4462-rw-r--r-- root root 3362 ./usr/include/python3.8/setobject.h
4463-rw-r--r-- root root 2517 ./usr/include/python3.8/sliceobject.h
4464-rw-r--r-- root root 2030 ./usr/include/python3.8/structmember.h
4465-rw-r--r-- root root 1377 ./usr/include/python3.8/structseq.h
4466-rw-r--r-- root root 5308 ./usr/include/python3.8/symtable.h
4467-rw-r--r-- root root 1242 ./usr/include/python3.8/sysmodule.h
4468-rw-r--r-- root root 2429 ./usr/include/python3.8/token.h
4469-rw-r--r-- root root 601 ./usr/include/python3.8/traceback.h
4470-rw-r--r-- root root 1114 ./usr/include/python3.8/tracemalloc.h
4471-rw-r--r-- root root 1661 ./usr/include/python3.8/tupleobject.h
4472-rw-r--r-- root root 2253 ./usr/include/python3.8/typeslots.h
4473-rw-r--r-- root root 1056 ./usr/include/python3.8/ucnhash.h
4474-rw-r--r-- root root 35732 ./usr/include/python3.8/unicodeobject.h
4475-rw-r--r-- root root 1776 ./usr/include/python3.8/warnings.h
4476-rw-r--r-- root root 2866 ./usr/include/python3.8/weakrefobject.h
4477drwxr-xr-x root root 4096 ./usr/include/rdma
4478-rw-r--r-- root root 3291 ./usr/include/rdma/bnxt_re-abi.h
4479-rw-r--r-- root root 2468 ./usr/include/rdma/cxgb3-abi.h
4480-rw-r--r-- root root 3122 ./usr/include/rdma/cxgb4-abi.h
4481-rw-r--r-- root root 2141 ./usr/include/rdma/efa-abi.h
4482drwxr-xr-x root root 4096 ./usr/include/rdma/hfi
4483-rw-r--r-- root root 6618 ./usr/include/rdma/hfi/hfi1_ioctl.h
4484-rw-r--r-- root root 9225 ./usr/include/rdma/hfi/hfi1_user.h
4485-rw-r--r-- root root 2388 ./usr/include/rdma/hns-abi.h
4486-rw-r--r-- root root 3030 ./usr/include/rdma/i40iw-abi.h
4487-rw-r--r-- root root 6046 ./usr/include/rdma/ib_user_ioctl_cmds.h
4488-rw-r--r-- root root 5655 ./usr/include/rdma/ib_user_ioctl_verbs.h
4489-rw-r--r-- root root 8531 ./usr/include/rdma/ib_user_mad.h
4490-rw-r--r-- root root 2305 ./usr/include/rdma/ib_user_sa.h
4491-rw-r--r-- root root 26750 ./usr/include/rdma/ib_user_verbs.h
4492-rw-r--r-- root root 5117 ./usr/include/rdma/mlx4-abi.h
4493-rw-r--r-- root root 12968 ./usr/include/rdma/mlx5-abi.h
4494-rw-r--r-- root root 7368 ./usr/include/rdma/mlx5_user_ioctl_cmds.h
4495-rw-r--r-- root root 2624 ./usr/include/rdma/mlx5_user_ioctl_verbs.h
4496-rw-r--r-- root root 3055 ./usr/include/rdma/mthca-abi.h
4497-rw-r--r-- root root 3487 ./usr/include/rdma/nes-abi.h
4498-rw-r--r-- root root 4116 ./usr/include/rdma/ocrdma-abi.h
4499-rw-r--r-- root root 3160 ./usr/include/rdma/qedr-abi.h
4500-rw-r--r-- root root 14231 ./usr/include/rdma/rdma_netlink.h
4501-rw-r--r-- root root 6903 ./usr/include/rdma/rdma_user_cm.h
4502-rw-r--r-- root root 3008 ./usr/include/rdma/rdma_user_ioctl_cmds.h
4503-rw-r--r-- root root 3749 ./usr/include/rdma/rdma_user_ioctl.h
4504-rw-r--r-- root root 3839 ./usr/include/rdma/rdma_user_rxe.h
4505-rw-r--r-- root root 1771 ./usr/include/rdma/rvt-abi.h
4506-rw-r--r-- root root 3430 ./usr/include/rdma/siw-abi.h
4507-rw-r--r-- root root 7807 ./usr/include/rdma/vmw_pvrdma-abi.h
4508drwxr-xr-x root root 4096 ./usr/include/readline
4509-rw-r--r-- root root 4697 ./usr/include/readline/chardefs.h
4510-rw-r--r-- root root 10779 ./usr/include/readline/history.h
4511-rw-r--r-- root root 3260 ./usr/include/readline/keymaps.h
4512-rw-r--r-- root root 39338 ./usr/include/readline/readline.h
4513-rw-r--r-- root root 2829 ./usr/include/readline/rlconf.h
4514-rw-r--r-- root root 1835 ./usr/include/readline/rlstdc.h
4515-rw-r--r-- root root 3193 ./usr/include/readline/rltypedefs.h
4516-rw-r--r-- root root 3046 ./usr/include/readline/tilde.h
4517-rw-r--r-- root root 963 ./usr/include/re_comp.h
4518-rw-r--r-- root root 24715 ./usr/include/regex.h
4519-rw-r--r-- root root 1448 ./usr/include/regexp.h
4520-rw-r--r-- root root 11873 ./usr/include/resolv.h
4521drwxr-xr-x root root 4096 ./usr/include/rpc
4522-rw-r--r-- root root 2897 ./usr/include/rpc/netdb.h
4523drwxr-xr-x root root 4096 ./usr/include/rpcsvc
4524-rw-r--r-- root root 2675 ./usr/include/rpcsvc/nis_callback.h
4525-rw-r--r-- root root 2178 ./usr/include/rpcsvc/nis_callback.x
4526-rw-r--r-- root root 15879 ./usr/include/rpcsvc/nis.h
4527-rw-r--r-- root root 12340 ./usr/include/rpcsvc/nislib.h
4528-rw-r--r-- root root 13090 ./usr/include/rpcsvc/nis_object.x
4529-rw-r--r-- root root 5370 ./usr/include/rpcsvc/nis_tags.h
4530-rw-r--r-- root root 16802 ./usr/include/rpcsvc/nis.x
4531-rw-r--r-- root root 3481 ./usr/include/rpcsvc/ypclnt.h
4532-rw-r--r-- root root 7964 ./usr/include/rpcsvc/yp.h
4533-rw-r--r-- root root 913 ./usr/include/rpcsvc/yppasswd.h
4534-rw-r--r-- root root 2286 ./usr/include/rpcsvc/yppasswd.x
4535-rw-r--r-- root root 14920 ./usr/include/rpcsvc/yp_prot.h
4536-rw-r--r-- root root 3027 ./usr/include/rpcsvc/ypupd.h
4537-rw-r--r-- root root 6981 ./usr/include/rpcsvc/yp.x
4538-rw-r--r-- root root 4733 ./usr/include/sched.h
4539drwxr-xr-x root root 4096 ./usr/include/scsi
4540-rw-r--r-- root root 10168 ./usr/include/scsi/cxlflash_ioctl.h
4541drwxr-xr-x root root 4096 ./usr/include/scsi/fc
4542-rw-r--r-- root root 26902 ./usr/include/scsi/fc/fc_els.h
4543-rw-r--r-- root root 11703 ./usr/include/scsi/fc/fc_fs.h
4544-rw-r--r-- root root 2231 ./usr/include/scsi/fc/fc_gs.h
4545-rw-r--r-- root root 4317 ./usr/include/scsi/fc/fc_ns.h
4546-rw-r--r-- root root 8027 ./usr/include/scsi/scsi_bsg_fc.h
4547-rw-r--r-- root root 2795 ./usr/include/scsi/scsi_bsg_ufs.h
4548-rw-r--r-- root root 6970 ./usr/include/scsi/scsi.h
4549-rw-r--r-- root root 1316 ./usr/include/scsi/scsi_ioctl.h
4550-rw-r--r-- root root 1264 ./usr/include/scsi/scsi_netlink_fc.h
4551-rw-r--r-- root root 2906 ./usr/include/scsi/scsi_netlink.h
4552-rw-r--r-- root root 11662 ./usr/include/scsi/sg.h
4553-rw-r--r-- root root 5450 ./usr/include/search.h
4554-rw-r--r-- root root 2735 ./usr/include/semaphore.h
4555-rw-r--r-- root root 3670 ./usr/include/setjmp.h
4556-rw-r--r-- root root 1344 ./usr/include/sgtty.h
4557-rw-r--r-- root root 5472 ./usr/include/shadow.h
4558-rw-r--r-- root root 12309 ./usr/include/signal.h
4559drwxr-xr-x root root 4096 ./usr/include/sound
4560-rw-r--r-- root root 21847 ./usr/include/sound/asequencer.h
4561-rw-r--r-- root root 22222 ./usr/include/sound/asoc.h
4562-rw-r--r-- root root 4377 ./usr/include/sound/asound_fm.h
4563-rw-r--r-- root root 46564 ./usr/include/sound/asound.h
4564-rw-r--r-- root root 6743 ./usr/include/sound/compress_offload.h
4565-rw-r--r-- root root 16992 ./usr/include/sound/compress_params.h
4566-rw-r--r-- root root 17240 ./usr/include/sound/emu10k1.h
4567-rw-r--r-- root root 3245 ./usr/include/sound/firewire.h
4568-rw-r--r-- root root 3140 ./usr/include/sound/hdsp.h
4569-rw-r--r-- root root 5486 ./usr/include/sound/hdspm.h
4570-rw-r--r-- root root 4304 ./usr/include/sound/sb16_csp.h
4571-rw-r--r-- root root 7494 ./usr/include/sound/sfnt_info.h
4572-rw-r--r-- root root 5195 ./usr/include/sound/skl-tplg-interface.h
4573-rw-r--r-- root root 12191 ./usr/include/sound/snd_sst_tokens.h
4574drwxr-xr-x root root 4096 ./usr/include/sound/sof
4575-rw-r--r-- root root 2036 ./usr/include/sound/sof/abi.h
4576-rw-r--r-- root root 2267 ./usr/include/sound/sof/fw.h
4577-rw-r--r-- root root 922 ./usr/include/sound/sof/header.h
4578-rw-r--r-- root root 3267 ./usr/include/sound/sof/tokens.h
4579-rw-r--r-- root root 4601 ./usr/include/sound/tlv.h
4580-rw-r--r-- root root 1939 ./usr/include/sound/usb_stream.h
4581-rw-r--r-- root root 7758 ./usr/include/spawn.h
4582-rw-r--r-- root root 34802 ./usr/include/sqlite3ext.h
4583-rw-r--r-- root root 576161 ./usr/include/sqlite3.h
4584drwxr-xr-x root root 4096 ./usr/include/ss
4585-rw-r--r-- root root 1193 ./usr/include/ss/ss_err.h
4586-rw-r--r-- root root 3166 ./usr/include/ss/ss.h
4587-rw-r--r-- root root 264 ./usr/include/stab.h
4588-rw-r--r-- root root 2290 ./usr/include/stdc-predef.h
4589-rw-r--r-- root root 8474 ./usr/include/stdint.h
4590-rw-r--r-- root root 2800 ./usr/include/stdio_ext.h
4591-rw-r--r-- root root 29950 ./usr/include/stdio.h
4592-rw-r--r-- root root 35835 ./usr/include/stdlib.h
4593-rw-r--r-- root root 17660 ./usr/include/string.h
4594-rw-r--r-- root root 4753 ./usr/include/strings.h
4595-rw-r--r-- root root 2191 ./usr/include/symcat.h
4596drwxr-xr-x root root 4096 ./usr/include/sys
4597-rw-r--r-- root root 3302 ./usr/include/sys/acct.h
4598-rw-r--r-- root root 3700 ./usr/include/sys/acl.h
4599-rw-r--r-- root root 1260 ./usr/include/sys/auxv.h
4600-rw-r--r-- root root 86 ./usr/include/sys/bitypes.h
4601-rw-r--r-- root root 25 ./usr/include/syscall.h
4602-rw-r--r-- root root 6996 ./usr/include/sys/capability.h
4603-rw-r--r-- root root 18308 ./usr/include/sys/cdefs.h
4604-rw-r--r-- root root 3576 ./usr/include/sys/debugreg.h
4605-rw-r--r-- root root 922 ./usr/include/sys/dir.h
4606-rw-r--r-- root root 1024 ./usr/include/sys/elf.h
4607-rw-r--r-- root root 4411 ./usr/include/sys/epoll.h
4608-rw-r--r-- root root 19 ./usr/include/sys/errno.h
4609-rw-r--r-- root root 1400 ./usr/include/sys/eventfd.h
4610-rw-r--r-- root root 5232 ./usr/include/sysexits.h
4611-rw-r--r-- root root 1292 ./usr/include/sys/fanotify.h
4612-rw-r--r-- root root 19 ./usr/include/sys/fcntl.h
4613-rw-r--r-- root root 1675 ./usr/include/sys/file.h
4614-rw-r--r-- root root 1188 ./usr/include/sys/fsuid.h
4615-rw-r--r-- root root 6210 ./usr/include/sys/gmon.h
4616-rw-r--r-- root root 2636 ./usr/include/sys/gmon_out.h
4617-rw-r--r-- root root 3901 ./usr/include/sys/inotify.h
4618-rw-r--r-- root root 1740 ./usr/include/sys/ioctl.h
4619-rw-r--r-- root root 5086 ./usr/include/sys/io.h
4620-rw-r--r-- root root 1462 ./usr/include/sys/ipc.h
4621-rw-r--r-- root root 1112 ./usr/include/sys/kd.h
4622-rw-r--r-- root root 1204 ./usr/include/sys/klog.h
4623-rw-r--r-- root root 24 ./usr/include/syslog.h
4624-rw-r--r-- root root 5552 ./usr/include/sys/mman.h
4625-rw-r--r-- root root 5612 ./usr/include/sys/mount.h
4626-rw-r--r-- root root 2366 ./usr/include/sys/msg.h
4627-rw-r--r-- root root 11163 ./usr/include/sys/mtio.h
4628-rw-r--r-- root root 3149 ./usr/include/sys/param.h
4629-rw-r--r-- root root 923 ./usr/include/sys/pci.h
4630-rw-r--r-- root root 1127 ./usr/include/sys/perm.h
4631-rw-r--r-- root root 2723 ./usr/include/sys/personality.h
4632-rw-r--r-- root root 2550 ./usr/include/sys/poll.h
4633-rw-r--r-- root root 1059 ./usr/include/sys/prctl.h
4634-rw-r--r-- root root 4338 ./usr/include/sys/procfs.h
4635-rw-r--r-- root root 1959 ./usr/include/sys/profil.h
4636-rw-r--r-- root root 4680 ./usr/include/sys/psx_syscall.h
4637-rw-r--r-- root root 6126 ./usr/include/sys/ptrace.h
4638-rw-r--r-- root root 19539 ./usr/include/sys/queue.h
4639-rw-r--r-- root root 5173 ./usr/include/sys/quota.h
4640-rw-r--r-- root root 1444 ./usr/include/sys/random.h
4641-rw-r--r-- root root 1182 ./usr/include/sys/raw.h
4642-rw-r--r-- root root 1633 ./usr/include/sys/reboot.h
4643-rw-r--r-- root root 1827 ./usr/include/sys/reg.h
4644-rw-r--r-- root root 3646 ./usr/include/sys/resource.h
4645-rw-r--r-- root root 4141 ./usr/include/sys/select.h
4646-rw-r--r-- root root 2037 ./usr/include/sys/sem.h
4647-rw-r--r-- root root 1806 ./usr/include/sys/sendfile.h
4648-rw-r--r-- root root 1874 ./usr/include/sys/shm.h
4649-rw-r--r-- root root 1714 ./usr/include/sys/signalfd.h
4650-rw-r--r-- root root 20 ./usr/include/sys/signal.h
4651-rw-r--r-- root root 10205 ./usr/include/sys/socket.h
4652-rw-r--r-- root root 141 ./usr/include/sys/socketvar.h
4653-rw-r--r-- root root 29 ./usr/include/sys/soundcard.h
4654-rw-r--r-- root root 2094 ./usr/include/sys/statfs.h
4655-rw-r--r-- root root 16237 ./usr/include/sys/stat.h
4656-rw-r--r-- root root 2820 ./usr/include/sys/statvfs.h
4657-rw-r--r-- root root 1593 ./usr/include/sys/swap.h
4658-rw-r--r-- root root 1256 ./usr/include/sys/syscall.h
4659-rw-r--r-- root root 2105 ./usr/include/sys/sysctl.h
4660-rw-r--r-- root root 1518 ./usr/include/sys/sysinfo.h
4661-rw-r--r-- root root 7702 ./usr/include/sys/syslog.h
4662-rw-r--r-- root root 2103 ./usr/include/sys/sysmacros.h
4663-rw-r--r-- root root 74 ./usr/include/sys/termios.h
4664-rw-r--r-- root root 1420 ./usr/include/sys/timeb.h
4665-rw-r--r-- root root 6754 ./usr/include/sys/time.h
4666-rw-r--r-- root root 1874 ./usr/include/sys/timerfd.h
4667-rw-r--r-- root root 1597 ./usr/include/sys/times.h
4668-rw-r--r-- root root 2206 ./usr/include/sys/timex.h
4669-rw-r--r-- root root 2499 ./usr/include/sys/ttychars.h
4670-rw-r--r-- root root 3568 ./usr/include/sys/ttydefaults.h
4671-rw-r--r-- root root 5713 ./usr/include/sys/types.h
4672-rw-r--r-- root root 5842 ./usr/include/sys/ucontext.h
4673-rw-r--r-- root root 6280 ./usr/include/sys/uio.h
4674-rw-r--r-- root root 1453 ./usr/include/sys/un.h
4675-rw-r--r-- root root 20 ./usr/include/sys/unistd.h
4676-rw-r--r-- root root 5208 ./usr/include/sys/user.h
4677-rw-r--r-- root root 2481 ./usr/include/sys/utsname.h
4678-rw-r--r-- root root 161 ./usr/include/sys/vfs.h
4679-rw-r--r-- root root 1880 ./usr/include/sys/vlimit.h
4680-rw-r--r-- root root 1199 ./usr/include/sys/vm86.h
4681-rw-r--r-- root root 22 ./usr/include/sys/vt.h
4682-rw-r--r-- root root 2463 ./usr/include/sys/vtimes.h
4683-rw-r--r-- root root 5605 ./usr/include/sys/wait.h
4684-rw-r--r-- root root 4275 ./usr/include/sys/xattr.h
4685-rw-r--r-- root root 3786 ./usr/include/tar.h
4686-rw-r--r-- root root 9130 ./usr/include/tcpd.h
4687-rw-r--r-- root root 3471 ./usr/include/termcap.h
4688-rw-r--r-- root root 9096 ./usr/include/term_entry.h
4689-rw-r--r-- root root 40447 ./usr/include/term.h
4690-rw-r--r-- root root 214 ./usr/include/termio.h
4691-rw-r--r-- root root 3599 ./usr/include/termios.h
4692-rw-r--r-- root root 37419 ./usr/include/tgmath.h
4693-rw-r--r-- root root 16024 ./usr/include/thread_db.h
4694-rw-r--r-- root root 6661 ./usr/include/threads.h
4695-rw-r--r-- root root 14830 ./usr/include/tic.h
4696-rw-r--r-- root root 10276 ./usr/include/time.h
4697drwxr-xr-x root root 4096 ./usr/include/tirpc
4698-rw-r--r-- root root 2195 ./usr/include/tirpc/netconfig.h
4699drwxr-xr-x root root 4096 ./usr/include/tirpc/rpc
4700-rw-r--r-- root root 4143 ./usr/include/tirpc/rpc/auth_des.h
4701-rw-r--r-- root root 11085 ./usr/include/tirpc/rpc/auth.h
4702-rw-r--r-- root root 3009 ./usr/include/tirpc/rpc/auth_unix.h
4703-rw-r--r-- root root 17067 ./usr/include/tirpc/rpc/clnt.h
4704-rw-r--r-- root root 3904 ./usr/include/tirpc/rpc/clnt_soc.h
4705-rw-r--r-- root root 2202 ./usr/include/tirpc/rpc/clnt_stat.h
4706-rw-r--r-- root root 3706 ./usr/include/tirpc/rpc/des_crypt.h
4707-rw-r--r-- root root 3045 ./usr/include/tirpc/rpc/des.h
4708-rw-r--r-- root root 8021 ./usr/include/tirpc/rpc/key_prot.h
4709-rw-r--r-- root root 2431 ./usr/include/tirpc/rpc/nettype.h
4710-rw-r--r-- root root 3582 ./usr/include/tirpc/rpc/pmap_clnt.h
4711-rw-r--r-- root root 4064 ./usr/include/tirpc/rpc/pmap_prot.h
4712-rw-r--r-- root root 2450 ./usr/include/tirpc/rpc/pmap_rmt.h
4713-rw-r--r-- root root 2117 ./usr/include/tirpc/rpc/raw.h
4714-rw-r--r-- root root 3496 ./usr/include/tirpc/rpc/rpcb_clnt.h
4715-rw-r--r-- root root 25776 ./usr/include/tirpc/rpc/rpcb_prot.h
4716-rw-r--r-- root root 14673 ./usr/include/tirpc/rpc/rpcb_prot.x
4717-rw-r--r-- root root 3102 ./usr/include/tirpc/rpc/rpc_com.h
4718-rw-r--r-- root root 2712 ./usr/include/tirpc/rpc/rpcent.h
4719-rw-r--r-- root root 4130 ./usr/include/tirpc/rpc/rpc.h
4720-rw-r--r-- root root 5340 ./usr/include/tirpc/rpc/rpc_msg.h
4721drwxr-xr-x root root 4096 ./usr/include/tirpc/rpcsvc
4722-rw-r--r-- root root 3041 ./usr/include/tirpc/rpc/svc_auth.h
4723-rw-r--r-- root root 2414 ./usr/include/tirpc/rpcsvc/crypt.h
4724-rw-r--r-- root root 3929 ./usr/include/tirpc/rpcsvc/crypt.x
4725-rw-r--r-- root root 2462 ./usr/include/tirpc/rpc/svc_dg.h
4726-rw-r--r-- root root 14589 ./usr/include/tirpc/rpc/svc.h
4727-rw-r--r-- root root 1912 ./usr/include/tirpc/rpc/svc_mt.h
4728-rw-r--r-- root root 3749 ./usr/include/tirpc/rpc/svc_soc.h
4729-rw-r--r-- root root 3756 ./usr/include/tirpc/rpc/types.h
4730-rw-r--r-- root root 13372 ./usr/include/tirpc/rpc/xdr.h
4731-rw-r--r-- root root 2494 ./usr/include/ttyent.h
4732-rw-r--r-- root root 2002 ./usr/include/uchar.h
4733-rw-r--r-- root root 2037 ./usr/include/ucontext.h
4734-rw-r--r-- root root 8998 ./usr/include/udev.h
4735-rw-r--r-- root root 1584 ./usr/include/ulimit.h
4736-rw-r--r-- root root 3177 ./usr/include/unctrl.h
4737-rw-r--r-- root root 42804 ./usr/include/unistd.h
4738-rw-r--r-- root root 1502 ./usr/include/utime.h
4739-rw-r--r-- root root 3223 ./usr/include/utmp.h
4740-rw-r--r-- root root 4100 ./usr/include/utmpx.h
4741drwxr-xr-x root root 4096 ./usr/include/uuid
4742-rw-r--r-- root root 3910 ./usr/include/uuid/uuid.h
4743-rw-r--r-- root root 1956 ./usr/include/values.h
4744drwxr-xr-x root root 4096 ./usr/include/video
4745-rw-r--r-- root root 213 ./usr/include/video/edid.h
4746-rw-r--r-- root root 7643 ./usr/include/video/sisfb.h
4747-rw-r--r-- root root 1078 ./usr/include/video/uvesafb.h
4748-rw-r--r-- root root 22 ./usr/include/wait.h
4749-rw-r--r-- root root 8755 ./usr/include/wayland-client-core.h
4750-rw-r--r-- root root 1573 ./usr/include/wayland-client.h
4751-rw-r--r-- root root 184232 ./usr/include/wayland-client-protocol.h
4752-rw-r--r-- root root 2260 ./usr/include/wayland-cursor.h
4753-rw-r--r-- root root 1848 ./usr/include/wayland-egl-backend.h
4754-rw-r--r-- root root 1788 ./usr/include/wayland-egl-core.h
4755-rw-r--r-- root root 1313 ./usr/include/wayland-egl.h
4756-rw-r--r-- root root 19021 ./usr/include/wayland-server-core.h
4757-rw-r--r-- root root 3237 ./usr/include/wayland-server.h
4758-rw-r--r-- root root 144281 ./usr/include/wayland-server-protocol.h
4759-rw-r--r-- root root 24118 ./usr/include/wayland-util.h
4760-rw-r--r-- root root 1354 ./usr/include/wayland-version.h
4761-rw-r--r-- root root 31111 ./usr/include/wchar.h
4762-rw-r--r-- root root 5549 ./usr/include/wctype.h
4763-rw-r--r-- root root 2502 ./usr/include/wordexp.h
4764drwxr-xr-x root root 4096 ./usr/include/X11
4765-rw-r--r-- root root 2293 ./usr/include/X11/ap_keysym.h
4766-rw-r--r-- root root 3118 ./usr/include/X11/cursorfont.h
4767-rw-r--r-- root root 2815 ./usr/include/X11/DECkeysym.h
4768drwxr-xr-x root root 4096 ./usr/include/X11/dri
4769-rw-r--r-- root root 2445 ./usr/include/X11/dri/xf86dri.h
4770-rw-r--r-- root root 9669 ./usr/include/X11/dri/xf86driproto.h
4771-rw-r--r-- root root 174 ./usr/include/X11/dri/xf86dristr.h
4772drwxr-xr-x root root 4096 ./usr/include/X11/extensions
4773-rw-r--r-- root root 1705 ./usr/include/X11/extensions/ag.h
4774-rw-r--r-- root root 5005 ./usr/include/X11/extensions/agproto.h
4775-rw-r--r-- root root 2900 ./usr/include/X11/extensions/applewmconst.h
4776-rw-r--r-- root root 8098 ./usr/include/X11/extensions/applewmproto.h
4777-rw-r--r-- root root 1909 ./usr/include/X11/extensions/bigreqsproto.h
4778-rw-r--r-- root root 187 ./usr/include/X11/extensions/bigreqstr.h
4779-rw-r--r-- root root 3130 ./usr/include/X11/extensions/composite.h
4780-rw-r--r-- root root 5462 ./usr/include/X11/extensions/compositeproto.h
4781-rw-r--r-- root root 1353 ./usr/include/X11/extensions/cup.h
4782-rw-r--r-- root root 3065 ./usr/include/X11/extensions/cupproto.h
4783-rw-r--r-- root root 3615 ./usr/include/X11/extensions/damageproto.h
4784-rw-r--r-- root root 1893 ./usr/include/X11/extensions/damagewire.h
4785-rw-r--r-- root root 2159 ./usr/include/X11/extensions/dbe.h
4786-rw-r--r-- root root 7343 ./usr/include/X11/extensions/dbeproto.h
4787-rw-r--r-- root root 2373 ./usr/include/X11/extensions/dmx.h
4788-rw-r--r-- root root 13343 ./usr/include/X11/extensions/dmxproto.h
4789-rw-r--r-- root root 1778 ./usr/include/X11/extensions/dpmsconst.h
4790-rw-r--r-- root root 2161 ./usr/include/X11/extensions/dpms.h
4791-rw-r--r-- root root 5288 ./usr/include/X11/extensions/dpmsproto.h
4792-rw-r--r-- root root 8318 ./usr/include/X11/extensions/dri2proto.h
4793-rw-r--r-- root root 2468 ./usr/include/X11/extensions/dri2tokens.h
4794-rw-r--r-- root root 6129 ./usr/include/X11/extensions/dri3proto.h
4795-rw-r--r-- root root 1563 ./usr/include/X11/extensions/EVI.h
4796-rw-r--r-- root root 3006 ./usr/include/X11/extensions/EVIproto.h
4797-rw-r--r-- root root 6096 ./usr/include/X11/extensions/extutil.h
4798-rw-r--r-- root root 1782 ./usr/include/X11/extensions/ge.h
4799-rw-r--r-- root root 2351 ./usr/include/X11/extensions/geproto.h
4800-rw-r--r-- root root 2236 ./usr/include/X11/extensions/lbx.h
4801-rw-r--r-- root root 24782 ./usr/include/X11/extensions/lbxproto.h
4802-rw-r--r-- root root 1509 ./usr/include/X11/extensions/mitmiscconst.h
4803-rw-r--r-- root root 1741 ./usr/include/X11/extensions/MITMisc.h
4804-rw-r--r-- root root 2229 ./usr/include/X11/extensions/mitmiscproto.h
4805-rw-r--r-- root root 2575 ./usr/include/X11/extensions/multibufconst.h
4806-rw-r--r-- root root 5835 ./usr/include/X11/extensions/multibuf.h
4807-rw-r--r-- root root 8600 ./usr/include/X11/extensions/multibufproto.h
4808-rw-r--r-- root root 5473 ./usr/include/X11/extensions/panoramiXproto.h
4809-rw-r--r-- root root 5409 ./usr/include/X11/extensions/presentproto.h
4810-rw-r--r-- root root 3597 ./usr/include/X11/extensions/presenttokens.h
4811-rw-r--r-- root root 6909 ./usr/include/X11/extensions/randr.h
4812-rw-r--r-- root root 25751 ./usr/include/X11/extensions/randrproto.h
4813-rw-r--r-- root root 2064 ./usr/include/X11/extensions/recordconst.h
4814-rw-r--r-- root root 7634 ./usr/include/X11/extensions/recordproto.h
4815-rw-r--r-- root root 258 ./usr/include/X11/extensions/recordstr.h
4816-rw-r--r-- root root 6933 ./usr/include/X11/extensions/render.h
4817-rw-r--r-- root root 13218 ./usr/include/X11/extensions/renderproto.h
4818-rw-r--r-- root root 1900 ./usr/include/X11/extensions/saver.h
4819-rw-r--r-- root root 5132 ./usr/include/X11/extensions/saverproto.h
4820-rw-r--r-- root root 2141 ./usr/include/X11/extensions/secur.h
4821-rw-r--r-- root root 2457 ./usr/include/X11/extensions/security.h
4822-rw-r--r-- root root 3177 ./usr/include/X11/extensions/securproto.h
4823-rw-r--r-- root root 1878 ./usr/include/X11/extensions/shapeconst.h
4824-rw-r--r-- root root 4133 ./usr/include/X11/extensions/shape.h
4825-rw-r--r-- root root 6730 ./usr/include/X11/extensions/shapeproto.h
4826-rw-r--r-- root root 252 ./usr/include/X11/extensions/shapestr.h
4827-rw-r--r-- root root 1645 ./usr/include/X11/extensions/shm.h
4828-rw-r--r-- root root 6045 ./usr/include/X11/extensions/shmproto.h
4829-rw-r--r-- root root 2123 ./usr/include/X11/extensions/shmstr.h
4830-rw-r--r-- root root 6750 ./usr/include/X11/extensions/syncconst.h
4831-rw-r--r-- root root 9676 ./usr/include/X11/extensions/sync.h
4832-rw-r--r-- root root 11001 ./usr/include/X11/extensions/syncproto.h
4833-rw-r--r-- root root 5606 ./usr/include/X11/extensions/syncstr.h
4834-rw-r--r-- root root 2377 ./usr/include/X11/extensions/Xag.h
4835-rw-r--r-- root root 3057 ./usr/include/X11/extensions/xcmiscproto.h
4836-rw-r--r-- root root 185 ./usr/include/X11/extensions/xcmiscstr.h
4837-rw-r--r-- root root 1710 ./usr/include/X11/extensions/Xcup.h
4838-rw-r--r-- root root 2307 ./usr/include/X11/extensions/Xdamage.h
4839-rw-r--r-- root root 4170 ./usr/include/X11/extensions/Xdbe.h
4840-rw-r--r-- root root 2130 ./usr/include/X11/extensions/XEVI.h
4841-rw-r--r-- root root 1655 ./usr/include/X11/extensions/Xext.h
4842-rw-r--r-- root root 414 ./usr/include/X11/extensions/xf86bigfont.h
4843-rw-r--r-- root root 2544 ./usr/include/X11/extensions/xf86bigfproto.h
4844-rw-r--r-- root root 191 ./usr/include/X11/extensions/xf86bigfstr.h
4845-rw-r--r-- root root 931 ./usr/include/X11/extensions/xf86dga1const.h
4846-rw-r--r-- root root 4506 ./usr/include/X11/extensions/xf86dga1proto.h
4847-rw-r--r-- root root 191 ./usr/include/X11/extensions/xf86dga1str.h
4848-rw-r--r-- root root 2533 ./usr/include/X11/extensions/xf86dgaconst.h
4849-rw-r--r-- root root 369 ./usr/include/X11/extensions/xf86dga.h
4850-rw-r--r-- root root 7106 ./usr/include/X11/extensions/xf86dgaproto.h
4851-rw-r--r-- root root 188 ./usr/include/X11/extensions/xf86dgastr.h
4852-rw-r--r-- root root 2106 ./usr/include/X11/extensions/xf86vm.h
4853-rw-r--r-- root root 7619 ./usr/include/X11/extensions/xf86vmode.h
4854-rw-r--r-- root root 15700 ./usr/include/X11/extensions/xf86vmproto.h
4855-rw-r--r-- root root 185 ./usr/include/X11/extensions/xf86vmstr.h
4856-rw-r--r-- root root 7588 ./usr/include/X11/extensions/Xfixes.h
4857-rw-r--r-- root root 12752 ./usr/include/X11/extensions/xfixesproto.h
4858-rw-r--r-- root root 5396 ./usr/include/X11/extensions/xfixeswire.h
4859-rw-r--r-- root root 1927 ./usr/include/X11/extensions/Xge.h
4860-rw-r--r-- root root 10542 ./usr/include/X11/extensions/XI2.h
4861-rw-r--r-- root root 37577 ./usr/include/X11/extensions/XI2proto.h
4862-rw-r--r-- root root 9823 ./usr/include/X11/extensions/XI.h
4863-rw-r--r-- root root 41010 ./usr/include/X11/extensions/XIproto.h
4864-rw-r--r-- root root 15808 ./usr/include/X11/extensions/XKBgeom.h
4865-rw-r--r-- root root 28211 ./usr/include/X11/extensions/XKB.h
4866-rw-r--r-- root root 29105 ./usr/include/X11/extensions/XKBproto.h
4867-rw-r--r-- root root 28018 ./usr/include/X11/extensions/XKBsrv.h
4868-rw-r--r-- root root 19630 ./usr/include/X11/extensions/XKBstr.h
4869-rw-r--r-- root root 1601 ./usr/include/X11/extensions/XLbx.h
4870-rw-r--r-- root root 17120 ./usr/include/X11/extensions/Xrandr.h
4871-rw-r--r-- root root 12805 ./usr/include/X11/extensions/Xrender.h
4872-rw-r--r-- root root 5168 ./usr/include/X11/extensions/XResproto.h
4873-rw-r--r-- root root 3735 ./usr/include/X11/extensions/XShm.h
4874-rw-r--r-- root root 1392 ./usr/include/X11/extensions/xtestconst.h
4875-rw-r--r-- root root 5439 ./usr/include/X11/extensions/xtestext1const.h
4876-rw-r--r-- root root 3708 ./usr/include/X11/extensions/xtestext1.h
4877-rw-r--r-- root root 7790 ./usr/include/X11/extensions/xtestext1proto.h
4878-rw-r--r-- root root 3254 ./usr/include/X11/extensions/xtestproto.h
4879-rw-r--r-- root root 3027 ./usr/include/X11/extensions/Xv.h
4880-rw-r--r-- root root 3620 ./usr/include/X11/extensions/XvMC.h
4881-rw-r--r-- root root 4484 ./usr/include/X11/extensions/XvMCproto.h
4882-rw-r--r-- root root 12109 ./usr/include/X11/extensions/Xvproto.h
4883drwxr-xr-x root root 4096 ./usr/include/X11/fonts
4884-rw-r--r-- root root 4253 ./usr/include/X11/fonts/font.h
4885-rw-r--r-- root root 3450 ./usr/include/X11/fonts/fontproto.h
4886-rw-r--r-- root root 9401 ./usr/include/X11/fonts/fontstruct.h
4887-rw-r--r-- root root 4075 ./usr/include/X11/fonts/FS.h
4888-rw-r--r-- root root 3992 ./usr/include/X11/fonts/fsmasks.h
4889-rw-r--r-- root root 19889 ./usr/include/X11/fonts/FSproto.h
4890-rw-r--r-- root root 6046 ./usr/include/X11/HPkeysym.h
4891drwxr-xr-x root root 4096 ./usr/include/X11/ICE
4892-rw-r--r-- root root 7413 ./usr/include/X11/ICE/ICEconn.h
4893-rw-r--r-- root root 2512 ./usr/include/X11/ICE/ICE.h
4894-rw-r--r-- root root 9925 ./usr/include/X11/ICE/ICElib.h
4895-rw-r--r-- root root 8206 ./usr/include/X11/ICE/ICEmsg.h
4896-rw-r--r-- root root 4604 ./usr/include/X11/ICE/ICEproto.h
4897-rw-r--r-- root root 3154 ./usr/include/X11/ICE/ICEutil.h
4898-rw-r--r-- root root 459 ./usr/include/X11/ImUtil.h
4899-rw-r--r-- root root 175248 ./usr/include/X11/keysymdef.h
4900-rw-r--r-- root root 2769 ./usr/include/X11/keysym.h
4901drwxr-xr-x root root 4096 ./usr/include/X11/SM
4902-rw-r--r-- root root 2927 ./usr/include/X11/SM/SM.h
4903-rw-r--r-- root root 11268 ./usr/include/X11/SM/SMlib.h
4904-rw-r--r-- root root 4852 ./usr/include/X11/SM/SMproto.h
4905-rw-r--r-- root root 4022 ./usr/include/X11/Sunkeysym.h
4906-rw-r--r-- root root 4587 ./usr/include/X11/Xalloca.h
4907-rw-r--r-- root root 2951 ./usr/include/X11/Xarch.h
4908-rw-r--r-- root root 2518 ./usr/include/X11/Xatom.h
4909-rw-r--r-- root root 3817 ./usr/include/X11/Xauth.h
4910-rw-r--r-- root root 21346 ./usr/include/X11/Xcms.h
4911-rw-r--r-- root root 2401 ./usr/include/X11/Xdefs.h
4912-rw-r--r-- root root 6371 ./usr/include/X11/Xdmcp.h
4913-rw-r--r-- root root 13612 ./usr/include/X11/XF86keysym.h
4914-rw-r--r-- root root 7863 ./usr/include/X11/Xfuncproto.h
4915-rw-r--r-- root root 2256 ./usr/include/X11/Xfuncs.h
4916-rw-r--r-- root root 20137 ./usr/include/X11/X.h
4917-rw-r--r-- root root 30995 ./usr/include/X11/XKBlib.h
4918-rw-r--r-- root root 1567 ./usr/include/X11/XlibConf.h
4919-rw-r--r-- root root 99532 ./usr/include/X11/Xlib.h
4920-rw-r--r-- root root 40597 ./usr/include/X11/Xlibint.h
4921-rw-r--r-- root root 506 ./usr/include/X11/Xlib-xcb.h
4922-rw-r--r-- root root 1297 ./usr/include/X11/Xlocale.h
4923-rw-r--r-- root root 5122 ./usr/include/X11/Xmd.h
4924-rw-r--r-- root root 3115 ./usr/include/X11/Xosdefs.h
4925-rw-r--r-- root root 4362 ./usr/include/X11/Xos.h
4926-rw-r--r-- root root 33693 ./usr/include/X11/Xos_r.h
4927-rw-r--r-- root root 7743 ./usr/include/X11/Xpoll.h
4928-rw-r--r-- root root 52399 ./usr/include/X11/Xproto.h
4929-rw-r--r-- root root 2743 ./usr/include/X11/Xprotostr.h
4930-rw-r--r-- root root 5949 ./usr/include/X11/Xregion.h
4931-rw-r--r-- root root 10628 ./usr/include/X11/Xresource.h
4932-rw-r--r-- root root 1719 ./usr/include/X11/xshmfence.h
4933-rw-r--r-- root root 12395 ./usr/include/X11/Xthreads.h
4934drwxr-xr-x root root 4096 ./usr/include/X11/Xtrans
4935-rw-r--r-- root root 2876 ./usr/include/X11/Xtrans/transport.c
4936-rw-r--r-- root root 29462 ./usr/include/X11/Xtrans/Xtrans.c
4937-rw-r--r-- root root 8785 ./usr/include/X11/Xtrans/Xtrans.h
4938-rw-r--r-- root root 10158 ./usr/include/X11/Xtrans/Xtransint.h
4939-rw-r--r-- root root 55410 ./usr/include/X11/Xtrans/Xtranslcl.c
4940-rw-r--r-- root root 62655 ./usr/include/X11/Xtrans/Xtranssock.c
4941-rw-r--r-- root root 14937 ./usr/include/X11/Xtrans/Xtransutil.c
4942-rw-r--r-- root root 21353 ./usr/include/X11/Xutil.h
4943-rw-r--r-- root root 1909 ./usr/include/X11/Xw32defs.h
4944-rw-r--r-- root root 3872 ./usr/include/X11/XWDFile.h
4945-rw-r--r-- root root 3283 ./usr/include/X11/Xwindows.h
4946-rw-r--r-- root root 2261 ./usr/include/X11/Xwinsock.h
4947drwxr-xr-x root root 4096 ./usr/include/xcb
4948-rw-r--r-- root root 2407 ./usr/include/xcb/bigreq.h
4949-rw-r--r-- root root 13867 ./usr/include/xcb/composite.h
4950-rw-r--r-- root root 9285 ./usr/include/xcb/damage.h
4951-rw-r--r-- root root 11924 ./usr/include/xcb/dpms.h
4952-rw-r--r-- root root 35759 ./usr/include/xcb/dri2.h
4953-rw-r--r-- root root 24241 ./usr/include/xcb/dri3.h
4954-rw-r--r-- root root 2981 ./usr/include/xcb/ge.h
4955-rw-r--r-- root root 252818 ./usr/include/xcb/glx.h
4956-rw-r--r-- root root 19292 ./usr/include/xcb/present.h
4957-rw-r--r-- root root 139534 ./usr/include/xcb/randr.h
4958-rw-r--r-- root root 27912 ./usr/include/xcb/record.h
4959-rw-r--r-- root root 103726 ./usr/include/xcb/render.h
4960-rw-r--r-- root root 24483 ./usr/include/xcb/res.h
4961-rw-r--r-- root root 16460 ./usr/include/xcb/screensaver.h
4962-rw-r--r-- root root 20806 ./usr/include/xcb/shape.h
4963-rw-r--r-- root root 17261 ./usr/include/xcb/shm.h
4964-rw-r--r-- root root 43756 ./usr/include/xcb/sync.h
4965-rw-r--r-- root root 13990 ./usr/include/xcb/xcbext.h
4966-rw-r--r-- root root 22260 ./usr/include/xcb/xcb.h
4967-rw-r--r-- root root 7137 ./usr/include/xcb/xc_misc.h
4968-rw-r--r-- root root 11593 ./usr/include/xcb/xevie.h
4969-rw-r--r-- root root 28034 ./usr/include/xcb/xf86dri.h
4970-rw-r--r-- root root 58079 ./usr/include/xcb/xfixes.h
4971-rw-r--r-- root root 14955 ./usr/include/xcb/xinerama.h
4972-rw-r--r-- root root 305557 ./usr/include/xcb/xinput.h
4973-rw-r--r-- root root 246448 ./usr/include/xcb/xkb.h
4974-rw-r--r-- root root 57187 ./usr/include/xcb/xprint.h
4975-rw-r--r-- root root 385800 ./usr/include/xcb/xproto.h
4976-rw-r--r-- root root 56622 ./usr/include/xcb/xselinux.h
4977-rw-r--r-- root root 7589 ./usr/include/xcb/xtest.h
4978-rw-r--r-- root root 57788 ./usr/include/xcb/xv.h
4979-rw-r--r-- root root 24530 ./usr/include/xcb/xvmc.h
4980drwxr-xr-x root root 4096 ./usr/include/xen
4981-rw-r--r-- root root 3553 ./usr/include/xen/evtchn.h
4982-rw-r--r-- root root 2619 ./usr/include/xen/gntalloc.h
4983-rw-r--r-- root root 10647 ./usr/include/xen/gntdev.h
4984-rw-r--r-- root root 4206 ./usr/include/xen/privcmd.h
4985-rw-r--r-- root root 35465 ./usr/include/xf86drm.h
4986-rw-r--r-- root root 18016 ./usr/include/xf86drmMode.h
4987-rw-r--r-- root root 19283 ./usr/include/xtables.h
4988-rw-r--r-- root root 75 ./usr/include/xtables-version.h
4989-rw-r--r-- root root 16262 ./usr/include/zconf.h
4990-rw-r--r-- root root 96239 ./usr/include/zlib.h
4991drwxr-xr-x root root 20480 ./usr/lib
4992drwxr-xr-x root root 4096 ./usr/lib/cmake
4993drwxr-xr-x root root 4096 ./usr/lib/cmake/DBus1
4994-rw-r--r-- root root 2883 ./usr/lib/cmake/DBus1/DBus1Config.cmake
4995-rw-r--r-- root root 367 ./usr/lib/cmake/DBus1/DBus1ConfigVersion.cmake
4996drwxr-xr-x root root 4096 ./usr/lib/cmake/libxml2
4997-rw-r--r-- root root 1642 ./usr/lib/cmake/libxml2/libxml2-config.cmake
4998drwxr-xr-x root root 4096 ./usr/lib/coreutils
4999-rwxr-xr-x root root 14144 ./usr/lib/coreutils/libstdbuf.so
5000-rw-r--r-- root root 4280 ./usr/lib/crt1.o
5001-rw-r--r-- root root 2808 ./usr/lib/crti.o
5002-rw-r--r-- root root 2552 ./usr/lib/crtn.o
5003drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0
5004drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0/include
5005drwxr-xr-x root root 4096 ./usr/lib/dbus-1.0/include/dbus
5006-rw-r--r-- root root 2052 ./usr/lib/dbus-1.0/include/dbus/dbus-arch-deps.h
5007drwxr-xr-x root root 4096 ./usr/lib/dri
5008-rwxr-xr-x root root 12207640 ./usr/lib/dri/i915_dri.so
5009-rwxr-xr-x root root 12207640 ./usr/lib/dri/i965_dri.so
5010-rwxr-xr-x root root 9195384 ./usr/lib/dri/kms_swrast_dri.so
5011-rwxr-xr-x root root 12207640 ./usr/lib/dri/nouveau_vieux_dri.so
5012-rwxr-xr-x root root 12207640 ./usr/lib/dri/r200_dri.so
5013-rwxr-xr-x root root 12207640 ./usr/lib/dri/radeon_dri.so
5014-rwxr-xr-x root root 9195384 ./usr/lib/dri/swrast_dri.so
5015-rwxr-xr-x root root 9195384 ./usr/lib/dri/virtio_gpu_dri.so
5016-rwxr-xr-x root root 14376 ./usr/lib/e2initrd_helper
5017drwxr-xr-x root root 4096 ./usr/libexec
5018drwxr-xr-x root root 4096 ./usr/libexec/awk
5019-rwxr-xr-x root root 14288 ./usr/libexec/awk/grcat
5020-rwxr-xr-x root root 14288 ./usr/libexec/awk/pwcat
5021-rwsr-xr-x root messagebus 63592 ./usr/libexec/dbus-daemon-launch-helper
5022-rwxr-xr-x root root 43168 ./usr/libexec/frcode
5023-rwxr-xr-x root root 14304 ./usr/libexec/gio-querymodules
5024-rwxr-xr-x root root 354584 ./usr/libexec/udevadm
5025drwxr-xr-x root root 4096 ./usr/lib/gawk
5026-rwxr-xr-x root root 39016 ./usr/lib/gawk/filefuncs.so
5027-rwxr-xr-x root root 14288 ./usr/lib/gawk/fnmatch.so
5028-rwxr-xr-x root root 14304 ./usr/lib/gawk/fork.so
5029-rwxr-xr-x root root 14288 ./usr/lib/gawk/inplace.so
5030-rwxr-xr-x root root 14208 ./usr/lib/gawk/intdiv.so
5031-rwxr-xr-x root root 14256 ./usr/lib/gawk/ordchr.so
5032-rwxr-xr-x root root 14192 ./usr/lib/gawk/readdir.so
5033-rwxr-xr-x root root 14256 ./usr/lib/gawk/readfile.so
5034-rwxr-xr-x root root 14200 ./usr/lib/gawk/revoutput.so
5035-rwxr-xr-x root root 14200 ./usr/lib/gawk/revtwoway.so
5036-rwxr-xr-x root root 18352 ./usr/lib/gawk/rwarray.so
5037-rwxr-xr-x root root 14256 ./usr/lib/gawk/time.so
5038-rw-r--r-- root root 7064 ./usr/lib/gcrt1.o
5039drwxr-xr-x root root 4096 ./usr/lib/gio
5040drwxr-xr-x root root 4096 ./usr/lib/gio/modules
5041drwxr-xr-x root root 4096 ./usr/lib/girepository-1.0
5042-rw-r--r-- root root 14344 ./usr/lib/girepository-1.0/cairo-1.0.typelib
5043-rw-r--r-- root root 712 ./usr/lib/girepository-1.0/DBus-1.0.typelib
5044-rw-r--r-- root root 560 ./usr/lib/girepository-1.0/DBusGLib-1.0.typelib
5045-rw-r--r-- root root 348 ./usr/lib/girepository-1.0/fontconfig-2.0.typelib
5046-rw-r--r-- root root 420 ./usr/lib/girepository-1.0/freetype2-2.0.typelib
5047-rw-r--r-- root root 353336 ./usr/lib/girepository-1.0/Gio-2.0.typelib
5048-rw-r--r-- root root 27752 ./usr/lib/girepository-1.0/GIRepository-2.0.typelib
5049-rw-r--r-- root root 948 ./usr/lib/girepository-1.0/GL-1.0.typelib
5050-rw-r--r-- root root 191884 ./usr/lib/girepository-1.0/GLib-2.0.typelib
5051-rw-r--r-- root root 1340 ./usr/lib/girepository-1.0/GModule-2.0.typelib
5052-rw-r--r-- root root 58972 ./usr/lib/girepository-1.0/GObject-2.0.typelib
5053-rw-r--r-- root root 668 ./usr/lib/girepository-1.0/libxml2-2.0.typelib
5054-rw-r--r-- root root 59380 ./usr/lib/girepository-1.0/Vulkan-1.0.typelib
5055-rw-r--r-- root root 176 ./usr/lib/girepository-1.0/win32-1.0.typelib
5056-rw-r--r-- root root 240 ./usr/lib/girepository-1.0/xfixes-4.0.typelib
5057-rw-r--r-- root root 464 ./usr/lib/girepository-1.0/xft-2.0.typelib
5058-rw-r--r-- root root 836 ./usr/lib/girepository-1.0/xlib-2.0.typelib
5059-rw-r--r-- root root 640 ./usr/lib/girepository-1.0/xrandr-1.3.typelib
5060drwxr-xr-x root root 4096 ./usr/lib/glib-2.0
5061drwxr-xr-x root root 4096 ./usr/lib/glib-2.0/include
5062-rw-r--r-- root root 5649 ./usr/lib/glib-2.0/include/glibconfig.h
5063drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection
5064drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner
5065-rw-r--r-- root root 3526 ./usr/lib/gobject-introspection/giscanner/annotationmain.py
5066-rw-r--r-- root root 101376 ./usr/lib/gobject-introspection/giscanner/annotationparser.py
5067-rw-r--r-- root root 43411 ./usr/lib/gobject-introspection/giscanner/ast.py
5068-rw-r--r-- root root 5852 ./usr/lib/gobject-introspection/giscanner/cachestore.py
5069-rw-r--r-- root root 19524 ./usr/lib/gobject-introspection/giscanner/ccompiler.py
5070-rw-r--r-- root root 6190 ./usr/lib/gobject-introspection/giscanner/codegen.py
5071-rw-r--r-- root root 3268 ./usr/lib/gobject-introspection/giscanner/docmain.py
5072drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates
5073drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs
5074drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs
5075-rw-r--r-- root root 567 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/base.tmpl
5076-rw-r--r-- root root 113 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/callback.tmpl
5077-rw-r--r-- root root 29 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/class.tmpl
5078-rw-r--r-- root root 847 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/default.tmpl
5079-rw-r--r-- root root 890 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl
5080-rw-r--r-- root root 313 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/enum.tmpl
5081-rw-r--r-- root root 113 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/function.tmpl
5082-rw-r--r-- root root 5189 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_index.tmpl
5083-rw-r--r-- root root 29 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/interface.tmpl
5084-rw-r--r-- root root 120 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_methods.tmpl
5085-rw-r--r-- root root 1899 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_method.tmpl
5086-rw-r--r-- root root 32 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/method.tmpl
5087-rw-r--r-- root root 1278 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/namespace.tmpl
5088-rw-r--r-- root root 1123 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_properties.tmpl
5089-rw-r--r-- root root 652 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_signals.tmpl
5090-rw-r--r-- root root 176 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_staticmethods.tmpl
5091-rw-r--r-- root root 183 ./usr/lib/gobject-introspection/giscanner/doctemplates/devdocs/Gjs/_vfuncs.tmpl
5092drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard
5093-rw-r--r-- root root 765 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/base.tmpl
5094drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C
5095-rw-r--r-- root root 141 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/callback.tmpl
5096-rw-r--r-- root root 57 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/class.tmpl
5097-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/constructor.tmpl
5098-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/default.tmpl
5099-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/enum.tmpl
5100-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/field.tmpl
5101-rw-r--r-- root root 1654 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/function.tmpl
5102-rw-r--r-- root root 57 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/interface.tmpl
5103-rw-r--r-- root root 1982 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/class.tmpl
5104-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/method.tmpl
5105-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/namespace.tmpl
5106-rw-r--r-- root root 191 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/property.tmpl
5107-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/record.tmpl
5108-rw-r--r-- root root 196 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/signal.tmpl
5109-rw-r--r-- root root 139 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/C/vfunc.tmpl
5110drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs
5111-rw-r--r-- root root 780 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/callback.tmpl
5112-rw-r--r-- root root 863 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/class.tmpl
5113-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/constructor.tmpl
5114-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/default.tmpl
5115-rw-r--r-- root root 511 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/enum.tmpl
5116-rw-r--r-- root root 423 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/field.tmpl
5117-rw-r--r-- root root 1469 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/function.tmpl
5118-rw-r--r-- root root 558 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/interface.tmpl
5119-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/method.tmpl
5120-rw-r--r-- root root 61 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/namespace.tmpl
5121-rw-r--r-- root root 423 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/property.tmpl
5122-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/record.tmpl
5123-rw-r--r-- root root 1185 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/signal.tmpl
5124-rw-r--r-- root root 746 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Gjs/vfunc.tmpl
5125-rw-r--r-- root root 551 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/namespace.tmpl
5126drwxr-xr-x root root 4096 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python
5127-rw-r--r-- root root 849 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/callback.tmpl
5128-rw-r--r-- root root 593 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/class.tmpl
5129-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/constructor.tmpl
5130-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/default.tmpl
5131-rw-r--r-- root root 264 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/enum.tmpl
5132-rw-r--r-- root root 30 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/field.tmpl
5133-rw-r--r-- root root 1572 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/function.tmpl
5134-rw-r--r-- root root 535 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/interface.tmpl
5135-rw-r--r-- root root 35 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/method.tmpl
5136-rw-r--r-- root root 61 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/namespace.tmpl
5137-rw-r--r-- root root 407 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/property.tmpl
5138-rw-r--r-- root root 56 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/record.tmpl
5139-rw-r--r-- root root 1235 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/signal.tmpl
5140-rw-r--r-- root root 849 ./usr/lib/gobject-introspection/giscanner/doctemplates/mallard/Python/vfunc.tmpl
5141-rw-r--r-- root root 50143 ./usr/lib/gobject-introspection/giscanner/docwriter.py
5142-rw-r--r-- root root 10639 ./usr/lib/gobject-introspection/giscanner/dumper.py
5143-rw-r--r-- root root 21322 ./usr/lib/gobject-introspection/giscanner/gdumpparser.py
5144-rw-r--r-- root root 28229 ./usr/lib/gobject-introspection/giscanner/girparser.py
5145-rw-r--r-- root root 28222 ./usr/lib/gobject-introspection/giscanner/girwriter.py
5146-rwxr-xr-x root root 101672 ./usr/lib/gobject-introspection/giscanner/_giscanner.cpython-38-x86_64-linux-gnu.so
5147-rw-r--r-- root root 1105 ./usr/lib/gobject-introspection/giscanner/__init__.py
5148-rw-r--r-- root root 9398 ./usr/lib/gobject-introspection/giscanner/introspectablepass.py
5149-rw-r--r-- root root 2554 ./usr/lib/gobject-introspection/giscanner/libtoolimporter.py
5150-rw-r--r-- root root 65300 ./usr/lib/gobject-introspection/giscanner/maintransformer.py
5151-rw-r--r-- root root 392 ./usr/lib/gobject-introspection/giscanner/mdextensions.py
5152-rw-r--r-- root root 7612 ./usr/lib/gobject-introspection/giscanner/message.py
5153-rw-r--r-- root root 3756 ./usr/lib/gobject-introspection/giscanner/msvccompiler.py
5154-rw-r--r-- root root 2283 ./usr/lib/gobject-introspection/giscanner/pkgconfig.py
5155-rw-r--r-- root root 27285 ./usr/lib/gobject-introspection/giscanner/scannermain.py
5156-rw-r--r-- root root 4790 ./usr/lib/gobject-introspection/giscanner/sectionparser.py
5157-rw-r--r-- root root 6259 ./usr/lib/gobject-introspection/giscanner/shlibs.py
5158-rw-r--r-- root root 9628 ./usr/lib/gobject-introspection/giscanner/sourcescanner.py
5159-rw-r--r-- root root 5699 ./usr/lib/gobject-introspection/giscanner/testcodegen.py
5160-rw-r--r-- root root 44647 ./usr/lib/gobject-introspection/giscanner/transformer.py
5161-rw-r--r-- root root 10521 ./usr/lib/gobject-introspection/giscanner/utils.py
5162-rw-r--r-- root root 23 ./usr/lib/gobject-introspection/giscanner/_version.py
5163-rw-r--r-- root root 5798 ./usr/lib/gobject-introspection/giscanner/xmlwriter.py
5164-rwxr-xr-x root root 38904 ./usr/lib/libacl.so.1.1.2253
5165lrwxrwxrwx root root 18 ./usr/lib/libacl.so.1 -> libacl.so.1.1.2253
5166lrwxrwxrwx root root 18 ./usr/lib/libacl.so -> libacl.so.1.1.2253
5167lrwxrwxrwx root root 21 ./usr/lib/libanl.so -> ../../lib/libanl.so.1
5168-rwxr-xr-x root root 34856 ./usr/lib/libasm-0.179.so
5169lrwxrwxrwx root root 15 ./usr/lib/libasm.so.1 -> libasm-0.179.so
5170lrwxrwxrwx root root 11 ./usr/lib/libasm.so -> libasm.so.1
5171-rwxr-xr-x root root 26512 ./usr/lib/libattr.so.1.1.2448
5172lrwxrwxrwx root root 19 ./usr/lib/libattr.so.1 -> libattr.so.1.1.2448
5173lrwxrwxrwx root root 19 ./usr/lib/libattr.so -> libattr.so.1.1.2448
5174-rwxr-xr-x root root 1310600 ./usr/lib/libbfd-2.34.0.20200220.so
5175lrwxrwxrwx root root 25 ./usr/lib/libbfd.so -> libbfd-2.34.0.20200220.so
5176lrwxrwxrwx root root 27 ./usr/lib/libblkid.so -> ../../lib/libblkid.so.1.1.0
5177lrwxrwxrwx root root 30 ./usr/lib/libBrokenLocale.so -> ../../lib/libBrokenLocale.so.1
5178-rwxr-xr-x root root 387680 ./usr/lib/libbtrfs.so.0.1
5179lrwxrwxrwx root root 15 ./usr/lib/libbtrfs.so.0 -> libbtrfs.so.0.1
5180lrwxrwxrwx root root 15 ./usr/lib/libbtrfs.so -> libbtrfs.so.0.1
5181-rwxr-xr-x root root 34784 ./usr/lib/libbtrfsutil.so.1.2.0
5182lrwxrwxrwx root root 21 ./usr/lib/libbtrfsutil.so.1 -> libbtrfsutil.so.1.2.0
5183lrwxrwxrwx root root 21 ./usr/lib/libbtrfsutil.so -> libbtrfsutil.so.1.2.0
5184-rwxr-xr-x root root 74656 ./usr/lib/libbz2.so.1.0.6
5185lrwxrwxrwx root root 15 ./usr/lib/libbz2.so.1 -> libbz2.so.1.0.6
5186lrwxrwxrwx root root 15 ./usr/lib/libbz2.so -> libbz2.so.1.0.6
5187-rwxr-xr-x root root 42752 ./usr/lib/libcairo-gobject.so.2.11600.0
5188lrwxrwxrwx root root 29 ./usr/lib/libcairo-gobject.so.2 -> libcairo-gobject.so.2.11600.0
5189lrwxrwxrwx root root 29 ./usr/lib/libcairo-gobject.so -> libcairo-gobject.so.2.11600.0
5190-rwxr-xr-x root root 156384 ./usr/lib/libcairo-script-interpreter.so.2.11600.0
5191lrwxrwxrwx root root 40 ./usr/lib/libcairo-script-interpreter.so.2 -> libcairo-script-interpreter.so.2.11600.0
5192lrwxrwxrwx root root 40 ./usr/lib/libcairo-script-interpreter.so -> libcairo-script-interpreter.so.2.11600.0
5193-rwxr-xr-x root root 1291312 ./usr/lib/libcairo.so.2.11600.0
5194lrwxrwxrwx root root 21 ./usr/lib/libcairo.so.2 -> libcairo.so.2.11600.0
5195lrwxrwxrwx root root 21 ./usr/lib/libcairo.so -> libcairo.so.2.11600.0
5196lrwxrwxrwx root root 28 ./usr/lib/libcap-ng.so -> ../../lib/libcap-ng.so.0.0.0
5197-rw-r--r-- root root 76674 ./usr/lib/libc_nonshared.a
5198-rwxr-xr-x root root 2872136 ./usr/lib/libcrypto.so.1.1
5199lrwxrwxrwx root root 16 ./usr/lib/libcrypto.so -> libcrypto.so.1.1
5200-rwxr-xr-x root root 202648 ./usr/lib/libcrypt.so.2.0.0
5201lrwxrwxrwx root root 17 ./usr/lib/libcrypt.so.2 -> libcrypt.so.2.0.0
5202lrwxrwxrwx root root 17 ./usr/lib/libcrypt.so -> libcrypt.so.2.0.0
5203-rw-r--r-- root root 247 ./usr/lib/libc.so
5204-rwxr-xr-x root root 116736 ./usr/lib/libctf-nobfd.so.0.0.0
5205lrwxrwxrwx root root 21 ./usr/lib/libctf-nobfd.so.0 -> libctf-nobfd.so.0.0.0
5206lrwxrwxrwx root root 21 ./usr/lib/libctf-nobfd.so -> libctf-nobfd.so.0.0.0
5207-rwxr-xr-x root root 116728 ./usr/lib/libctf.so.0.0.0
5208lrwxrwxrwx root root 15 ./usr/lib/libctf.so.0 -> libctf.so.0.0.0
5209lrwxrwxrwx root root 15 ./usr/lib/libctf.so -> libctf.so.0.0.0
5210lrwxrwxrwx root root 13 ./usr/lib/libcurses.so -> libncurses.so
5211-rwxr-xr-x root root 1267928 ./usr/lib/libdb-5.3.so
5212lrwxrwxrwx root root 12 ./usr/lib/libdb-5.so -> libdb-5.3.so
5213lrwxrwxrwx root root 12 ./usr/lib/libdb.so -> libdb-5.3.so
5214-rwxr-xr-x root root 346240 ./usr/lib/libdbus-1.so.3.19.11
5215lrwxrwxrwx root root 20 ./usr/lib/libdbus-1.so.3 -> libdbus-1.so.3.19.11
5216lrwxrwxrwx root root 20 ./usr/lib/libdbus-1.so -> libdbus-1.so.3.19.11
5217lrwxrwxrwx root root 20 ./usr/lib/libdl.so -> ../../lib/libdl.so.2
5218-rwxr-xr-x root root 42824 ./usr/lib/libdrm_amdgpu.so.1.0.0
5219lrwxrwxrwx root root 22 ./usr/lib/libdrm_amdgpu.so.1 -> libdrm_amdgpu.so.1.0.0
5220lrwxrwxrwx root root 18 ./usr/lib/libdrm_amdgpu.so -> libdrm_amdgpu.so.1
5221-rwxr-xr-x root root 30536 ./usr/lib/libdrm_etnaviv.so.1.0.0
5222lrwxrwxrwx root root 23 ./usr/lib/libdrm_etnaviv.so.1 -> libdrm_etnaviv.so.1.0.0
5223lrwxrwxrwx root root 19 ./usr/lib/libdrm_etnaviv.so -> libdrm_etnaviv.so.1
5224-rwxr-xr-x root root 34712 ./usr/lib/libdrm_freedreno.so.1.0.0
5225lrwxrwxrwx root root 25 ./usr/lib/libdrm_freedreno.so.1 -> libdrm_freedreno.so.1.0.0
5226lrwxrwxrwx root root 21 ./usr/lib/libdrm_freedreno.so -> libdrm_freedreno.so.1
5227-rwxr-xr-x root root 146920 ./usr/lib/libdrm_intel.so.1.0.0
5228lrwxrwxrwx root root 21 ./usr/lib/libdrm_intel.so.1 -> libdrm_intel.so.1.0.0
5229lrwxrwxrwx root root 17 ./usr/lib/libdrm_intel.so -> libdrm_intel.so.1
5230-rwxr-xr-x root root 34632 ./usr/lib/libdrm_nouveau.so.2.0.0
5231lrwxrwxrwx root root 23 ./usr/lib/libdrm_nouveau.so.2 -> libdrm_nouveau.so.2.0.0
5232lrwxrwxrwx root root 19 ./usr/lib/libdrm_nouveau.so -> libdrm_nouveau.so.2
5233-rwxr-xr-x root root 14080 ./usr/lib/libdrm_omap.so.1.0.0
5234lrwxrwxrwx root root 20 ./usr/lib/libdrm_omap.so.1 -> libdrm_omap.so.1.0.0
5235lrwxrwxrwx root root 16 ./usr/lib/libdrm_omap.so -> libdrm_omap.so.1
5236-rwxr-xr-x root root 55184 ./usr/lib/libdrm_radeon.so.1.0.1
5237lrwxrwxrwx root root 22 ./usr/lib/libdrm_radeon.so.1 -> libdrm_radeon.so.1.0.1
5238lrwxrwxrwx root root 18 ./usr/lib/libdrm_radeon.so -> libdrm_radeon.so.1
5239-rwxr-xr-x root root 79752 ./usr/lib/libdrm.so.2.4.0
5240lrwxrwxrwx root root 15 ./usr/lib/libdrm.so.2 -> libdrm.so.2.4.0
5241lrwxrwxrwx root root 11 ./usr/lib/libdrm.so -> libdrm.so.2
5242-rwxr-xr-x root root 650160 ./usr/lib/libdw-0.179.so
5243lrwxrwxrwx root root 14 ./usr/lib/libdw.so.1 -> libdw-0.179.so
5244lrwxrwxrwx root root 10 ./usr/lib/libdw.so -> libdw.so.1
5245-rwxr-xr-x root root 100384 ./usr/lib/libelf-0.179.so
5246lrwxrwxrwx root root 15 ./usr/lib/libelf.so.1 -> libelf-0.179.so
5247lrwxrwxrwx root root 11 ./usr/lib/libelf.so -> libelf.so.1
5248-rwxr-xr-x root root 182160 ./usr/lib/libexpat.so.1.6.11
5249lrwxrwxrwx root root 18 ./usr/lib/libexpat.so.1 -> libexpat.so.1.6.11
5250lrwxrwxrwx root root 18 ./usr/lib/libexpat.so -> libexpat.so.1.6.11
5251lrwxrwxrwx root root 27 ./usr/lib/libfdisk.so -> ../../lib/libfdisk.so.1.1.0
5252-rwxr-xr-x root root 43032 ./usr/lib/libffi.so.7.1.0
5253lrwxrwxrwx root root 15 ./usr/lib/libffi.so.7 -> libffi.so.7.1.0
5254lrwxrwxrwx root root 15 ./usr/lib/libffi.so -> libffi.so.7.1.0
5255-rwxr-xr-x root root 14072 ./usr/lib/libfl.so.2.0.0
5256lrwxrwxrwx root root 14 ./usr/lib/libfl.so.2 -> libfl.so.2.0.0
5257lrwxrwxrwx root root 14 ./usr/lib/libfl.so -> libfl.so.2.0.0
5258-rwxr-xr-x root root 288664 ./usr/lib/libfontconfig.so.1.12.0
5259lrwxrwxrwx root root 23 ./usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.12.0
5260lrwxrwxrwx root root 23 ./usr/lib/libfontconfig.so -> libfontconfig.so.1.12.0
5261-rwxr-xr-x root root 68696 ./usr/lib/libform.so.5.9
5262lrwxrwxrwx root root 14 ./usr/lib/libform.so.5 -> libform.so.5.9
5263lrwxrwxrwx root root 12 ./usr/lib/libform.so -> libform.so.5
5264-rwxr-xr-x root root 76952 ./usr/lib/libformw.so.5.9
5265lrwxrwxrwx root root 15 ./usr/lib/libformw.so.5 -> libformw.so.5.9
5266lrwxrwxrwx root root 13 ./usr/lib/libformw.so -> libformw.so.5
5267-rwxr-xr-x root root 722832 ./usr/lib/libfreetype.so.6.17.2
5268lrwxrwxrwx root root 21 ./usr/lib/libfreetype.so.6 -> libfreetype.so.6.17.2
5269lrwxrwxrwx root root 21 ./usr/lib/libfreetype.so -> libfreetype.so.6.17.2
5270-rwxr-xr-x root root 14080 ./usr/lib/libgdbm_compat.so.4.0.0
5271lrwxrwxrwx root root 23 ./usr/lib/libgdbm_compat.so.4 -> libgdbm_compat.so.4.0.0
5272lrwxrwxrwx root root 23 ./usr/lib/libgdbm_compat.so -> libgdbm_compat.so.4.0.0
5273-rwxr-xr-x root root 59392 ./usr/lib/libgdbm.so.6.0.0
5274lrwxrwxrwx root root 16 ./usr/lib/libgdbm.so.6 -> libgdbm.so.6.0.0
5275lrwxrwxrwx root root 16 ./usr/lib/libgdbm.so -> libgdbm.so.6.0.0
5276-rwxr-xr-x root root 1932600 ./usr/lib/libgio-2.0.so.0.6400.2
5277lrwxrwxrwx root root 22 ./usr/lib/libgio-2.0.so.0 -> libgio-2.0.so.0.6400.2
5278lrwxrwxrwx root root 15 ./usr/lib/libgio-2.0.so -> libgio-2.0.so.0
5279-rwxr-xr-x root root 223248 ./usr/lib/libgirepository-1.0.so.1.0.0
5280lrwxrwxrwx root root 28 ./usr/lib/libgirepository-1.0.so.1 -> libgirepository-1.0.so.1.0.0
5281lrwxrwxrwx root root 24 ./usr/lib/libgirepository-1.0.so -> libgirepository-1.0.so.1
5282-rwxr-xr-x root root 325664 ./usr/lib/libglapi.so.0.0.0
5283lrwxrwxrwx root root 17 ./usr/lib/libglapi.so.0 -> libglapi.so.0.0.0
5284lrwxrwxrwx root root 13 ./usr/lib/libglapi.so -> libglapi.so.0
5285-rwxr-xr-x root root 1203480 ./usr/lib/libglib-2.0.so.0.6400.2
5286lrwxrwxrwx root root 23 ./usr/lib/libglib-2.0.so.0 -> libglib-2.0.so.0.6400.2
5287lrwxrwxrwx root root 16 ./usr/lib/libglib-2.0.so -> libglib-2.0.so.0
5288-rwxr-xr-x root root 498608 ./usr/lib/libGL.so.1.2.0
5289lrwxrwxrwx root root 14 ./usr/lib/libGL.so.1 -> libGL.so.1.2.0
5290lrwxrwxrwx root root 10 ./usr/lib/libGL.so -> libGL.so.1
5291-rwxr-xr-x root root 18304 ./usr/lib/libgmodule-2.0.so.0.6400.2
5292lrwxrwxrwx root root 26 ./usr/lib/libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.6400.2
5293lrwxrwxrwx root root 19 ./usr/lib/libgmodule-2.0.so -> libgmodule-2.0.so.0
5294-rwxr-xr-x root root 489440 ./usr/lib/libgmp.so.10.4.0
5295lrwxrwxrwx root root 16 ./usr/lib/libgmp.so.10 -> libgmp.so.10.4.0
5296lrwxrwxrwx root root 16 ./usr/lib/libgmp.so -> libgmp.so.10.4.0
5297-rwxr-xr-x root root 30696 ./usr/lib/libgmpxx.so.4.6.0
5298lrwxrwxrwx root root 17 ./usr/lib/libgmpxx.so.4 -> libgmpxx.so.4.6.0
5299lrwxrwxrwx root root 17 ./usr/lib/libgmpxx.so -> libgmpxx.so.4.6.0
5300-rwxr-xr-x root root 354344 ./usr/lib/libgobject-2.0.so.0.6400.2
5301lrwxrwxrwx root root 26 ./usr/lib/libgobject-2.0.so.0 -> libgobject-2.0.so.0.6400.2
5302lrwxrwxrwx root root 19 ./usr/lib/libgobject-2.0.so -> libgobject-2.0.so.0
5303-rwxr-xr-x root root 14000 ./usr/lib/libgthread-2.0.so.0.6400.2
5304lrwxrwxrwx root root 26 ./usr/lib/libgthread-2.0.so.0 -> libgthread-2.0.so.0.6400.2
5305lrwxrwxrwx root root 19 ./usr/lib/libgthread-2.0.so -> libgthread-2.0.so.0
5306-rwxr-xr-x root root 46944 ./usr/lib/libhistory.so.8.0
5307lrwxrwxrwx root root 17 ./usr/lib/libhistory.so.8 -> libhistory.so.8.0
5308lrwxrwxrwx root root 17 ./usr/lib/libhistory.so -> libhistory.so.8.0
5309-rwxr-xr-x root root 101096 ./usr/lib/libICE.so.6.3.0
5310lrwxrwxrwx root root 15 ./usr/lib/libICE.so.6 -> libICE.so.6.3.0
5311lrwxrwxrwx root root 15 ./usr/lib/libICE.so -> libICE.so.6.3.0
5312-rwxr-xr-x root root 35256 ./usr/lib/libip4tc.so.2.0.0
5313lrwxrwxrwx root root 17 ./usr/lib/libip4tc.so.2 -> libip4tc.so.2.0.0
5314lrwxrwxrwx root root 17 ./usr/lib/libip4tc.so -> libip4tc.so.2.0.0
5315-rwxr-xr-x root root 35256 ./usr/lib/libip6tc.so.2.0.0
5316lrwxrwxrwx root root 17 ./usr/lib/libip6tc.so.2 -> libip6tc.so.2.0.0
5317lrwxrwxrwx root root 17 ./usr/lib/libip6tc.so -> libip6tc.so.2.0.0
5318-rwxr-xr-x root root 83992 ./usr/lib/libkmod.so.2.3.5
5319lrwxrwxrwx root root 16 ./usr/lib/libkmod.so.2 -> libkmod.so.2.3.5
5320lrwxrwxrwx root root 16 ./usr/lib/libkmod.so -> libkmod.so.2.3.5
5321-rwxr-xr-x root root 18240 ./usr/lib/libkms.so.1.0.0
5322lrwxrwxrwx root root 15 ./usr/lib/libkms.so.1 -> libkms.so.1.0.0
5323lrwxrwxrwx root root 11 ./usr/lib/libkms.so -> libkms.so.1
5324-rwxr-xr-x root root 161760 ./usr/lib/liblzma.so.5.2.5
5325lrwxrwxrwx root root 16 ./usr/lib/liblzma.so.5 -> liblzma.so.5.2.5
5326lrwxrwxrwx root root 16 ./usr/lib/liblzma.so -> liblzma.so.5.2.5
5327-rwxr-xr-x root root 141200 ./usr/lib/liblzo2.so.2.0.0
5328lrwxrwxrwx root root 16 ./usr/lib/liblzo2.so.2 -> liblzo2.so.2.0.0
5329lrwxrwxrwx root root 16 ./usr/lib/liblzo2.so -> liblzo2.so.2.0.0
5330-rwxr-xr-x root root 34976 ./usr/lib/libmenu.so.5.9
5331lrwxrwxrwx root root 14 ./usr/lib/libmenu.so.5 -> libmenu.so.5.9
5332lrwxrwxrwx root root 12 ./usr/lib/libmenu.so -> libmenu.so.5
5333-rwxr-xr-x root root 39072 ./usr/lib/libmenuw.so.5.9
5334lrwxrwxrwx root root 15 ./usr/lib/libmenuw.so.5 -> libmenuw.so.5.9
5335lrwxrwxrwx root root 13 ./usr/lib/libmenuw.so -> libmenuw.so.5
5336-rwxr-xr-x root root 26584 ./usr/lib/libmnl.so.0.2.0
5337lrwxrwxrwx root root 15 ./usr/lib/libmnl.so.0 -> libmnl.so.0.2.0
5338lrwxrwxrwx root root 15 ./usr/lib/libmnl.so -> libmnl.so.0.2.0
5339lrwxrwxrwx root root 27 ./usr/lib/libmount.so -> ../../lib/libmount.so.1.1.0
5340-rw-r--r-- root root 106 ./usr/lib/libm.so
5341lrwxrwxrwx root root 22 ./usr/lib/libmvec.so -> ../../lib/libmvec.so.1
5342-rw-r--r-- root root 62 ./usr/lib/libncurses.so
5343-rw-r--r-- root root 63 ./usr/lib/libncursesw.so
5344-rwxr-xr-x root root 96288 ./usr/lib/libnsl.so.2.0.0
5345lrwxrwxrwx root root 15 ./usr/lib/libnsl.so.2 -> libnsl.so.2.0.0
5346lrwxrwxrwx root root 15 ./usr/lib/libnsl.so -> libnsl.so.2.0.0
5347lrwxrwxrwx root root 28 ./usr/lib/libnss_compat.so -> ../../lib/libnss_compat.so.2
5348lrwxrwxrwx root root 24 ./usr/lib/libnss_db.so -> ../../lib/libnss_db.so.2
5349lrwxrwxrwx root root 25 ./usr/lib/libnss_dns.so -> ../../lib/libnss_dns.so.2
5350lrwxrwxrwx root root 27 ./usr/lib/libnss_files.so -> ../../lib/libnss_files.so.2
5351lrwxrwxrwx root root 28 ./usr/lib/libnss_hesiod.so -> ../../lib/libnss_hesiod.so.2
5352-rwxr-xr-x root root 1426544 ./usr/lib/libopcodes-2.34.0.20200220.so
5353lrwxrwxrwx root root 29 ./usr/lib/libopcodes.so -> libopcodes-2.34.0.20200220.so
5354-rwxr-xr-x root root 18168 ./usr/lib/libpanel.so.5.9
5355lrwxrwxrwx root root 15 ./usr/lib/libpanel.so.5 -> libpanel.so.5.9
5356lrwxrwxrwx root root 13 ./usr/lib/libpanel.so -> libpanel.so.5
5357-rwxr-xr-x root root 18168 ./usr/lib/libpanelw.so.5.9
5358lrwxrwxrwx root root 16 ./usr/lib/libpanelw.so.5 -> libpanelw.so.5.9
5359lrwxrwxrwx root root 14 ./usr/lib/libpanelw.so -> libpanelw.so.5
5360-rwxr-xr-x root root 42896 ./usr/lib/libpciaccess.so.0.11.1
5361lrwxrwxrwx root root 22 ./usr/lib/libpciaccess.so.0 -> libpciaccess.so.0.11.1
5362lrwxrwxrwx root root 22 ./usr/lib/libpciaccess.so -> libpciaccess.so.0.11.1
5363-rwxr-xr-x root root 42984 ./usr/lib/libpcrecpp.so.0.0.2
5364lrwxrwxrwx root root 19 ./usr/lib/libpcrecpp.so.0 -> libpcrecpp.so.0.0.2
5365lrwxrwxrwx root root 19 ./usr/lib/libpcrecpp.so -> libpcrecpp.so.0.0.2
5366-rwxr-xr-x root root 14224 ./usr/lib/libpcreposix.so.0.0.7
5367lrwxrwxrwx root root 21 ./usr/lib/libpcreposix.so.0 -> libpcreposix.so.0.0.7
5368lrwxrwxrwx root root 21 ./usr/lib/libpcreposix.so -> libpcreposix.so.0.0.7
5369-rwxr-xr-x root root 489400 ./usr/lib/libpcre.so.1.2.12
5370lrwxrwxrwx root root 17 ./usr/lib/libpcre.so.1 -> libpcre.so.1.2.12
5371lrwxrwxrwx root root 17 ./usr/lib/libpcre.so -> libpcre.so.1.2.12
5372-r-xr-xr-x root root 3351136 ./usr/lib/libperl.so.5.30.0
5373lrwxrwxrwx root root 17 ./usr/lib/libperl.so.5 -> libperl.so.5.30.0
5374lrwxrwxrwx root root 17 ./usr/lib/libperl.so -> libperl.so.5.30.0
5375-rwxr-xr-x root root 694264 ./usr/lib/libpixman-1.so.0.40.0
5376lrwxrwxrwx root root 21 ./usr/lib/libpixman-1.so.0 -> libpixman-1.so.0.40.0
5377lrwxrwxrwx root root 16 ./usr/lib/libpixman-1.so -> libpixman-1.so.0
5378-rwxr-xr-x root root 219024 ./usr/lib/libpng16.so.16.37.0
5379lrwxrwxrwx root root 19 ./usr/lib/libpng16.so.16 -> libpng16.so.16.37.0
5380lrwxrwxrwx root root 19 ./usr/lib/libpng16.so -> libpng16.so.16.37.0
5381lrwxrwxrwx root root 11 ./usr/lib/libpng.so -> libpng16.so
5382-rwxr-xr-x root root 79888 ./usr/lib/libprocps.so.8.0.2
5383lrwxrwxrwx root root 18 ./usr/lib/libprocps.so.8 -> libprocps.so.8.0.2
5384lrwxrwxrwx root root 18 ./usr/lib/libprocps.so -> libprocps.so.8.0.2
5385lrwxrwxrwx root root 25 ./usr/lib/libpthread.so -> ../../lib/libpthread.so.0
5386-rwxr-xr-x root root 3271808 ./usr/lib/libpython3.8.so.1.0
5387lrwxrwxrwx root root 19 ./usr/lib/libpython3.8.so -> libpython3.8.so.1.0
5388-rwxr-xr-x root root 13920 ./usr/lib/libpython3.so
5389-rwxr-xr-x root root 330696 ./usr/lib/libreadline.so.8.0
5390lrwxrwxrwx root root 18 ./usr/lib/libreadline.so.8 -> libreadline.so.8.0
5391lrwxrwxrwx root root 18 ./usr/lib/libreadline.so -> libreadline.so.8.0
5392lrwxrwxrwx root root 24 ./usr/lib/libresolv.so -> ../../lib/libresolv.so.2
5393lrwxrwxrwx root root 20 ./usr/lib/librt.so -> ../../lib/librt.so.1
5394lrwxrwxrwx root root 31 ./usr/lib/libsmartcols.so -> ../../lib/libsmartcols.so.1.1.0
5395-rwxr-xr-x root root 38736 ./usr/lib/libSM.so.6.0.1
5396lrwxrwxrwx root root 14 ./usr/lib/libSM.so.6 -> libSM.so.6.0.1
5397lrwxrwxrwx root root 14 ./usr/lib/libSM.so -> libSM.so.6.0.1
5398-rwxr-xr-x root root 1244736 ./usr/lib/libsqlite3.so.0.8.6
5399lrwxrwxrwx root root 19 ./usr/lib/libsqlite3.so.0 -> libsqlite3.so.0.8.6
5400lrwxrwxrwx root root 19 ./usr/lib/libsqlite3.so -> libsqlite3.so.0.8.6
5401-rwxr-xr-x root root 593728 ./usr/lib/libssl.so.1.1
5402lrwxrwxrwx root root 13 ./usr/lib/libssl.so -> libssl.so.1.1
5403-rwxr-xr-x root root 1866240 ./usr/lib/libstdc++.so.6.0.28
5404lrwxrwxrwx root root 19 ./usr/lib/libstdc++.so.6 -> libstdc++.so.6.0.28
5405lrwxrwxrwx root root 19 ./usr/lib/libstdc++.so -> libstdc++.so.6.0.28
5406-rw-r--r-- root root 46 ./usr/lib/libtermcap.so
5407lrwxrwxrwx root root 27 ./usr/lib/libthread_db.so -> ../../lib/libthread_db.so.1
5408-rwxr-xr-x root root 67472 ./usr/lib/libtic.so.5.9
5409lrwxrwxrwx root root 13 ./usr/lib/libtic.so.5 -> libtic.so.5.9
5410lrwxrwxrwx root root 11 ./usr/lib/libtic.so -> libtic.so.5
5411-rwxr-xr-x root root 67472 ./usr/lib/libticw.so.5.9
5412lrwxrwxrwx root root 14 ./usr/lib/libticw.so.5 -> libticw.so.5.9
5413lrwxrwxrwx root root 12 ./usr/lib/libticw.so -> libticw.so.5
5414lrwxrwxrwx root root 23 ./usr/lib/libtinfo.so -> ../../lib/libtinfo.so.5
5415-rwxr-xr-x root root 161888 ./usr/lib/libtirpc.so.3.0.0
5416lrwxrwxrwx root root 17 ./usr/lib/libtirpc.so.3 -> libtirpc.so.3.0.0
5417lrwxrwxrwx root root 17 ./usr/lib/libtirpc.so -> libtirpc.so.3.0.0
5418lrwxrwxrwx root root 26 ./usr/lib/libudev.so -> ../../lib/libudev.so.1.6.3
5419lrwxrwxrwx root root 22 ./usr/lib/libutil.so -> ../../lib/libutil.so.1
5420lrwxrwxrwx root root 26 ./usr/lib/libuuid.so -> ../../lib/libuuid.so.1.3.0
5421-rwxr-xr-x root root 68272 ./usr/lib/libwayland-client.so.0.3.0
5422lrwxrwxrwx root root 26 ./usr/lib/libwayland-client.so.0 -> libwayland-client.so.0.3.0
5423lrwxrwxrwx root root 22 ./usr/lib/libwayland-client.so -> libwayland-client.so.0
5424-rwxr-xr-x root root 30720 ./usr/lib/libwayland-cursor.so.0.0.0
5425lrwxrwxrwx root root 26 ./usr/lib/libwayland-cursor.so.0 -> libwayland-cursor.so.0.0.0
5426lrwxrwxrwx root root 22 ./usr/lib/libwayland-cursor.so -> libwayland-cursor.so.0
5427-rwxr-xr-x root root 14080 ./usr/lib/libwayland-egl.so.1.0.0
5428lrwxrwxrwx root root 23 ./usr/lib/libwayland-egl.so.1 -> libwayland-egl.so.1.0.0
5429lrwxrwxrwx root root 19 ./usr/lib/libwayland-egl.so -> libwayland-egl.so.1
5430-rwxr-xr-x root root 88784 ./usr/lib/libwayland-server.so.0.1.0
5431lrwxrwxrwx root root 26 ./usr/lib/libwayland-server.so.0 -> libwayland-server.so.0.1.0
5432lrwxrwxrwx root root 22 ./usr/lib/libwayland-server.so -> libwayland-server.so.0
5433lrwxrwxrwx root root 26 ./usr/lib/libwrap.so -> ../../lib/libwrap.so.0.7.6
5434-rwxr-xr-x root root 1308960 ./usr/lib/libX11.so.6.3.0
5435lrwxrwxrwx root root 15 ./usr/lib/libX11.so.6 -> libX11.so.6.3.0
5436lrwxrwxrwx root root 15 ./usr/lib/libX11.so -> libX11.so.6.3.0
5437-rwxr-xr-x root root 13848 ./usr/lib/libX11-xcb.so.1.0.0
5438lrwxrwxrwx root root 19 ./usr/lib/libX11-xcb.so.1 -> libX11-xcb.so.1.0.0
5439lrwxrwxrwx root root 19 ./usr/lib/libX11-xcb.so -> libX11-xcb.so.1.0.0
5440-rwxr-xr-x root root 14144 ./usr/lib/libXau.so.6.0.0
5441lrwxrwxrwx root root 15 ./usr/lib/libXau.so.6 -> libXau.so.6.0.0
5442lrwxrwxrwx root root 15 ./usr/lib/libXau.so -> libXau.so.6.0.0
5443-rwxr-xr-x root root 14256 ./usr/lib/libxcb-composite.so.0.0.0
5444lrwxrwxrwx root root 25 ./usr/lib/libxcb-composite.so.0 -> libxcb-composite.so.0.0.0
5445lrwxrwxrwx root root 25 ./usr/lib/libxcb-composite.so -> libxcb-composite.so.0.0.0
5446-rwxr-xr-x root root 14248 ./usr/lib/libxcb-damage.so.0.0.0
5447lrwxrwxrwx root root 22 ./usr/lib/libxcb-damage.so.0 -> libxcb-damage.so.0.0.0
5448lrwxrwxrwx root root 22 ./usr/lib/libxcb-damage.so -> libxcb-damage.so.0.0.0
5449-rwxr-xr-x root root 14248 ./usr/lib/libxcb-dpms.so.0.0.0
5450lrwxrwxrwx root root 20 ./usr/lib/libxcb-dpms.so.0 -> libxcb-dpms.so.0.0.0
5451lrwxrwxrwx root root 20 ./usr/lib/libxcb-dpms.so -> libxcb-dpms.so.0.0.0
5452-rwxr-xr-x root root 22440 ./usr/lib/libxcb-dri2.so.0.0.0
5453lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri2.so.0 -> libxcb-dri2.so.0.0.0
5454lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri2.so -> libxcb-dri2.so.0.0.0
5455-rwxr-xr-x root root 18344 ./usr/lib/libxcb-dri3.so.0.0.0
5456lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri3.so.0 -> libxcb-dri3.so.0.0.0
5457lrwxrwxrwx root root 20 ./usr/lib/libxcb-dri3.so -> libxcb-dri3.so.0.0.0
5458-rwxr-xr-x root root 116648 ./usr/lib/libxcb-glx.so.0.0.0
5459lrwxrwxrwx root root 19 ./usr/lib/libxcb-glx.so.0 -> libxcb-glx.so.0.0.0
5460lrwxrwxrwx root root 19 ./usr/lib/libxcb-glx.so -> libxcb-glx.so.0.0.0
5461-rwxr-xr-x root root 14248 ./usr/lib/libxcb-present.so.0.0.0
5462lrwxrwxrwx root root 23 ./usr/lib/libxcb-present.so.0 -> libxcb-present.so.0.0.0
5463lrwxrwxrwx root root 23 ./usr/lib/libxcb-present.so -> libxcb-present.so.0.0.0
5464-rwxr-xr-x root root 67496 ./usr/lib/libxcb-randr.so.0.1.0
5465lrwxrwxrwx root root 21 ./usr/lib/libxcb-randr.so.0 -> libxcb-randr.so.0.1.0
5466lrwxrwxrwx root root 21 ./usr/lib/libxcb-randr.so -> libxcb-randr.so.0.1.0
5467-rwxr-xr-x root root 18344 ./usr/lib/libxcb-record.so.0.0.0
5468lrwxrwxrwx root root 22 ./usr/lib/libxcb-record.so.0 -> libxcb-record.so.0.0.0
5469lrwxrwxrwx root root 22 ./usr/lib/libxcb-record.so -> libxcb-record.so.0.0.0
5470-rwxr-xr-x root root 59304 ./usr/lib/libxcb-render.so.0.0.0
5471lrwxrwxrwx root root 22 ./usr/lib/libxcb-render.so.0 -> libxcb-render.so.0.0.0
5472lrwxrwxrwx root root 22 ./usr/lib/libxcb-render.so -> libxcb-render.so.0.0.0
5473-rwxr-xr-x root root 18344 ./usr/lib/libxcb-res.so.0.0.0
5474lrwxrwxrwx root root 19 ./usr/lib/libxcb-res.so.0 -> libxcb-res.so.0.0.0
5475lrwxrwxrwx root root 19 ./usr/lib/libxcb-res.so -> libxcb-res.so.0.0.0
5476-rwxr-xr-x root root 14256 ./usr/lib/libxcb-screensaver.so.0.0.0
5477lrwxrwxrwx root root 27 ./usr/lib/libxcb-screensaver.so.0 -> libxcb-screensaver.so.0.0.0
5478lrwxrwxrwx root root 27 ./usr/lib/libxcb-screensaver.so -> libxcb-screensaver.so.0.0.0
5479-rwxr-xr-x root root 14248 ./usr/lib/libxcb-shape.so.0.0.0
5480lrwxrwxrwx root root 21 ./usr/lib/libxcb-shape.so.0 -> libxcb-shape.so.0.0.0
5481lrwxrwxrwx root root 21 ./usr/lib/libxcb-shape.so -> libxcb-shape.so.0.0.0
5482-rwxr-xr-x root root 14248 ./usr/lib/libxcb-shm.so.0.0.0
5483lrwxrwxrwx root root 19 ./usr/lib/libxcb-shm.so.0 -> libxcb-shm.so.0.0.0
5484lrwxrwxrwx root root 19 ./usr/lib/libxcb-shm.so -> libxcb-shm.so.0.0.0
5485-rwxr-xr-x root root 169920 ./usr/lib/libxcb.so.1.1.0
5486lrwxrwxrwx root root 15 ./usr/lib/libxcb.so.1 -> libxcb.so.1.1.0
5487lrwxrwxrwx root root 15 ./usr/lib/libxcb.so -> libxcb.so.1.1.0
5488-rwxr-xr-x root root 34728 ./usr/lib/libxcb-sync.so.1.0.0
5489lrwxrwxrwx root root 20 ./usr/lib/libxcb-sync.so.1 -> libxcb-sync.so.1.0.0
5490lrwxrwxrwx root root 20 ./usr/lib/libxcb-sync.so -> libxcb-sync.so.1.0.0
5491-rwxr-xr-x root root 18344 ./usr/lib/libxcb-xf86dri.so.0.0.0
5492lrwxrwxrwx root root 23 ./usr/lib/libxcb-xf86dri.so.0 -> libxcb-xf86dri.so.0.0.0
5493lrwxrwxrwx root root 23 ./usr/lib/libxcb-xf86dri.so -> libxcb-xf86dri.so.0.0.0
5494-rwxr-xr-x root root 34728 ./usr/lib/libxcb-xfixes.so.0.0.0
5495lrwxrwxrwx root root 22 ./usr/lib/libxcb-xfixes.so.0 -> libxcb-xfixes.so.0.0.0
5496lrwxrwxrwx root root 22 ./usr/lib/libxcb-xfixes.so -> libxcb-xfixes.so.0.0.0
5497-rwxr-xr-x root root 14256 ./usr/lib/libxcb-xinerama.so.0.0.0
5498lrwxrwxrwx root root 24 ./usr/lib/libxcb-xinerama.so.0 -> libxcb-xinerama.so.0.0.0
5499lrwxrwxrwx root root 24 ./usr/lib/libxcb-xinerama.so -> libxcb-xinerama.so.0.0.0
5500-rwxr-xr-x root root 149416 ./usr/lib/libxcb-xinput.so.0.1.0
5501lrwxrwxrwx root root 22 ./usr/lib/libxcb-xinput.so.0 -> libxcb-xinput.so.0.1.0
5502lrwxrwxrwx root root 22 ./usr/lib/libxcb-xinput.so -> libxcb-xinput.so.0.1.0
5503-rwxr-xr-x root root 120744 ./usr/lib/libxcb-xkb.so.1.0.0
5504lrwxrwxrwx root root 19 ./usr/lib/libxcb-xkb.so.1 -> libxcb-xkb.so.1.0.0
5505lrwxrwxrwx root root 19 ./usr/lib/libxcb-xkb.so -> libxcb-xkb.so.1.0.0
5506-rwxr-xr-x root root 14248 ./usr/lib/libxcb-xtest.so.0.0.0
5507lrwxrwxrwx root root 21 ./usr/lib/libxcb-xtest.so.0 -> libxcb-xtest.so.0.0.0
5508lrwxrwxrwx root root 21 ./usr/lib/libxcb-xtest.so -> libxcb-xtest.so.0.0.0
5509-rwxr-xr-x root root 18344 ./usr/lib/libxcb-xvmc.so.0.0.0
5510lrwxrwxrwx root root 20 ./usr/lib/libxcb-xvmc.so.0 -> libxcb-xvmc.so.0.0.0
5511lrwxrwxrwx root root 20 ./usr/lib/libxcb-xvmc.so -> libxcb-xvmc.so.0.0.0
5512-rwxr-xr-x root root 34728 ./usr/lib/libxcb-xv.so.0.0.0
5513lrwxrwxrwx root root 18 ./usr/lib/libxcb-xv.so.0 -> libxcb-xv.so.0.0.0
5514lrwxrwxrwx root root 18 ./usr/lib/libxcb-xv.so -> libxcb-xv.so.0.0.0
5515-rwxr-xr-x root root 14144 ./usr/lib/libXdamage.so.1.1.0
5516lrwxrwxrwx root root 19 ./usr/lib/libXdamage.so.1 -> libXdamage.so.1.1.0
5517lrwxrwxrwx root root 19 ./usr/lib/libXdamage.so -> libXdamage.so.1.1.0
5518-rwxr-xr-x root root 26432 ./usr/lib/libXdmcp.so.6.0.0
5519lrwxrwxrwx root root 17 ./usr/lib/libXdmcp.so.6 -> libXdmcp.so.6.0.0
5520lrwxrwxrwx root root 17 ./usr/lib/libXdmcp.so -> libXdmcp.so.6.0.0
5521-rwxr-xr-x root root 80992 ./usr/lib/libXext.so.6.4.0
5522lrwxrwxrwx root root 16 ./usr/lib/libXext.so.6 -> libXext.so.6.4.0
5523lrwxrwxrwx root root 16 ./usr/lib/libXext.so -> libXext.so.6.4.0
5524-rwxr-xr-x root root 30464 ./usr/lib/libXfixes.so.3.1.0
5525lrwxrwxrwx root root 18 ./usr/lib/libXfixes.so.3 -> libXfixes.so.3.1.0
5526lrwxrwxrwx root root 18 ./usr/lib/libXfixes.so -> libXfixes.so.3.1.0
5527-rwxr-xr-x root root 1409880 ./usr/lib/libxml2.so.2.9.10
5528lrwxrwxrwx root root 17 ./usr/lib/libxml2.so.2 -> libxml2.so.2.9.10
5529lrwxrwxrwx root root 17 ./usr/lib/libxml2.so -> libxml2.so.2.9.10
5530-rwxr-xr-x root root 47024 ./usr/lib/libXrandr.so.2.2.0
5531lrwxrwxrwx root root 18 ./usr/lib/libXrandr.so.2 -> libXrandr.so.2.2.0
5532lrwxrwxrwx root root 18 ./usr/lib/libXrandr.so -> libXrandr.so.2.2.0
5533-rwxr-xr-x root root 47184 ./usr/lib/libXrender.so.1.3.0
5534lrwxrwxrwx root root 19 ./usr/lib/libXrender.so.1 -> libXrender.so.1.3.0
5535lrwxrwxrwx root root 19 ./usr/lib/libXrender.so -> libXrender.so.1.3.0
5536-rwxr-xr-x root root 14152 ./usr/lib/libxshmfence.so.1.0.0
5537lrwxrwxrwx root root 21 ./usr/lib/libxshmfence.so.1 -> libxshmfence.so.1.0.0
5538lrwxrwxrwx root root 21 ./usr/lib/libxshmfence.so -> libxshmfence.so.1.0.0
5539-rwxr-xr-x root root 63384 ./usr/lib/libxtables.so.12.2.0
5540lrwxrwxrwx root root 20 ./usr/lib/libxtables.so.12 -> libxtables.so.12.2.0
5541lrwxrwxrwx root root 20 ./usr/lib/libxtables.so -> libxtables.so.12.2.0
5542-rwxr-xr-x root root 22456 ./usr/lib/libXxf86vm.so.1.0.0
5543lrwxrwxrwx root root 19 ./usr/lib/libXxf86vm.so.1 -> libXxf86vm.so.1.0.0
5544lrwxrwxrwx root root 19 ./usr/lib/libXxf86vm.so -> libXxf86vm.so.1.0.0
5545lrwxrwxrwx root root 24 ./usr/lib/libz.so -> ../../lib/libz.so.1.2.11
5546-rw-r--r-- root root 1368 ./usr/lib/Mcrt1.o
5547drwxr-xr-x root root 4096 ./usr/lib/opkg
5548drwxr-xr-x root root 12288 ./usr/lib/opkg/alternatives
5549-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/[[
5550-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/addgroup
5551-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/addr2line
5552-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/adduser
5553-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ar
5554-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/arch
5555-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/as
5556-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/ash
5557-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/awk
5558-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/base64
5559-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/basename
5560-rw-r--r-- root root 29 ./usr/lib/opkg/alternatives/bash
5561-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/bc
5562-rw-r--r-- root root 30 ./usr/lib/opkg/alternatives/bin-lsmod
5563-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/blkid
5564-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/blockdev
5565-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/bunzip2
5566-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/bzcat
5567-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/bzip2
5568-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/cal
5569-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/cat
5570-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/c++filt
5571-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/chattr
5572-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/chcon
5573-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/chfn
5574-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chgrp
5575-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chmod
5576-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/chown
5577-rw-r--r-- root root 49 ./usr/lib/opkg/alternatives/chpasswd
5578-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/chroot
5579-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/chrt
5580-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/chsh
5581-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/chvt
5582-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/cksum
5583-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/clear
5584-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/cmp
5585-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/comm
5586-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/cp
5587-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/cpio
5588-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/csplit
5589-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/cut
5590-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/date
5591-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/dc
5592-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/dd
5593-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/deallocvt
5594-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/delgroup
5595-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/deluser
5596-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/depmod
5597-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/df
5598-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/diff
5599-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/dir
5600-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/dircolors
5601-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/dirname
5602-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/dmesg
5603-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/dnsdomainname
5604-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/du
5605-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/dumpkmap
5606-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/dumpleases
5607-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/dwp
5608-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/echo
5609-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/egrep
5610-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/eject
5611-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/elfedit
5612-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/env
5613-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/expand
5614-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/expr
5615-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/factor
5616-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/fallocate
5617-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/false
5618-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/fbset
5619-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/fdisk
5620-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/fgrep
5621-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/find
5622-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/flock
5623-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/fmt
5624-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/fold
5625-rw-r--r-- root root 62 ./usr/lib/opkg/alternatives/free
5626-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/fsck
5627-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/fsfreeze
5628-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/fstrim
5629-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/fuser
5630-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/getopt
5631-rw-r--r-- root root 51 ./usr/lib/opkg/alternatives/getty
5632-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/gprof
5633-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/grep
5634-rw-r--r-- root root 96 ./usr/lib/opkg/alternatives/groups
5635-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/gunzip
5636-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/gzip
5637-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/halt
5638-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/head
5639-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/hexdump
5640-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/hostid
5641-rw-r--r-- root root 64 ./usr/lib/opkg/alternatives/hostname
5642-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/hwclock
5643-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/id
5644-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/ifconfig
5645-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/ifdown
5646-rw-r--r-- root root 34 ./usr/lib/opkg/alternatives/ifup
5647-rw-r--r-- root root 34 ./usr/lib/opkg/alternatives/init
5648-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/insmod
5649-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/install
5650-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ionice
5651-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ip
5652-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/join
5653-rw-r--r-- root root 102 ./usr/lib/opkg/alternatives/kill
5654-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/killall
5655-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/klogd
5656-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/last
5657-rw-r--r-- root root 72 ./usr/lib/opkg/alternatives/lastb
5658-rw-r--r-- root root 66 ./usr/lib/opkg/alternatives/lbracket
5659-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/ld
5660-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ld.bfd
5661-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/ld.gold
5662-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/less
5663-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/link
5664-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/ln
5665-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/loadfont
5666-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/loadkmap
5667-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/logger
5668-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/login
5669-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/logname
5670-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/logread
5671-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/losetup
5672-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/ls
5673-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/lsmod
5674-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/lzcat
5675-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/lzma
5676-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/md5sum
5677-rw-r--r-- root root 92 ./usr/lib/opkg/alternatives/mesg
5678-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/microcom
5679-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mkdir
5680-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/mke2fs
5681-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/mkfifo
5682-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/mkfs.ext2
5683-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mknod
5684-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/mkswap
5685-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/mktemp
5686-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/modinfo
5687-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/modprobe
5688-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/more
5689-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/mount
5690-rw-r--r-- root root 97 ./usr/lib/opkg/alternatives/mountpoint
5691-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/mv
5692-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/nc
5693-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/netstat
5694-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/newgrp
5695-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/nice
5696-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/nl
5697-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/nm
5698-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nohup
5699-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nologin
5700-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/nproc
5701-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/nsenter
5702-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/nslookup
5703-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/objcopy
5704-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/objdump
5705-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/od
5706-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/openvt
5707-rw-r--r-- root root 64 ./usr/lib/opkg/alternatives/passwd
5708-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/paste
5709-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/patch
5710-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/pathchk
5711-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/pgrep
5712-rw-r--r-- root root 80 ./usr/lib/opkg/alternatives/pidof
5713-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/ping
5714-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/ping6
5715-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/pinky
5716-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/pivot_root
5717-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/pkill
5718-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/pmap
5719-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/poweroff
5720-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/pr
5721-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/printenv
5722-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/printf
5723-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/ps
5724-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/ptx
5725-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/pwd
5726-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/pwdx
5727-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/python3-config
5728-rw-r--r-- root root 54 ./usr/lib/opkg/alternatives/ranlib
5729-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/rdate
5730-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/readelf
5731-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/readlink
5732-rw-r--r-- root root 58 ./usr/lib/opkg/alternatives/readprofile
5733-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/realpath
5734-rw-r--r-- root root 62 ./usr/lib/opkg/alternatives/reboot
5735-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/renice
5736-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/reset
5737-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/resize
5738-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/rev
5739-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/rfkill
5740-rw-r--r-- root root 53 ./usr/lib/opkg/alternatives/rm
5741-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/rmdir
5742-rw-r--r-- root root 55 ./usr/lib/opkg/alternatives/rmmod
5743-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/route
5744-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/rtcwake
5745-rw-r--r-- root root 46 ./usr/lib/opkg/alternatives/runcon
5746-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/runlevel
5747-rw-r--r-- root root 38 ./usr/lib/opkg/alternatives/run-parts
5748-rw-r--r-- root root 49 ./usr/lib/opkg/alternatives/sed
5749-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/seq
5750-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/setconsole
5751-rw-r--r-- root root 45 ./usr/lib/opkg/alternatives/setfattr
5752-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/setpriv
5753-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/setsid
5754-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/sh
5755-rw-r--r-- root root 71 ./usr/lib/opkg/alternatives/sha1sum
5756-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha224sum
5757-rw-r--r-- root root 75 ./usr/lib/opkg/alternatives/sha256sum
5758-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha384sum
5759-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/sha512sum
5760-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/shred
5761-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/shuf
5762-rw-r--r-- root root 43 ./usr/lib/opkg/alternatives/shutdown
5763-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/size
5764-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/skill
5765-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/sleep
5766-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/snice
5767-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/sort
5768-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/split
5769-rw-r--r-- root root 47 ./usr/lib/opkg/alternatives/start-stop-daemon
5770-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/stat
5771-rw-r--r-- root root 79 ./usr/lib/opkg/alternatives/strings
5772-rw-r--r-- root root 52 ./usr/lib/opkg/alternatives/strip
5773-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/stty
5774-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/su
5775-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/sulogin
5776-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/sum
5777-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/swapoff
5778-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/swapon
5779-rw-r--r-- root root 73 ./usr/lib/opkg/alternatives/switch_root
5780-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/sync
5781-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/sysctl
5782-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/syslogd
5783-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/tac
5784-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/tail
5785-rw-r--r-- root root 32 ./usr/lib/opkg/alternatives/tar
5786-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/taskset
5787-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/tee
5788-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/telnet
5789-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/test
5790-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/tftp
5791-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/time
5792-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/timeout
5793-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/top
5794-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/touch
5795-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/tr
5796-rw-r--r-- root root 41 ./usr/lib/opkg/alternatives/traceroute
5797-rw-r--r-- root root 57 ./usr/lib/opkg/alternatives/true
5798-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/truncate
5799-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/ts
5800-rw-r--r-- root root 44 ./usr/lib/opkg/alternatives/tsort
5801-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/tty
5802-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/udhcpc
5803-rw-r--r-- root root 40 ./usr/lib/opkg/alternatives/udhcpd
5804-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/umount
5805-rw-r--r-- root root 59 ./usr/lib/opkg/alternatives/uname
5806-rw-r--r-- root root 50 ./usr/lib/opkg/alternatives/unexpand
5807-rw-r--r-- root root 65 ./usr/lib/opkg/alternatives/uniq
5808-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/unlink
5809-rw-r--r-- root root 39 ./usr/lib/opkg/alternatives/unlzma
5810-rw-r--r-- root root 48 ./usr/lib/opkg/alternatives/unshare
5811-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/unxz
5812-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/unzip
5813-rw-r--r-- root root 96 ./usr/lib/opkg/alternatives/uptime
5814-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/users
5815-rw-r--r-- root root 35 ./usr/lib/opkg/alternatives/usleep
5816-rw-r--r-- root root 81 ./usr/lib/opkg/alternatives/utmpdump
5817-rw-r--r-- root root 42 ./usr/lib/opkg/alternatives/vdir
5818-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/vi
5819-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/vigr
5820-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/vipw
5821-rw-r--r-- root root 36 ./usr/lib/opkg/alternatives/vlock
5822-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/w
5823-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/wall
5824-rw-r--r-- root root 56 ./usr/lib/opkg/alternatives/watch
5825-rw-r--r-- root root 61 ./usr/lib/opkg/alternatives/wc
5826-rw-r--r-- root root 37 ./usr/lib/opkg/alternatives/wget
5827-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/which
5828-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/who
5829-rw-r--r-- root root 69 ./usr/lib/opkg/alternatives/whoami
5830-rw-r--r-- root root 67 ./usr/lib/opkg/alternatives/xargs
5831-rw-r--r-- root root 31 ./usr/lib/opkg/alternatives/xz
5832-rw-r--r-- root root 60 ./usr/lib/opkg/alternatives/xzcat
5833-rw-r--r-- root root 63 ./usr/lib/opkg/alternatives/yes
5834-rw-r--r-- root root 33 ./usr/lib/opkg/alternatives/zcat
5835drwxr-xr-x root root 4096 ./usr/lib/perl5
5836drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2
5837-rwxr-xr-x root root 3305 ./usr/lib/perl5/5.30.2/Config.pm
5838drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/ExtUtils
5839-r--r--r-- root root 1105 ./usr/lib/perl5/5.30.2/ExtUtils/MANIFEST.SKIP
5840-rwxr-xr-x root root 11315 ./usr/lib/perl5/5.30.2/ExtUtils/typemap
5841-r--r--r-- root root 5071 ./usr/lib/perl5/5.30.2/ExtUtils/xsubpp
5842-r--r--r-- root root 4738 ./usr/lib/perl5/5.30.2/strict.pm
5843-r--r--r-- root root 2458 ./usr/lib/perl5/5.30.2/vars.pm
5844drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/warnings
5845-r--r--r-- root root 49989 ./usr/lib/perl5/5.30.2/warnings.pm
5846-r--r--r-- root root 759 ./usr/lib/perl5/5.30.2/warnings/register.pm
5847drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/x86_64-linux
5848-r--r--r-- root root 409 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_git.pl
5849-r--r--r-- root root 43123 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_heavy.pl
5850lrwxrwxrwx root root 15 ./usr/lib/perl5/5.30.2/x86_64-linux/Config_heavy-target.pl -> Config_heavy.pl
5851-r--r--r-- root root 3305 ./usr/lib/perl5/5.30.2/x86_64-linux/Config.pm
5852drwxr-xr-x root root 4096 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE
5853-r--r--r-- root root 3294 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/av.h
5854-r--r--r-- root root 850 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/bitcount.h
5855-r--r--r-- root root 4114121 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/charclass_invlists.h
5856-r--r--r-- root root 162839 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/config.h
5857-r--r--r-- root root 40671 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/cop.h
5858-r--r--r-- root root 12323 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/cv.h
5859-r--r--r-- root root 5461 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/dosish.h
5860-r--r--r-- root root 1861 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/dquote_inline.h
5861-r--r--r-- root root 49548 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/ebcdic_tables.h
5862-r--r--r-- root root 102635 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/embed.h
5863-r--r--r-- root root 23467 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/embedvar.h
5864-r--r--r-- root root 1652 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/EXTERN.h
5865-r--r--r-- root root 3210 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/fakesdio.h
5866-r--r--r-- root root 5046 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/feature.h
5867-r--r--r-- root root 1463 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/form.h
5868-r--r--r-- root root 357 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/git_version.h
5869-r--r--r-- root root 10711 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/gv.h
5870-r--r--r-- root root 126538 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/handy.h
5871-r--r--r-- root root 10786 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv_func.h
5872-r--r--r-- root root 25545 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv.h
5873-r--r--r-- root root 2953 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/hv_macro.h
5874-r--r--r-- root root 68866 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/inline.h
5875-r--r--r-- root root 1309 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/INTERN.h
5876-r--r--r-- root root 29425 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/intrpvar.h
5877-r--r--r-- root root 2976 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/invlist_inline.h
5878-r--r--r-- root root 48759 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/iperlsys.h
5879-r--r--r-- root root 6587 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/keywords.h
5880-r--r--r-- root root 126938 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/l1_char_class_tab.h
5881lrwxrwxrwx root root 29 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/libperl.so -> ../../../../libperl.so.5.30.0
5882-r--r--r-- root root 1524 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/malloc_ctl.h
5883-r--r--r-- root root 952 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/metaconfig.h
5884-r--r--r-- root root 5021 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_data.h
5885-r--r--r-- root root 3013 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg.h
5886-r--r--r-- root root 4377 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_raw.h
5887-r--r--r-- root root 9562 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mg_vtable.h
5888-r--r--r-- root root 1693 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/mydtrace.h
5889-r--r--r-- root root 3392 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/nostdio.h
5890-r--r--r-- root root 93275 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/opcode.h
5891-r--r--r-- root root 36350 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/op.h
5892-r--r--r-- root root 8860 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/opnames.h
5893-r--r--r-- root root 5911 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/op_reg_common.h
5894-r--r--r-- root root 3276 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/overload.h
5895-r--r--r-- root root 17220 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pad.h
5896-r--r--r-- root root 6993 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/parser.h
5897-r--r--r-- root root 5321 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/patchlevel.h
5898-r--r--r-- root root 10170 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlapi.h
5899-r--r--r-- root root 270251 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl.h
5900-r--r--r-- root root 6223 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl_inc_macro.h
5901-r--r--r-- root root 9464 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlio.h
5902-r--r--r-- root root 13761 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perliol.h
5903-r--r--r-- root root 2973 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perl_langinfo.h
5904-r--r--r-- root root 527 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlsdio.h
5905-r--r--r-- root root 13314 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perlvars.h
5906-r--r--r-- root root 4434 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/perly.h
5907-r--r--r-- root root 28969 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pp.h
5908-r--r--r-- root root 12131 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/pp_proto.h
5909-r--r--r-- root root 258888 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/proto.h
5910-r--r--r-- root root 78454 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/reentr.h
5911-r--r--r-- root root 140155 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regcharclass.h
5912-r--r--r-- root root 48923 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regcomp.h
5913-r--r--r-- root root 36671 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regexp.h
5914-r--r--r-- root root 38053 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/regnodes.h
5915-r--r--r-- root root 57294 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/sbox32_hash.h
5916-r--r--r-- root root 11887 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/scope.h
5917-r--r--r-- root root 10477 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/stadtx_hash.h
5918-r--r--r-- root root 85432 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/sv.h
5919-r--r--r-- root root 12095 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/thread.h
5920-r--r--r-- root root 2048 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/time64_config.h
5921-r--r--r-- root root 1588 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/time64.h
5922-r--r--r-- root root 44 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/try.h
5923-r--r--r-- root root 163425 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uconfig.h
5924-r--r--r-- root root 8027 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/unicode_constants.h
5925-r--r--r-- root root 535594 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uni_keywords.h
5926-r--r--r-- root root 5193 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/unixish.h
5927-r--r--r-- root root 47587 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/utf8.h
5928-r--r--r-- root root 67051 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/utfebcdic.h
5929-r--r--r-- root root 10011 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/util.h
5930-r--r--r-- root root 904 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/uudmap.h
5931-r--r--r-- root root 7993 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/vutil.h
5932-r--r--r-- root root 8230 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/warnings.h
5933-r--r--r-- root root 24399 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/XSUB.h
5934-r--r--r-- root root 10541 ./usr/lib/perl5/5.30.2/x86_64-linux/CORE/zaphod32_hash.h
5935-rwxr-xr-x root root 36089 ./usr/lib/perl5/config.sh
5936drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl
5937drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl/5.30.2
5938drwxr-xr-x root root 4096 ./usr/lib/perl5/site_perl/5.30.2/x86_64-linux
5939drwxr-xr-x root root 4096 ./usr/lib/pkgconfig
5940-rw-r--r-- root root 154 ./usr/lib/pkgconfig/applewmproto.pc
5941-rw-r--r-- root root 900 ./usr/lib/pkgconfig/bash.pc
5942-rw-r--r-- root root 154 ./usr/lib/pkgconfig/bigreqsproto.pc
5943-rw-r--r-- root root 191 ./usr/lib/pkgconfig/blkid.pc
5944-rw-r--r-- root root 242 ./usr/lib/pkgconfig/cairo-fc.pc
5945-rw-r--r-- root root 239 ./usr/lib/pkgconfig/cairo-ft.pc
5946-rw-r--r-- root root 223 ./usr/lib/pkgconfig/cairo-gl.pc
5947-rw-r--r-- root root 217 ./usr/lib/pkgconfig/cairo-glx.pc
5948-rw-r--r-- root root 276 ./usr/lib/pkgconfig/cairo-gobject.pc
5949-rw-r--r-- root root 446 ./usr/lib/pkgconfig/cairo.pc
5950-rw-r--r-- root root 222 ./usr/lib/pkgconfig/cairo-pdf.pc
5951-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-png.pc
5952-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-ps.pc
5953-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-script.pc
5954-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-svg.pc
5955-rw-r--r-- root root 219 ./usr/lib/pkgconfig/cairo-tee.pc
5956-rw-r--r-- root root 247 ./usr/lib/pkgconfig/cairo-xcb.pc
5957-rw-r--r-- root root 228 ./usr/lib/pkgconfig/cairo-xcb-shm.pc
5958-rw-r--r-- root root 229 ./usr/lib/pkgconfig/cairo-xlib.pc
5959-rw-r--r-- root root 256 ./usr/lib/pkgconfig/cairo-xlib-xrender.pc
5960-rw-r--r-- root root 247 ./usr/lib/pkgconfig/com_err.pc
5961-rw-r--r-- root root 158 ./usr/lib/pkgconfig/compositeproto.pc
5962-rw-r--r-- root root 152 ./usr/lib/pkgconfig/damageproto.pc
5963-rw-r--r-- root root 607 ./usr/lib/pkgconfig/dbus-1.pc
5964-rw-r--r-- root root 275 ./usr/lib/pkgconfig/dbus-python.pc
5965-rw-r--r-- root root 146 ./usr/lib/pkgconfig/dmxproto.pc
5966-rw-r--r-- root root 146 ./usr/lib/pkgconfig/dpmsproto.pc
5967-rw-r--r-- root root 146 ./usr/lib/pkgconfig/dri2proto.pc
5968-rw-r--r-- root root 146 ./usr/lib/pkgconfig/dri3proto.pc
5969-rw-r--r-- root root 226 ./usr/lib/pkgconfig/e2p.pc
5970-rw-r--r-- root root 206 ./usr/lib/pkgconfig/expat.pc
5971-rw-r--r-- root root 223 ./usr/lib/pkgconfig/ext2fs.pc
5972-rw-r--r-- root root 213 ./usr/lib/pkgconfig/fdisk.pc
5973-rw-r--r-- root root 148 ./usr/lib/pkgconfig/fixesproto.pc
5974-rw-r--r-- root root 407 ./usr/lib/pkgconfig/fontconfig.pc
5975-rw-r--r-- root root 150 ./usr/lib/pkgconfig/fontsproto.pc
5976-rw-r--r-- root root 469 ./usr/lib/pkgconfig/form.pc
5977-rw-r--r-- root root 454 ./usr/lib/pkgconfig/formw.pc
5978-rw-r--r-- root root 310 ./usr/lib/pkgconfig/freetype2.pc
5979-rw-r--r-- root root 630 ./usr/lib/pkgconfig/gio-2.0.pc
5980-rw-r--r-- root root 231 ./usr/lib/pkgconfig/gio-unix-2.0.pc
5981-rw-r--r-- root root 377 ./usr/lib/pkgconfig/glib-2.0.pc
5982-rw-r--r-- root root 354 ./usr/lib/pkgconfig/gl.pc
5983-rw-r--r-- root root 145 ./usr/lib/pkgconfig/glproto.pc
5984-rw-r--r-- root root 253 ./usr/lib/pkgconfig/gmodule-2.0.pc
5985-rw-r--r-- root root 253 ./usr/lib/pkgconfig/gmodule-export-2.0.pc
5986-rw-r--r-- root root 272 ./usr/lib/pkgconfig/gmodule-no-export-2.0.pc
5987-rw-r--r-- root root 225 ./usr/lib/pkgconfig/gmp.pc
5988-rw-r--r-- root root 260 ./usr/lib/pkgconfig/gmpxx.pc
5989-rw-r--r-- root root 286 ./usr/lib/pkgconfig/gobject-2.0.pc
5990-rw-r--r-- root root 649 ./usr/lib/pkgconfig/gobject-introspection-1.0.pc
5991-rw-r--r-- root root 612 ./usr/lib/pkgconfig/gobject-introspection-no-export-1.0.pc
5992-rw-r--r-- root root 222 ./usr/lib/pkgconfig/gthread-2.0.pc
5993-rw-r--r-- root root 206 ./usr/lib/pkgconfig/ice.pc
5994-rw-r--r-- root root 150 ./usr/lib/pkgconfig/inputproto.pc
5995-rw-r--r-- root root 144 ./usr/lib/pkgconfig/kbproto.pc
5996-rw-r--r-- root root 204 ./usr/lib/pkgconfig/libacl.pc
5997-rw-r--r-- root root 217 ./usr/lib/pkgconfig/libattr.pc
5998-rw-r--r-- root root 208 ./usr/lib/pkgconfig/libcap-ng.pc
5999-rw-r--r-- root root 209 ./usr/lib/pkgconfig/libcap.pc
6000-rw-r--r-- root root 275 ./usr/lib/pkgconfig/libcrypto.pc
6001lrwxrwxrwx root root 12 ./usr/lib/pkgconfig/libcrypt.pc -> libxcrypt.pc
6002-rw-r--r-- root root 269 ./usr/lib/pkgconfig/libdrm_amdgpu.pc
6003-rw-r--r-- root root 266 ./usr/lib/pkgconfig/libdrm_etnaviv.pc
6004-rw-r--r-- root root 300 ./usr/lib/pkgconfig/libdrm_freedreno.pc
6005-rw-r--r-- root root 254 ./usr/lib/pkgconfig/libdrm_intel.pc
6006-rw-r--r-- root root 299 ./usr/lib/pkgconfig/libdrm_nouveau.pc
6007-rw-r--r-- root root 276 ./usr/lib/pkgconfig/libdrm_omap.pc
6008-rw-r--r-- root root 219 ./usr/lib/pkgconfig/libdrm.pc
6009-rw-r--r-- root root 269 ./usr/lib/pkgconfig/libdrm_radeon.pc
6010-rw-r--r-- root root 205 ./usr/lib/pkgconfig/libdrm_vc4.pc
6011-rw-r--r-- root root 633 ./usr/lib/pkgconfig/libdw.pc
6012-rw-r--r-- root root 262 ./usr/lib/pkgconfig/libelf.pc
6013-rw-r--r-- root root 237 ./usr/lib/pkgconfig/libffi.pc
6014-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libip4tc.pc
6015-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libip6tc.pc
6016-rw-r--r-- root root 190 ./usr/lib/pkgconfig/libiptc.pc
6017-rw-r--r-- root root 213 ./usr/lib/pkgconfig/libkmod.pc
6018-rw-r--r-- root root 258 ./usr/lib/pkgconfig/libkms.pc
6019-rw-r--r-- root root 390 ./usr/lib/pkgconfig/liblzma.pc
6020-rw-r--r-- root root 292 ./usr/lib/pkgconfig/libmnl.pc
6021-rw-r--r-- root root 247 ./usr/lib/pkgconfig/libnsl.pc
6022-rw-r--r-- root root 243 ./usr/lib/pkgconfig/libpcrecpp.pc
6023-rw-r--r-- root root 305 ./usr/lib/pkgconfig/libpcre.pc
6024-rw-r--r-- root root 285 ./usr/lib/pkgconfig/libpcreposix.pc
6025-rw-r--r-- root root 239 ./usr/lib/pkgconfig/libpng16.pc
6026lrwxrwxrwx root root 11 ./usr/lib/pkgconfig/libpng.pc -> libpng16.pc
6027-rw-r--r-- root root 223 ./usr/lib/pkgconfig/libprocps.pc
6028-rw-r--r-- root root 254 ./usr/lib/pkgconfig/libpsx.pc
6029-rw-r--r-- root root 254 ./usr/lib/pkgconfig/libssl.pc
6030-rw-r--r-- root root 235 ./usr/lib/pkgconfig/libtirpc.pc
6031-rw-r--r-- root root 493 ./usr/lib/pkgconfig/libudev.pc
6032-rw-r--r-- root root 367 ./usr/lib/pkgconfig/libxcrypt.pc
6033-rw-r--r-- root root 243 ./usr/lib/pkgconfig/libxml-2.0.pc
6034-rw-r--r-- root root 500 ./usr/lib/pkgconfig/lzo2.pc
6035-rw-r--r-- root root 469 ./usr/lib/pkgconfig/menu.pc
6036-rw-r--r-- root root 454 ./usr/lib/pkgconfig/menuw.pc
6037-rw-r--r-- root root 627 ./usr/lib/pkgconfig/mount.pc
6038-rw-r--r-- root root 469 ./usr/lib/pkgconfig/ncurses.pc
6039-rw-r--r-- root root 498 ./usr/lib/pkgconfig/ncurses++.pc
6040-rw-r--r-- root root 486 ./usr/lib/pkgconfig/ncurses++w.pc
6041-rw-r--r-- root root 453 ./usr/lib/pkgconfig/ncursesw.pc
6042-rw-r--r-- root root 208 ./usr/lib/pkgconfig/openssl.pc
6043-rw-r--r-- root root 471 ./usr/lib/pkgconfig/panel.pc
6044-rw-r--r-- root root 456 ./usr/lib/pkgconfig/panelw.pc
6045-rw-r--r-- root root 228 ./usr/lib/pkgconfig/pciaccess.pc
6046-rw-r--r-- root root 224 ./usr/lib/pkgconfig/pixman-1.pc
6047-rw-r--r-- root root 152 ./usr/lib/pkgconfig/presentproto.pc
6048-rw-r--r-- root root 224 ./usr/lib/pkgconfig/pthread-stubs.pc
6049-rw-r--r-- root root 182 ./usr/lib/pkgconfig/py3cairo.pc
6050-rw-r--r-- root root 706 ./usr/lib/pkgconfig/pygobject-3.0.pc
6051-rw-r--r-- root root 297 ./usr/lib/pkgconfig/python-3.8-embed.pc
6052-rw-r--r-- root root 271 ./usr/lib/pkgconfig/python-3.8.pc
6053lrwxrwxrwx root root 19 ./usr/lib/pkgconfig/python3-embed.pc -> python-3.8-embed.pc
6054lrwxrwxrwx root root 13 ./usr/lib/pkgconfig/python3.pc -> python-3.8.pc
6055-rw-r--r-- root root 150 ./usr/lib/pkgconfig/randrproto.pc
6056-rw-r--r-- root root 302 ./usr/lib/pkgconfig/readline.pc
6057-rw-r--r-- root root 153 ./usr/lib/pkgconfig/recordproto.pc
6058-rw-r--r-- root root 153 ./usr/lib/pkgconfig/renderproto.pc
6059-rw-r--r-- root root 156 ./usr/lib/pkgconfig/resourceproto.pc
6060-rw-r--r-- root root 158 ./usr/lib/pkgconfig/scrnsaverproto.pc
6061-rw-r--r-- root root 204 ./usr/lib/pkgconfig/smartcols.pc
6062-rw-r--r-- root root 222 ./usr/lib/pkgconfig/sm.pc
6063-rw-r--r-- root root 256 ./usr/lib/pkgconfig/sqlite3.pc
6064-rw-r--r-- root root 249 ./usr/lib/pkgconfig/ss.pc
6065-rw-r--r-- root root 467 ./usr/lib/pkgconfig/tic.pc
6066-rw-r--r-- root root 452 ./usr/lib/pkgconfig/ticw.pc
6067-rw-r--r-- root root 458 ./usr/lib/pkgconfig/tinfo.pc
6068-rw-r--r-- root root 204 ./usr/lib/pkgconfig/uuid.pc
6069-rw-r--r-- root root 150 ./usr/lib/pkgconfig/videoproto.pc
6070-rw-r--r-- root root 314 ./usr/lib/pkgconfig/wayland-client.pc
6071-rw-r--r-- root root 234 ./usr/lib/pkgconfig/wayland-cursor.pc
6072-rw-r--r-- root root 166 ./usr/lib/pkgconfig/wayland-egl-backend.pc
6073-rw-r--r-- root root 219 ./usr/lib/pkgconfig/wayland-egl.pc
6074-rw-r--r-- root root 269 ./usr/lib/pkgconfig/wayland-scanner.pc
6075-rw-r--r-- root root 337 ./usr/lib/pkgconfig/wayland-server.pc
6076-rw-r--r-- root root 270 ./usr/lib/pkgconfig/x11.pc
6077-rw-r--r-- root root 206 ./usr/lib/pkgconfig/x11-xcb.pc
6078-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xau.pc
6079-rw-r--r-- root root 232 ./usr/lib/pkgconfig/xcb-composite.pc
6080-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-damage.pc
6081-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dpms.pc
6082-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dri2.pc
6083-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-dri3.pc
6084-rw-r--r-- root root 203 ./usr/lib/pkgconfig/xcb-glx.pc
6085-rw-r--r-- root root 251 ./usr/lib/pkgconfig/xcb.pc
6086-rw-r--r-- root root 245 ./usr/lib/pkgconfig/xcb-present.pc
6087-rw-r--r-- root root 273 ./usr/lib/pkgconfig/xcb-proto.pc
6088-rw-r--r-- root root 220 ./usr/lib/pkgconfig/xcb-randr.pc
6089-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xcb-record.pc
6090-rw-r--r-- root root 212 ./usr/lib/pkgconfig/xcb-render.pc
6091-rw-r--r-- root root 210 ./usr/lib/pkgconfig/xcb-res.pc
6092-rw-r--r-- root root 227 ./usr/lib/pkgconfig/xcb-screensaver.pc
6093-rw-r--r-- root root 209 ./usr/lib/pkgconfig/xcb-shape.pc
6094-rw-r--r-- root root 203 ./usr/lib/pkgconfig/xcb-shm.pc
6095-rw-r--r-- root root 206 ./usr/lib/pkgconfig/xcb-sync.pc
6096-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-xf86dri.pc
6097-rw-r--r-- root root 233 ./usr/lib/pkgconfig/xcb-xfixes.pc
6098-rw-r--r-- root root 218 ./usr/lib/pkgconfig/xcb-xinerama.pc
6099-rw-r--r-- root root 238 ./usr/lib/pkgconfig/xcb-xinput.pc
6100-rw-r--r-- root root 223 ./usr/lib/pkgconfig/xcb-xkb.pc
6101-rw-r--r-- root root 209 ./usr/lib/pkgconfig/xcb-xtest.pc
6102-rw-r--r-- root root 213 ./usr/lib/pkgconfig/xcb-xvmc.pc
6103-rw-r--r-- root root 208 ./usr/lib/pkgconfig/xcb-xv.pc
6104-rw-r--r-- root root 152 ./usr/lib/pkgconfig/xcmiscproto.pc
6105-rw-r--r-- root root 254 ./usr/lib/pkgconfig/xdamage.pc
6106-rw-r--r-- root root 220 ./usr/lib/pkgconfig/xdmcp.pc
6107-rw-r--r-- root root 225 ./usr/lib/pkgconfig/xext.pc
6108-rw-r--r-- root root 148 ./usr/lib/pkgconfig/xextproto.pc
6109-rw-r--r-- root root 162 ./usr/lib/pkgconfig/xf86bigfontproto.pc
6110-rw-r--r-- root root 152 ./usr/lib/pkgconfig/xf86dgaproto.pc
6111-rw-r--r-- root root 162 ./usr/lib/pkgconfig/xf86driproto.pc
6112-rw-r--r-- root root 162 ./usr/lib/pkgconfig/xf86vidmodeproto.pc
6113-rw-r--r-- root root 236 ./usr/lib/pkgconfig/xfixes.pc
6114-rw-r--r-- root root 156 ./usr/lib/pkgconfig/xineramaproto.pc
6115-rw-r--r-- root root 143 ./usr/lib/pkgconfig/xproto.pc
6116-rw-r--r-- root root 248 ./usr/lib/pkgconfig/xrandr.pc
6117-rw-r--r-- root root 244 ./usr/lib/pkgconfig/xrender.pc
6118-rw-r--r-- root root 216 ./usr/lib/pkgconfig/xshmfence.pc
6119-rw-r--r-- root root 261 ./usr/lib/pkgconfig/xtables.pc
6120-rw-r--r-- root root 255 ./usr/lib/pkgconfig/xxf86vm.pc
6121-rw-r--r-- root root 233 ./usr/lib/pkgconfig/zlib.pc
6122drwxr-xr-x root root 4096 ./usr/lib/python3.8
6123-rw-r--r-- root root 4489 ./usr/lib/python3.8/abc.py
6124-rw-r--r-- root root 96015 ./usr/lib/python3.8/argparse.py
6125-rw-r--r-- root root 18608 ./usr/lib/python3.8/ast.py
6126-rwxr-xr-x root root 20382 ./usr/lib/python3.8/base64.py
6127-rw-r--r-- root root 2214 ./usr/lib/python3.8/bisect.py
6128-rw-r--r-- root root 1801 ./usr/lib/python3.8/_bootlocale.py
6129-rw-r--r-- root root 12558 ./usr/lib/python3.8/bz2.py
6130-rw-r--r-- root root 24832 ./usr/lib/python3.8/calendar.py
6131-rw-r--r-- root root 14860 ./usr/lib/python3.8/cmd.py
6132-rw-r--r-- root root 36667 ./usr/lib/python3.8/codecs.py
6133-rw-r--r-- root root 6059 ./usr/lib/python3.8/codeop.py
6134-rw-r--r-- root root 10622 ./usr/lib/python3.8/code.py
6135drwxr-xr-x root root 4096 ./usr/lib/python3.8/collections
6136-rw-r--r-- root root 26100 ./usr/lib/python3.8/_collections_abc.py
6137-rw-r--r-- root root 68 ./usr/lib/python3.8/collections/abc.py
6138-rw-r--r-- root root 47938 ./usr/lib/python3.8/collections/__init__.py
6139drwxr-xr-x root root 4096 ./usr/lib/python3.8/collections/__pycache__
6140-rw-r--r-- root root 191 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.opt-1.pyc
6141-rw-r--r-- root root 191 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.opt-2.pyc
6142-rw-r--r-- root root 191 ./usr/lib/python3.8/collections/__pycache__/abc.cpython-38.pyc
6143-rw-r--r-- root root 46435 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.opt-1.pyc
6144-rw-r--r-- root root 35846 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.opt-2.pyc
6145-rw-r--r-- root root 46435 ./usr/lib/python3.8/collections/__pycache__/__init__.cpython-38.pyc
6146-rw-r--r-- root root 8749 ./usr/lib/python3.8/_compat_pickle.py
6147-rw-r--r-- root root 5340 ./usr/lib/python3.8/_compression.py
6148drwxr-xr-x root root 4096 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu
6149-rw-r--r-- root root 3303 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/config.c
6150-rw-r--r-- root root 1623 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/config.c.in
6151-rwxr-xr-x root root 15368 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/install-sh
6152-rw-r--r-- root root 78513 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Makefile
6153-rwxr-xr-x root root 7848 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/makesetup
6154drwxr-xr-x root root 4096 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__
6155-rw-r--r-- root root 1959 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.opt-1.pyc
6156-rw-r--r-- root root 1959 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.opt-2.pyc
6157-rw-r--r-- root root 1959 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/__pycache__/python-config.cpython-38.pyc
6158-rwxr-xr-x root root 2114 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/python-config.py
6159-rw-r--r-- root root 4488 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/python.o
6160-rw-r--r-- root root 14786 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Setup
6161-rw-r--r-- root root 13 ./usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Setup.local
6162-rw-r--r-- root root 54374 ./usr/lib/python3.8/configparser.py
6163-rw-r--r-- root root 24995 ./usr/lib/python3.8/contextlib.py
6164-rw-r--r-- root root 8661 ./usr/lib/python3.8/copy.py
6165-rw-r--r-- root root 7135 ./usr/lib/python3.8/copyreg.py
6166-rw-r--r-- root root 3610 ./usr/lib/python3.8/crypt.py
6167-rw-r--r-- root root 16144 ./usr/lib/python3.8/csv.py
6168-rw-r--r-- root root 88074 ./usr/lib/python3.8/datetime.py
6169-rw-r--r-- root root 20566 ./usr/lib/python3.8/dis.py
6170drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils
6171-rw-r--r-- root root 8572 ./usr/lib/python3.8/distutils/archive_util.py
6172-rw-r--r-- root root 14935 ./usr/lib/python3.8/distutils/bcppcompiler.py
6173-rw-r--r-- root root 47433 ./usr/lib/python3.8/distutils/ccompiler.py
6174-rw-r--r-- root root 18079 ./usr/lib/python3.8/distutils/cmd.py
6175drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/command
6176-rw-r--r-- root root 4913 ./usr/lib/python3.8/distutils/command/bdist_dumb.py
6177-rw-r--r-- root root 35295 ./usr/lib/python3.8/distutils/command/bdist_msi.py
6178-rw-r--r-- root root 5562 ./usr/lib/python3.8/distutils/command/bdist.py
6179-rw-r--r-- root root 21577 ./usr/lib/python3.8/distutils/command/bdist_rpm.py
6180-rw-r--r-- root root 16043 ./usr/lib/python3.8/distutils/command/bdist_wininst.py
6181-rw-r--r-- root root 8022 ./usr/lib/python3.8/distutils/command/build_clib.py
6182-rw-r--r-- root root 31568 ./usr/lib/python3.8/distutils/command/build_ext.py
6183-rw-r--r-- root root 5767 ./usr/lib/python3.8/distutils/command/build.py
6184-rw-r--r-- root root 17164 ./usr/lib/python3.8/distutils/command/build_py.py
6185-rw-r--r-- root root 6232 ./usr/lib/python3.8/distutils/command/build_scripts.py
6186-rw-r--r-- root root 5599 ./usr/lib/python3.8/distutils/command/check.py
6187-rw-r--r-- root root 2776 ./usr/lib/python3.8/distutils/command/clean.py
6188-rw-r--r-- root root 633 ./usr/lib/python3.8/distutils/command/command_template
6189-rw-r--r-- root root 13117 ./usr/lib/python3.8/distutils/command/config.py
6190-rw-r--r-- root root 799 ./usr/lib/python3.8/distutils/command/__init__.py
6191-rw-r--r-- root root 2822 ./usr/lib/python3.8/distutils/command/install_data.py
6192-rw-r--r-- root root 2603 ./usr/lib/python3.8/distutils/command/install_egg_info.py
6193-rw-r--r-- root root 1298 ./usr/lib/python3.8/distutils/command/install_headers.py
6194-rw-r--r-- root root 8397 ./usr/lib/python3.8/distutils/command/install_lib.py
6195-rw-r--r-- root root 26774 ./usr/lib/python3.8/distutils/command/install.py
6196-rw-r--r-- root root 2017 ./usr/lib/python3.8/distutils/command/install_scripts.py
6197drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/command/__pycache__
6198-rw-r--r-- root root 3666 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.opt-1.pyc
6199-rw-r--r-- root root 3472 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.opt-2.pyc
6200-rw-r--r-- root root 3666 ./usr/lib/python3.8/distutils/command/__pycache__/bdist.cpython-38.pyc
6201-rw-r--r-- root root 3592 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.opt-1.pyc
6202-rw-r--r-- root root 3392 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.opt-2.pyc
6203-rw-r--r-- root root 3592 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_dumb.cpython-38.pyc
6204-rw-r--r-- root root 19535 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.opt-1.pyc
6205-rw-r--r-- root root 17994 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.opt-2.pyc
6206-rw-r--r-- root root 19623 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_msi.cpython-38.pyc
6207-rw-r--r-- root root 12362 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.opt-1.pyc
6208-rw-r--r-- root root 12043 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.opt-2.pyc
6209-rw-r--r-- root root 12428 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_rpm.cpython-38.pyc
6210-rw-r--r-- root root 8423 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.opt-1.pyc
6211-rw-r--r-- root root 8284 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.opt-2.pyc
6212-rw-r--r-- root root 8489 ./usr/lib/python3.8/distutils/command/__pycache__/bdist_wininst.cpython-38.pyc
6213-rw-r--r-- root root 4814 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.opt-1.pyc
6214-rw-r--r-- root root 4260 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.opt-2.pyc
6215-rw-r--r-- root root 4814 ./usr/lib/python3.8/distutils/command/__pycache__/build_clib.cpython-38.pyc
6216-rw-r--r-- root root 3881 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.opt-1.pyc
6217-rw-r--r-- root root 3798 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.opt-2.pyc
6218-rw-r--r-- root root 3881 ./usr/lib/python3.8/distutils/command/__pycache__/build.cpython-38.pyc
6219-rw-r--r-- root root 16137 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.opt-1.pyc
6220-rw-r--r-- root root 14180 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.opt-2.pyc
6221-rw-r--r-- root root 16137 ./usr/lib/python3.8/distutils/command/__pycache__/build_ext.cpython-38.pyc
6222-rw-r--r-- root root 10405 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.opt-1.pyc
6223-rw-r--r-- root root 9198 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.opt-2.pyc
6224-rw-r--r-- root root 10462 ./usr/lib/python3.8/distutils/command/__pycache__/build_py.cpython-38.pyc
6225-rw-r--r-- root root 4324 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.opt-1.pyc
6226-rw-r--r-- root root 3930 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.opt-2.pyc
6227-rw-r--r-- root root 4324 ./usr/lib/python3.8/distutils/command/__pycache__/build_scripts.cpython-38.pyc
6228-rw-r--r-- root root 4885 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.opt-1.pyc
6229-rw-r--r-- root root 4317 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.opt-2.pyc
6230-rw-r--r-- root root 4885 ./usr/lib/python3.8/distutils/command/__pycache__/check.cpython-38.pyc
6231-rw-r--r-- root root 2100 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.opt-1.pyc
6232-rw-r--r-- root root 2017 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.opt-2.pyc
6233-rw-r--r-- root root 2100 ./usr/lib/python3.8/distutils/command/__pycache__/clean.cpython-38.pyc
6234-rw-r--r-- root root 10227 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.opt-1.pyc
6235-rw-r--r-- root root 6891 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.opt-2.pyc
6236-rw-r--r-- root root 10227 ./usr/lib/python3.8/distutils/command/__pycache__/config.cpython-38.pyc
6237-rw-r--r-- root root 543 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.opt-1.pyc
6238-rw-r--r-- root root 434 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.opt-2.pyc
6239-rw-r--r-- root root 543 ./usr/lib/python3.8/distutils/command/__pycache__/__init__.cpython-38.pyc
6240-rw-r--r-- root root 13568 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.opt-1.pyc
6241-rw-r--r-- root root 12513 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.opt-2.pyc
6242-rw-r--r-- root root 13568 ./usr/lib/python3.8/distutils/command/__pycache__/install.cpython-38.pyc
6243-rw-r--r-- root root 2289 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.opt-1.pyc
6244-rw-r--r-- root root 2144 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.opt-2.pyc
6245-rw-r--r-- root root 2289 ./usr/lib/python3.8/distutils/command/__pycache__/install_data.cpython-38.pyc
6246-rw-r--r-- root root 2996 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.opt-1.pyc
6247-rw-r--r-- root root 2317 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.opt-2.pyc
6248-rw-r--r-- root root 2996 ./usr/lib/python3.8/distutils/command/__pycache__/install_egg_info.cpython-38.pyc
6249-rw-r--r-- root root 1708 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.opt-1.pyc
6250-rw-r--r-- root root 1542 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.opt-2.pyc
6251-rw-r--r-- root root 1708 ./usr/lib/python3.8/distutils/command/__pycache__/install_headers.cpython-38.pyc
6252-rw-r--r-- root root 5113 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.opt-1.pyc
6253-rw-r--r-- root root 4532 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.opt-2.pyc
6254-rw-r--r-- root root 5113 ./usr/lib/python3.8/distutils/command/__pycache__/install_lib.cpython-38.pyc
6255-rw-r--r-- root root 2141 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.opt-1.pyc
6256-rw-r--r-- root root 2007 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.opt-2.pyc
6257-rw-r--r-- root root 2141 ./usr/lib/python3.8/distutils/command/__pycache__/install_scripts.cpython-38.pyc
6258-rw-r--r-- root root 8455 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.opt-1.pyc
6259-rw-r--r-- root root 7190 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.opt-2.pyc
6260-rw-r--r-- root root 8455 ./usr/lib/python3.8/distutils/command/__pycache__/register.cpython-38.pyc
6261-rw-r--r-- root root 14516 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.opt-1.pyc
6262-rw-r--r-- root root 11157 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.opt-2.pyc
6263-rw-r--r-- root root 14516 ./usr/lib/python3.8/distutils/command/__pycache__/sdist.cpython-38.pyc
6264-rw-r--r-- root root 4939 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.opt-1.pyc
6265-rw-r--r-- root root 4813 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.opt-2.pyc
6266-rw-r--r-- root root 4939 ./usr/lib/python3.8/distutils/command/__pycache__/upload.cpython-38.pyc
6267-rw-r--r-- root root 11712 ./usr/lib/python3.8/distutils/command/register.py
6268-rw-r--r-- root root 19005 ./usr/lib/python3.8/distutils/command/sdist.py
6269-rw-r--r-- root root 7001 ./usr/lib/python3.8/distutils/command/upload.py
6270-rw-r--r-- root root 222208 ./usr/lib/python3.8/distutils/command/wininst-10.0-amd64.exe
6271-rw-r--r-- root root 190976 ./usr/lib/python3.8/distutils/command/wininst-10.0.exe
6272-rw-r--r-- root root 587776 ./usr/lib/python3.8/distutils/command/wininst-14.0-amd64.exe
6273-rw-r--r-- root root 458240 ./usr/lib/python3.8/distutils/command/wininst-14.0.exe
6274-rw-r--r-- root root 61440 ./usr/lib/python3.8/distutils/command/wininst-6.0.exe
6275-rw-r--r-- root root 65536 ./usr/lib/python3.8/distutils/command/wininst-7.1.exe
6276-rw-r--r-- root root 61440 ./usr/lib/python3.8/distutils/command/wininst-8.0.exe
6277-rw-r--r-- root root 224256 ./usr/lib/python3.8/distutils/command/wininst-9.0-amd64.exe
6278-rw-r--r-- root root 196096 ./usr/lib/python3.8/distutils/command/wininst-9.0.exe
6279-rw-r--r-- root root 4827 ./usr/lib/python3.8/distutils/config.py
6280-rw-r--r-- root root 8876 ./usr/lib/python3.8/distutils/core.py
6281-rw-r--r-- root root 16478 ./usr/lib/python3.8/distutils/cygwinccompiler.py
6282-rw-r--r-- root root 139 ./usr/lib/python3.8/distutils/debug.py
6283-rw-r--r-- root root 3491 ./usr/lib/python3.8/distutils/dep_util.py
6284-rw-r--r-- root root 7778 ./usr/lib/python3.8/distutils/dir_util.py
6285-rw-r--r-- root root 50385 ./usr/lib/python3.8/distutils/dist.py
6286-rw-r--r-- root root 3577 ./usr/lib/python3.8/distutils/errors.py
6287-rw-r--r-- root root 10515 ./usr/lib/python3.8/distutils/extension.py
6288-rw-r--r-- root root 17784 ./usr/lib/python3.8/distutils/fancy_getopt.py
6289-rw-r--r-- root root 12832 ./usr/lib/python3.8/distutils/filelist.py
6290-rw-r--r-- root root 8148 ./usr/lib/python3.8/distutils/file_util.py
6291-rw-r--r-- root root 236 ./usr/lib/python3.8/distutils/__init__.py
6292-rw-r--r-- root root 1969 ./usr/lib/python3.8/distutils/log.py
6293-rw-r--r-- root root 30511 ./usr/lib/python3.8/distutils/msvc9compiler.py
6294-rw-r--r-- root root 20050 ./usr/lib/python3.8/distutils/_msvccompiler.py
6295-rw-r--r-- root root 23564 ./usr/lib/python3.8/distutils/msvccompiler.py
6296drwxr-xr-x root root 4096 ./usr/lib/python3.8/distutils/__pycache__
6297-rw-r--r-- root root 6539 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.opt-1.pyc
6298-rw-r--r-- root root 4497 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.opt-2.pyc
6299-rw-r--r-- root root 6539 ./usr/lib/python3.8/distutils/__pycache__/archive_util.cpython-38.pyc
6300-rw-r--r-- root root 6523 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.opt-1.pyc
6301-rw-r--r-- root root 6235 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.opt-2.pyc
6302-rw-r--r-- root root 6523 ./usr/lib/python3.8/distutils/__pycache__/bcppcompiler.cpython-38.pyc
6303-rw-r--r-- root root 33170 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.opt-1.pyc
6304-rw-r--r-- root root 16864 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.opt-2.pyc
6305-rw-r--r-- root root 33297 ./usr/lib/python3.8/distutils/__pycache__/ccompiler.cpython-38.pyc
6306-rw-r--r-- root root 13948 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.opt-1.pyc
6307-rw-r--r-- root root 8082 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.opt-2.pyc
6308-rw-r--r-- root root 13948 ./usr/lib/python3.8/distutils/__pycache__/cmd.cpython-38.pyc
6309-rw-r--r-- root root 3509 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.opt-1.pyc
6310-rw-r--r-- root root 3118 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.opt-2.pyc
6311-rw-r--r-- root root 3509 ./usr/lib/python3.8/distutils/__pycache__/config.cpython-38.pyc
6312-rw-r--r-- root root 6614 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.opt-1.pyc
6313-rw-r--r-- root root 3227 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.opt-2.pyc
6314-rw-r--r-- root root 6614 ./usr/lib/python3.8/distutils/__pycache__/core.cpython-38.pyc
6315-rw-r--r-- root root 8612 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.opt-1.pyc
6316-rw-r--r-- root root 6982 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.opt-2.pyc
6317-rw-r--r-- root root 8612 ./usr/lib/python3.8/distutils/__pycache__/cygwinccompiler.cpython-38.pyc
6318-rw-r--r-- root root 194 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.opt-1.pyc
6319-rw-r--r-- root root 194 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.opt-2.pyc
6320-rw-r--r-- root root 194 ./usr/lib/python3.8/distutils/__pycache__/debug.cpython-38.pyc
6321-rw-r--r-- root root 2714 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.opt-1.pyc
6322-rw-r--r-- root root 1270 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.opt-2.pyc
6323-rw-r--r-- root root 2714 ./usr/lib/python3.8/distutils/__pycache__/dep_util.cpython-38.pyc
6324-rw-r--r-- root root 5823 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.opt-1.pyc
6325-rw-r--r-- root root 3445 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.opt-2.pyc
6326-rw-r--r-- root root 5823 ./usr/lib/python3.8/distutils/__pycache__/dir_util.cpython-38.pyc
6327-rw-r--r-- root root 34492 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.opt-1.pyc
6328-rw-r--r-- root root 25201 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.opt-2.pyc
6329-rw-r--r-- root root 34492 ./usr/lib/python3.8/distutils/__pycache__/dist.cpython-38.pyc
6330-rw-r--r-- root root 5250 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.opt-1.pyc
6331-rw-r--r-- root root 2702 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.opt-2.pyc
6332-rw-r--r-- root root 5250 ./usr/lib/python3.8/distutils/__pycache__/errors.cpython-38.pyc
6333-rw-r--r-- root root 6923 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.opt-1.pyc
6334-rw-r--r-- root root 3433 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.opt-2.pyc
6335-rw-r--r-- root root 6923 ./usr/lib/python3.8/distutils/__pycache__/extension.cpython-38.pyc
6336-rw-r--r-- root root 10512 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.opt-1.pyc
6337-rw-r--r-- root root 7709 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.opt-2.pyc
6338-rw-r--r-- root root 10656 ./usr/lib/python3.8/distutils/__pycache__/fancy_getopt.cpython-38.pyc
6339-rw-r--r-- root root 9777 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.opt-1.pyc
6340-rw-r--r-- root root 6906 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.opt-2.pyc
6341-rw-r--r-- root root 9867 ./usr/lib/python3.8/distutils/__pycache__/filelist.cpython-38.pyc
6342-rw-r--r-- root root 5933 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.opt-1.pyc
6343-rw-r--r-- root root 3796 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.opt-2.pyc
6344-rw-r--r-- root root 5933 ./usr/lib/python3.8/distutils/__pycache__/file_util.cpython-38.pyc
6345-rw-r--r-- root root 384 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.opt-1.pyc
6346-rw-r--r-- root root 202 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.opt-2.pyc
6347-rw-r--r-- root root 384 ./usr/lib/python3.8/distutils/__pycache__/__init__.cpython-38.pyc
6348-rw-r--r-- root root 2315 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.opt-1.pyc
6349-rw-r--r-- root root 2254 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.opt-2.pyc
6350-rw-r--r-- root root 2315 ./usr/lib/python3.8/distutils/__pycache__/log.cpython-38.pyc
6351-rw-r--r-- root root 17451 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.opt-1.pyc
6352-rw-r--r-- root root 15830 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.opt-2.pyc
6353-rw-r--r-- root root 17510 ./usr/lib/python3.8/distutils/__pycache__/msvc9compiler.cpython-38.pyc
6354-rw-r--r-- root root 12907 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.opt-1.pyc
6355-rw-r--r-- root root 14723 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.opt-1.pyc
6356-rw-r--r-- root root 11757 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.opt-2.pyc
6357-rw-r--r-- root root 13148 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.opt-2.pyc
6358-rw-r--r-- root root 12966 ./usr/lib/python3.8/distutils/__pycache__/_msvccompiler.cpython-38.pyc
6359-rw-r--r-- root root 14723 ./usr/lib/python3.8/distutils/__pycache__/msvccompiler.cpython-38.pyc
6360-rw-r--r-- root root 5106 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.opt-1.pyc
6361-rw-r--r-- root root 3802 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.opt-2.pyc
6362-rw-r--r-- root root 5106 ./usr/lib/python3.8/distutils/__pycache__/spawn.cpython-38.pyc
6363-rw-r--r-- root root 12101 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.opt-1.pyc
6364-rw-r--r-- root root 8616 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.opt-2.pyc
6365-rw-r--r-- root root 12101 ./usr/lib/python3.8/distutils/__pycache__/sysconfig.cpython-38.pyc
6366-rw-r--r-- root root 8439 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.opt-1.pyc
6367-rw-r--r-- root root 3341 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.opt-2.pyc
6368-rw-r--r-- root root 8439 ./usr/lib/python3.8/distutils/__pycache__/text_file.cpython-38.pyc
6369-rw-r--r-- root root 6618 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.opt-1.pyc
6370-rw-r--r-- root root 6029 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.opt-2.pyc
6371-rw-r--r-- root root 6618 ./usr/lib/python3.8/distutils/__pycache__/unixccompiler.cpython-38.pyc
6372-rw-r--r-- root root 15546 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.opt-1.pyc
6373-rw-r--r-- root root 9662 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.opt-2.pyc
6374-rw-r--r-- root root 15546 ./usr/lib/python3.8/distutils/__pycache__/util.cpython-38.pyc
6375-rw-r--r-- root root 7266 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.opt-1.pyc
6376-rw-r--r-- root root 3981 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.opt-2.pyc
6377-rw-r--r-- root root 7311 ./usr/lib/python3.8/distutils/__pycache__/version.cpython-38.pyc
6378-rw-r--r-- root root 5135 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.opt-1.pyc
6379-rw-r--r-- root root 2655 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.opt-2.pyc
6380-rw-r--r-- root root 5135 ./usr/lib/python3.8/distutils/__pycache__/versionpredicate.cpython-38.pyc
6381-rw-r--r-- root root 242 ./usr/lib/python3.8/distutils/README
6382-rw-r--r-- root root 7843 ./usr/lib/python3.8/distutils/spawn.py
6383-rw-r--r-- root root 20390 ./usr/lib/python3.8/distutils/sysconfig.py
6384-rw-r--r-- root root 12483 ./usr/lib/python3.8/distutils/text_file.py
6385-rw-r--r-- root root 14696 ./usr/lib/python3.8/distutils/unixccompiler.py
6386-rw-r--r-- root root 20892 ./usr/lib/python3.8/distutils/util.py
6387-rw-r--r-- root root 5133 ./usr/lib/python3.8/distutils/versionpredicate.py
6388-rw-r--r-- root root 12345 ./usr/lib/python3.8/distutils/version.py
6389-rw-r--r-- root root 6027 ./usr/lib/python3.8/_dummy_thread.py
6390drwxr-xr-x root root 4096 ./usr/lib/python3.8/email
6391-rw-r--r-- root root 9561 ./usr/lib/python3.8/email/architecture.rst
6392-rw-r--r-- root root 3558 ./usr/lib/python3.8/email/base64mime.py
6393-rw-r--r-- root root 17128 ./usr/lib/python3.8/email/charset.py
6394-rw-r--r-- root root 10672 ./usr/lib/python3.8/email/contentmanager.py
6395-rw-r--r-- root root 8524 ./usr/lib/python3.8/email/_encoded_words.py
6396-rw-r--r-- root root 1786 ./usr/lib/python3.8/email/encoders.py
6397-rw-r--r-- root root 3647 ./usr/lib/python3.8/email/errors.py
6398-rw-r--r-- root root 22780 ./usr/lib/python3.8/email/feedparser.py
6399-rw-r--r-- root root 19975 ./usr/lib/python3.8/email/generator.py
6400-rw-r--r-- root root 24102 ./usr/lib/python3.8/email/header.py
6401-rw-r--r-- root root 20591 ./usr/lib/python3.8/email/headerregistry.py
6402-rw-r--r-- root root 106460 ./usr/lib/python3.8/email/_header_value_parser.py
6403-rw-r--r-- root root 1766 ./usr/lib/python3.8/email/__init__.py
6404-rw-r--r-- root root 2135 ./usr/lib/python3.8/email/iterators.py
6405-rw-r--r-- root root 47072 ./usr/lib/python3.8/email/message.py
6406drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/mime
6407-rw-r--r-- root root 1321 ./usr/lib/python3.8/email/mime/application.py
6408-rw-r--r-- root root 2739 ./usr/lib/python3.8/email/mime/audio.py
6409-rw-r--r-- root root 916 ./usr/lib/python3.8/email/mime/base.py
6410-rw-r--r-- root root 1829 ./usr/lib/python3.8/email/mime/image.py
6411-rw-r--r-- root root 0 ./usr/lib/python3.8/email/mime/__init__.py
6412-rw-r--r-- root root 1317 ./usr/lib/python3.8/email/mime/message.py
6413-rw-r--r-- root root 1621 ./usr/lib/python3.8/email/mime/multipart.py
6414-rw-r--r-- root root 691 ./usr/lib/python3.8/email/mime/nonmultipart.py
6415drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/mime/__pycache__
6416-rw-r--r-- root root 1459 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.opt-1.pyc
6417-rw-r--r-- root root 805 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.opt-2.pyc
6418-rw-r--r-- root root 1459 ./usr/lib/python3.8/email/mime/__pycache__/application.cpython-38.pyc
6419-rw-r--r-- root root 2624 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.opt-1.pyc
6420-rw-r--r-- root root 1184 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.opt-2.pyc
6421-rw-r--r-- root root 2624 ./usr/lib/python3.8/email/mime/__pycache__/audio.cpython-38.pyc
6422-rw-r--r-- root root 1041 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.opt-1.pyc
6423-rw-r--r-- root root 717 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.opt-2.pyc
6424-rw-r--r-- root root 1041 ./usr/lib/python3.8/email/mime/__pycache__/base.cpython-38.pyc
6425-rw-r--r-- root root 1904 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.opt-1.pyc
6426-rw-r--r-- root root 827 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.opt-2.pyc
6427-rw-r--r-- root root 1904 ./usr/lib/python3.8/email/mime/__pycache__/image.cpython-38.pyc
6428-rw-r--r-- root root 132 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.opt-1.pyc
6429-rw-r--r-- root root 132 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.opt-2.pyc
6430-rw-r--r-- root root 132 ./usr/lib/python3.8/email/mime/__pycache__/__init__.cpython-38.pyc
6431-rw-r--r-- root root 1282 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.opt-1.pyc
6432-rw-r--r-- root root 790 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.opt-2.pyc
6433-rw-r--r-- root root 1282 ./usr/lib/python3.8/email/mime/__pycache__/message.cpython-38.pyc
6434-rw-r--r-- root root 1502 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.opt-1.pyc
6435-rw-r--r-- root root 706 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.opt-2.pyc
6436-rw-r--r-- root root 1502 ./usr/lib/python3.8/email/mime/__pycache__/multipart.cpython-38.pyc
6437-rw-r--r-- root root 764 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.opt-1.pyc
6438-rw-r--r-- root root 629 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.opt-2.pyc
6439-rw-r--r-- root root 764 ./usr/lib/python3.8/email/mime/__pycache__/nonmultipart.cpython-38.pyc
6440-rw-r--r-- root root 1311 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.opt-1.pyc
6441-rw-r--r-- root root 800 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.opt-2.pyc
6442-rw-r--r-- root root 1311 ./usr/lib/python3.8/email/mime/__pycache__/text.cpython-38.pyc
6443-rw-r--r-- root root 1437 ./usr/lib/python3.8/email/mime/text.py
6444-rw-r--r-- root root 17604 ./usr/lib/python3.8/email/_parseaddr.py
6445-rw-r--r-- root root 5041 ./usr/lib/python3.8/email/parser.py
6446-rw-r--r-- root root 15073 ./usr/lib/python3.8/email/_policybase.py
6447-rw-r--r-- root root 10383 ./usr/lib/python3.8/email/policy.py
6448drwxr-xr-x root root 4096 ./usr/lib/python3.8/email/__pycache__
6449-rw-r--r-- root root 3235 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.opt-1.pyc
6450-rw-r--r-- root root 1458 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.opt-2.pyc
6451-rw-r--r-- root root 3235 ./usr/lib/python3.8/email/__pycache__/base64mime.cpython-38.pyc
6452-rw-r--r-- root root 11422 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.opt-1.pyc
6453-rw-r--r-- root root 5093 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.opt-2.pyc
6454-rw-r--r-- root root 11459 ./usr/lib/python3.8/email/__pycache__/charset.cpython-38.pyc
6455-rw-r--r-- root root 7343 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.opt-1.pyc
6456-rw-r--r-- root root 7343 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.opt-2.pyc
6457-rw-r--r-- root root 7343 ./usr/lib/python3.8/email/__pycache__/contentmanager.cpython-38.pyc
6458-rw-r--r-- root root 5686 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.opt-1.pyc
6459-rw-r--r-- root root 3800 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.opt-2.pyc
6460-rw-r--r-- root root 5686 ./usr/lib/python3.8/email/__pycache__/_encoded_words.cpython-38.pyc
6461-rw-r--r-- root root 1612 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.opt-1.pyc
6462-rw-r--r-- root root 1261 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.opt-2.pyc
6463-rw-r--r-- root root 1612 ./usr/lib/python3.8/email/__pycache__/encoders.cpython-38.pyc
6464-rw-r--r-- root root 5905 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.opt-1.pyc
6465-rw-r--r-- root root 4473 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.opt-2.pyc
6466-rw-r--r-- root root 5905 ./usr/lib/python3.8/email/__pycache__/errors.cpython-38.pyc
6467-rw-r--r-- root root 10490 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.opt-1.pyc
6468-rw-r--r-- root root 8827 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.opt-2.pyc
6469-rw-r--r-- root root 10642 ./usr/lib/python3.8/email/__pycache__/feedparser.cpython-38.pyc
6470-rw-r--r-- root root 12482 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.opt-1.pyc
6471-rw-r--r-- root root 8783 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.opt-2.pyc
6472-rw-r--r-- root root 12482 ./usr/lib/python3.8/email/__pycache__/generator.cpython-38.pyc
6473-rw-r--r-- root root 16439 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.opt-1.pyc
6474-rw-r--r-- root root 10815 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.opt-2.pyc
6475-rw-r--r-- root root 16439 ./usr/lib/python3.8/email/__pycache__/header.cpython-38.pyc
6476-rw-r--r-- root root 21848 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.opt-1.pyc
6477-rw-r--r-- root root 16085 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.opt-2.pyc
6478-rw-r--r-- root root 21900 ./usr/lib/python3.8/email/__pycache__/headerregistry.cpython-38.pyc
6479-rw-r--r-- root root 79739 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.opt-1.pyc
6480-rw-r--r-- root root 62867 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.opt-2.pyc
6481-rw-r--r-- root root 79787 ./usr/lib/python3.8/email/__pycache__/_header_value_parser.cpython-38.pyc
6482-rw-r--r-- root root 1691 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.opt-1.pyc
6483-rw-r--r-- root root 1066 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.opt-2.pyc
6484-rw-r--r-- root root 1691 ./usr/lib/python3.8/email/__pycache__/__init__.cpython-38.pyc
6485-rw-r--r-- root root 1920 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.opt-1.pyc
6486-rw-r--r-- root root 1300 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.opt-2.pyc
6487-rw-r--r-- root root 1920 ./usr/lib/python3.8/email/__pycache__/iterators.cpython-38.pyc
6488-rw-r--r-- root root 37878 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.opt-1.pyc
6489-rw-r--r-- root root 21316 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.opt-2.pyc
6490-rw-r--r-- root root 37878 ./usr/lib/python3.8/email/__pycache__/message.cpython-38.pyc
6491-rw-r--r-- root root 12454 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.opt-1.pyc
6492-rw-r--r-- root root 9494 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.opt-2.pyc
6493-rw-r--r-- root root 12454 ./usr/lib/python3.8/email/__pycache__/_parseaddr.cpython-38.pyc
6494-rw-r--r-- root root 5722 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.opt-1.pyc
6495-rw-r--r-- root root 2704 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.opt-2.pyc
6496-rw-r--r-- root root 5722 ./usr/lib/python3.8/email/__pycache__/parser.cpython-38.pyc
6497-rw-r--r-- root root 14810 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.opt-1.pyc
6498-rw-r--r-- root root 5982 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.opt-2.pyc
6499-rw-r--r-- root root 14810 ./usr/lib/python3.8/email/__pycache__/_policybase.cpython-38.pyc
6500-rw-r--r-- root root 9658 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.opt-1.pyc
6501-rw-r--r-- root root 3443 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.opt-2.pyc
6502-rw-r--r-- root root 9658 ./usr/lib/python3.8/email/__pycache__/policy.cpython-38.pyc
6503-rw-r--r-- root root 7678 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.opt-1.pyc
6504-rw-r--r-- root root 4205 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.opt-2.pyc
6505-rw-r--r-- root root 7678 ./usr/lib/python3.8/email/__pycache__/quoprimime.cpython-38.pyc
6506-rw-r--r-- root root 9547 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.opt-1.pyc
6507-rw-r--r-- root root 6218 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.opt-2.pyc
6508-rw-r--r-- root root 9547 ./usr/lib/python3.8/email/__pycache__/utils.cpython-38.pyc
6509-rw-r--r-- root root 9858 ./usr/lib/python3.8/email/quoprimime.py
6510-rw-r--r-- root root 13488 ./usr/lib/python3.8/email/utils.py
6511drwxr-xr-x root root 4096 ./usr/lib/python3.8/encodings
6512-rw-r--r-- root root 15693 ./usr/lib/python3.8/encodings/aliases.py
6513-rw-r--r-- root root 1248 ./usr/lib/python3.8/encodings/ascii.py
6514-rw-r--r-- root root 1533 ./usr/lib/python3.8/encodings/base64_codec.py
6515-rw-r--r-- root root 1039 ./usr/lib/python3.8/encodings/big5hkscs.py
6516-rw-r--r-- root root 1019 ./usr/lib/python3.8/encodings/big5.py
6517-rw-r--r-- root root 2249 ./usr/lib/python3.8/encodings/bz2_codec.py
6518-rw-r--r-- root root 2084 ./usr/lib/python3.8/encodings/charmap.py
6519-rw-r--r-- root root 13121 ./usr/lib/python3.8/encodings/cp037.py
6520-rw-r--r-- root root 13568 ./usr/lib/python3.8/encodings/cp1006.py
6521-rw-r--r-- root root 13113 ./usr/lib/python3.8/encodings/cp1026.py
6522-rw-r--r-- root root 34597 ./usr/lib/python3.8/encodings/cp1125.py
6523-rw-r--r-- root root 13105 ./usr/lib/python3.8/encodings/cp1140.py
6524-rw-r--r-- root root 13686 ./usr/lib/python3.8/encodings/cp1250.py
6525-rw-r--r-- root root 13361 ./usr/lib/python3.8/encodings/cp1251.py
6526-rw-r--r-- root root 13511 ./usr/lib/python3.8/encodings/cp1252.py
6527-rw-r--r-- root root 13094 ./usr/lib/python3.8/encodings/cp1253.py
6528-rw-r--r-- root root 13502 ./usr/lib/python3.8/encodings/cp1254.py
6529-rw-r--r-- root root 12466 ./usr/lib/python3.8/encodings/cp1255.py
6530-rw-r--r-- root root 12814 ./usr/lib/python3.8/encodings/cp1256.py
6531-rw-r--r-- root root 13374 ./usr/lib/python3.8/encodings/cp1257.py
6532-rw-r--r-- root root 13364 ./usr/lib/python3.8/encodings/cp1258.py
6533-rw-r--r-- root root 14132 ./usr/lib/python3.8/encodings/cp273.py
6534-rw-r--r-- root root 12055 ./usr/lib/python3.8/encodings/cp424.py
6535-rw-r--r-- root root 34564 ./usr/lib/python3.8/encodings/cp437.py
6536-rw-r--r-- root root 13121 ./usr/lib/python3.8/encodings/cp500.py
6537-rw-r--r-- root root 13686 ./usr/lib/python3.8/encodings/cp720.py
6538-rw-r--r-- root root 34681 ./usr/lib/python3.8/encodings/cp737.py
6539-rw-r--r-- root root 34476 ./usr/lib/python3.8/encodings/cp775.py
6540-rw-r--r-- root root 34105 ./usr/lib/python3.8/encodings/cp850.py
6541-rw-r--r-- root root 35002 ./usr/lib/python3.8/encodings/cp852.py
6542-rw-r--r-- root root 33850 ./usr/lib/python3.8/encodings/cp855.py
6543-rw-r--r-- root root 12423 ./usr/lib/python3.8/encodings/cp856.py
6544-rw-r--r-- root root 33908 ./usr/lib/python3.8/encodings/cp857.py
6545-rw-r--r-- root root 34015 ./usr/lib/python3.8/encodings/cp858.py
6546-rw-r--r-- root root 34681 ./usr/lib/python3.8/encodings/cp860.py
6547-rw-r--r-- root root 34633 ./usr/lib/python3.8/encodings/cp861.py
6548-rw-r--r-- root root 33370 ./usr/lib/python3.8/encodings/cp862.py
6549-rw-r--r-- root root 34252 ./usr/lib/python3.8/encodings/cp863.py
6550-rw-r--r-- root root 33663 ./usr/lib/python3.8/encodings/cp864.py
6551-rw-r--r-- root root 34618 ./usr/lib/python3.8/encodings/cp865.py
6552-rw-r--r-- root root 34396 ./usr/lib/python3.8/encodings/cp866.py
6553-rw-r--r-- root root 32965 ./usr/lib/python3.8/encodings/cp869.py
6554-rw-r--r-- root root 12595 ./usr/lib/python3.8/encodings/cp874.py
6555-rw-r--r-- root root 12854 ./usr/lib/python3.8/encodings/cp875.py
6556-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp932.py
6557-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp949.py
6558-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/cp950.py
6559-rw-r--r-- root root 1051 ./usr/lib/python3.8/encodings/euc_jis_2004.py
6560-rw-r--r-- root root 1051 ./usr/lib/python3.8/encodings/euc_jisx0213.py
6561-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/euc_jp.py
6562-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/euc_kr.py
6563-rw-r--r-- root root 1031 ./usr/lib/python3.8/encodings/gb18030.py
6564-rw-r--r-- root root 1027 ./usr/lib/python3.8/encodings/gb2312.py
6565-rw-r--r-- root root 1015 ./usr/lib/python3.8/encodings/gbk.py
6566-rw-r--r-- root root 1508 ./usr/lib/python3.8/encodings/hex_codec.py
6567-rw-r--r-- root root 13475 ./usr/lib/python3.8/encodings/hp_roman8.py
6568-rw-r--r-- root root 1011 ./usr/lib/python3.8/encodings/hz.py
6569-rw-r--r-- root root 9170 ./usr/lib/python3.8/encodings/idna.py
6570-rw-r--r-- root root 5588 ./usr/lib/python3.8/encodings/__init__.py
6571-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_1.py
6572-rw-r--r-- root root 1073 ./usr/lib/python3.8/encodings/iso2022_jp_2004.py
6573-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_2.py
6574-rw-r--r-- root root 1061 ./usr/lib/python3.8/encodings/iso2022_jp_3.py
6575-rw-r--r-- root root 1069 ./usr/lib/python3.8/encodings/iso2022_jp_ext.py
6576-rw-r--r-- root root 1053 ./usr/lib/python3.8/encodings/iso2022_jp.py
6577-rw-r--r-- root root 1053 ./usr/lib/python3.8/encodings/iso2022_kr.py
6578-rw-r--r-- root root 13589 ./usr/lib/python3.8/encodings/iso8859_10.py
6579-rw-r--r-- root root 12335 ./usr/lib/python3.8/encodings/iso8859_11.py
6580-rw-r--r-- root root 13271 ./usr/lib/python3.8/encodings/iso8859_13.py
6581-rw-r--r-- root root 13652 ./usr/lib/python3.8/encodings/iso8859_14.py
6582-rw-r--r-- root root 13212 ./usr/lib/python3.8/encodings/iso8859_15.py
6583-rw-r--r-- root root 13557 ./usr/lib/python3.8/encodings/iso8859_16.py
6584-rw-r--r-- root root 13176 ./usr/lib/python3.8/encodings/iso8859_1.py
6585-rw-r--r-- root root 13404 ./usr/lib/python3.8/encodings/iso8859_2.py
6586-rw-r--r-- root root 13089 ./usr/lib/python3.8/encodings/iso8859_3.py
6587-rw-r--r-- root root 13376 ./usr/lib/python3.8/encodings/iso8859_4.py
6588-rw-r--r-- root root 13015 ./usr/lib/python3.8/encodings/iso8859_5.py
6589-rw-r--r-- root root 10833 ./usr/lib/python3.8/encodings/iso8859_6.py
6590-rw-r--r-- root root 12844 ./usr/lib/python3.8/encodings/iso8859_7.py
6591-rw-r--r-- root root 11036 ./usr/lib/python3.8/encodings/iso8859_8.py
6592-rw-r--r-- root root 13156 ./usr/lib/python3.8/encodings/iso8859_9.py
6593-rw-r--r-- root root 1023 ./usr/lib/python3.8/encodings/johab.py
6594-rw-r--r-- root root 13779 ./usr/lib/python3.8/encodings/koi8_r.py
6595-rw-r--r-- root root 13193 ./usr/lib/python3.8/encodings/koi8_t.py
6596-rw-r--r-- root root 13762 ./usr/lib/python3.8/encodings/koi8_u.py
6597-rw-r--r-- root root 13723 ./usr/lib/python3.8/encodings/kz1048.py
6598-rw-r--r-- root root 1264 ./usr/lib/python3.8/encodings/latin_1.py
6599-rw-r--r-- root root 36467 ./usr/lib/python3.8/encodings/mac_arabic.py
6600-rw-r--r-- root root 14102 ./usr/lib/python3.8/encodings/mac_centeuro.py
6601-rw-r--r-- root root 13633 ./usr/lib/python3.8/encodings/mac_croatian.py
6602-rw-r--r-- root root 13454 ./usr/lib/python3.8/encodings/mac_cyrillic.py
6603-rw-r--r-- root root 15170 ./usr/lib/python3.8/encodings/mac_farsi.py
6604-rw-r--r-- root root 13721 ./usr/lib/python3.8/encodings/mac_greek.py
6605-rw-r--r-- root root 13498 ./usr/lib/python3.8/encodings/mac_iceland.py
6606-rw-r--r-- root root 14118 ./usr/lib/python3.8/encodings/mac_latin2.py
6607-rw-r--r-- root root 13661 ./usr/lib/python3.8/encodings/mac_romanian.py
6608-rw-r--r-- root root 13480 ./usr/lib/python3.8/encodings/mac_roman.py
6609-rw-r--r-- root root 13513 ./usr/lib/python3.8/encodings/mac_turkish.py
6610-rw-r--r-- root root 1211 ./usr/lib/python3.8/encodings/mbcs.py
6611-rw-r--r-- root root 1019 ./usr/lib/python3.8/encodings/oem.py
6612-rw-r--r-- root root 13519 ./usr/lib/python3.8/encodings/palmos.py
6613-rw-r--r-- root root 14015 ./usr/lib/python3.8/encodings/ptcp154.py
6614-rw-r--r-- root root 6883 ./usr/lib/python3.8/encodings/punycode.py
6615drwxr-xr-x root root 20480 ./usr/lib/python3.8/encodings/__pycache__
6616-rw-r--r-- root root 6330 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.opt-1.pyc
6617-rw-r--r-- root root 5738 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.opt-2.pyc
6618-rw-r--r-- root root 6330 ./usr/lib/python3.8/encodings/__pycache__/aliases.cpython-38.pyc
6619-rw-r--r-- root root 1881 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.opt-1.pyc
6620-rw-r--r-- root root 1735 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.opt-2.pyc
6621-rw-r--r-- root root 1881 ./usr/lib/python3.8/encodings/__pycache__/ascii.cpython-38.pyc
6622-rw-r--r-- root root 2295 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.opt-1.pyc
6623-rw-r--r-- root root 2120 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.opt-2.pyc
6624-rw-r--r-- root root 2399 ./usr/lib/python3.8/encodings/__pycache__/base64_codec.cpython-38.pyc
6625-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.opt-1.pyc
6626-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.opt-2.pyc
6627-rw-r--r-- root root 1409 ./usr/lib/python3.8/encodings/__pycache__/big5.cpython-38.pyc
6628-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.opt-1.pyc
6629-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.opt-2.pyc
6630-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/big5hkscs.cpython-38.pyc
6631-rw-r--r-- root root 3200 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.opt-1.pyc
6632-rw-r--r-- root root 2904 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.opt-2.pyc
6633-rw-r--r-- root root 3290 ./usr/lib/python3.8/encodings/__pycache__/bz2_codec.cpython-38.pyc
6634-rw-r--r-- root root 2891 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.opt-1.pyc
6635-rw-r--r-- root root 2597 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.opt-2.pyc
6636-rw-r--r-- root root 2891 ./usr/lib/python3.8/encodings/__pycache__/charmap.cpython-38.pyc
6637-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.opt-1.pyc
6638-rw-r--r-- root root 2290 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.opt-2.pyc
6639-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/cp037.cpython-38.pyc
6640-rw-r--r-- root root 2498 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.opt-1.pyc
6641-rw-r--r-- root root 2373 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.opt-2.pyc
6642-rw-r--r-- root root 2498 ./usr/lib/python3.8/encodings/__pycache__/cp1006.cpython-38.pyc
6643-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.opt-1.pyc
6644-rw-r--r-- root root 2292 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.opt-2.pyc
6645-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/cp1026.cpython-38.pyc
6646-rw-r--r-- root root 8129 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.opt-1.pyc
6647-rw-r--r-- root root 8066 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.opt-2.pyc
6648-rw-r--r-- root root 8129 ./usr/lib/python3.8/encodings/__pycache__/cp1125.cpython-38.pyc
6649-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.opt-1.pyc
6650-rw-r--r-- root root 2293 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.opt-2.pyc
6651-rw-r--r-- root root 2412 ./usr/lib/python3.8/encodings/__pycache__/cp1140.cpython-38.pyc
6652-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.opt-1.pyc
6653-rw-r--r-- root root 2314 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.opt-2.pyc
6654-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/cp1250.cpython-38.pyc
6655-rw-r--r-- root root 2446 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.opt-1.pyc
6656-rw-r--r-- root root 2311 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.opt-2.pyc
6657-rw-r--r-- root root 2446 ./usr/lib/python3.8/encodings/__pycache__/cp1251.cpython-38.pyc
6658-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.opt-1.pyc
6659-rw-r--r-- root root 2314 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.opt-2.pyc
6660-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/cp1252.cpython-38.pyc
6661-rw-r--r-- root root 2462 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.opt-1.pyc
6662-rw-r--r-- root root 2327 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.opt-2.pyc
6663-rw-r--r-- root root 2462 ./usr/lib/python3.8/encodings/__pycache__/cp1253.cpython-38.pyc
6664-rw-r--r-- root root 2451 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.opt-1.pyc
6665-rw-r--r-- root root 2316 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.opt-2.pyc
6666-rw-r--r-- root root 2451 ./usr/lib/python3.8/encodings/__pycache__/cp1254.cpython-38.pyc
6667-rw-r--r-- root root 2470 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.opt-1.pyc
6668-rw-r--r-- root root 2335 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.opt-2.pyc
6669-rw-r--r-- root root 2470 ./usr/lib/python3.8/encodings/__pycache__/cp1255.cpython-38.pyc
6670-rw-r--r-- root root 2448 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.opt-1.pyc
6671-rw-r--r-- root root 2313 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.opt-2.pyc
6672-rw-r--r-- root root 2448 ./usr/lib/python3.8/encodings/__pycache__/cp1256.cpython-38.pyc
6673-rw-r--r-- root root 2456 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.opt-1.pyc
6674-rw-r--r-- root root 2321 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.opt-2.pyc
6675-rw-r--r-- root root 2456 ./usr/lib/python3.8/encodings/__pycache__/cp1257.cpython-38.pyc
6676-rw-r--r-- root root 2454 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.opt-1.pyc
6677-rw-r--r-- root root 2319 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.opt-2.pyc
6678-rw-r--r-- root root 2454 ./usr/lib/python3.8/encodings/__pycache__/cp1258.cpython-38.pyc
6679-rw-r--r-- root root 2408 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.opt-1.pyc
6680-rw-r--r-- root root 2291 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.opt-2.pyc
6681-rw-r--r-- root root 2408 ./usr/lib/python3.8/encodings/__pycache__/cp273.cpython-38.pyc
6682-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.opt-1.pyc
6683-rw-r--r-- root root 2329 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.opt-2.pyc
6684-rw-r--r-- root root 2452 ./usr/lib/python3.8/encodings/__pycache__/cp424.cpython-38.pyc
6685-rw-r--r-- root root 7846 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.opt-1.pyc
6686-rw-r--r-- root root 7725 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.opt-2.pyc
6687-rw-r--r-- root root 7846 ./usr/lib/python3.8/encodings/__pycache__/cp437.cpython-38.pyc
6688-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.opt-1.pyc
6689-rw-r--r-- root root 2290 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.opt-2.pyc
6690-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/cp500.cpython-38.pyc
6691-rw-r--r-- root root 2519 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.opt-1.pyc
6692-rw-r--r-- root root 2344 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.opt-2.pyc
6693-rw-r--r-- root root 2519 ./usr/lib/python3.8/encodings/__pycache__/cp720.cpython-38.pyc
6694-rw-r--r-- root root 8168 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.opt-1.pyc
6695-rw-r--r-- root root 8047 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.opt-2.pyc
6696-rw-r--r-- root root 8168 ./usr/lib/python3.8/encodings/__pycache__/cp737.cpython-38.pyc
6697-rw-r--r-- root root 7876 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.opt-1.pyc
6698-rw-r--r-- root root 7755 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.opt-2.pyc
6699-rw-r--r-- root root 7876 ./usr/lib/python3.8/encodings/__pycache__/cp775.cpython-38.pyc
6700-rw-r--r-- root root 7507 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.opt-1.pyc
6701-rw-r--r-- root root 7392 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.opt-2.pyc
6702-rw-r--r-- root root 7507 ./usr/lib/python3.8/encodings/__pycache__/cp850.cpython-38.pyc
6703-rw-r--r-- root root 7884 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.opt-1.pyc
6704-rw-r--r-- root root 7769 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.opt-2.pyc
6705-rw-r--r-- root root 7884 ./usr/lib/python3.8/encodings/__pycache__/cp852.cpython-38.pyc
6706-rw-r--r-- root root 8137 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.opt-1.pyc
6707-rw-r--r-- root root 8022 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.opt-2.pyc
6708-rw-r--r-- root root 8137 ./usr/lib/python3.8/encodings/__pycache__/cp855.cpython-38.pyc
6709-rw-r--r-- root root 2484 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.opt-1.pyc
6710-rw-r--r-- root root 2361 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.opt-2.pyc
6711-rw-r--r-- root root 2484 ./usr/lib/python3.8/encodings/__pycache__/cp856.cpython-38.pyc
6712-rw-r--r-- root root 7487 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.opt-1.pyc
6713-rw-r--r-- root root 7372 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.opt-2.pyc
6714-rw-r--r-- root root 7487 ./usr/lib/python3.8/encodings/__pycache__/cp857.cpython-38.pyc
6715-rw-r--r-- root root 7477 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.opt-1.pyc
6716-rw-r--r-- root root 7393 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.opt-2.pyc
6717-rw-r--r-- root root 7477 ./usr/lib/python3.8/encodings/__pycache__/cp858.cpython-38.pyc
6718-rw-r--r-- root root 7825 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.opt-1.pyc
6719-rw-r--r-- root root 7710 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.opt-2.pyc
6720-rw-r--r-- root root 7825 ./usr/lib/python3.8/encodings/__pycache__/cp860.cpython-38.pyc
6721-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.opt-1.pyc
6722-rw-r--r-- root root 7725 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.opt-2.pyc
6723-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp861.cpython-38.pyc
6724-rw-r--r-- root root 8029 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.opt-1.pyc
6725-rw-r--r-- root root 7914 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.opt-2.pyc
6726-rw-r--r-- root root 8029 ./usr/lib/python3.8/encodings/__pycache__/cp862.cpython-38.pyc
6727-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.opt-1.pyc
6728-rw-r--r-- root root 7725 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.opt-2.pyc
6729-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp863.cpython-38.pyc
6730-rw-r--r-- root root 7984 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.opt-1.pyc
6731-rw-r--r-- root root 7869 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.opt-2.pyc
6732-rw-r--r-- root root 7984 ./usr/lib/python3.8/encodings/__pycache__/cp864.cpython-38.pyc
6733-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.opt-1.pyc
6734-rw-r--r-- root root 7725 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.opt-2.pyc
6735-rw-r--r-- root root 7840 ./usr/lib/python3.8/encodings/__pycache__/cp865.cpython-38.pyc
6736-rw-r--r-- root root 8173 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.opt-1.pyc
6737-rw-r--r-- root root 8058 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.opt-2.pyc
6738-rw-r--r-- root root 8173 ./usr/lib/python3.8/encodings/__pycache__/cp866.cpython-38.pyc
6739-rw-r--r-- root root 7864 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.opt-1.pyc
6740-rw-r--r-- root root 7749 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.opt-2.pyc
6741-rw-r--r-- root root 7864 ./usr/lib/python3.8/encodings/__pycache__/cp869.cpython-38.pyc
6742-rw-r--r-- root root 2550 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.opt-1.pyc
6743-rw-r--r-- root root 2417 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.opt-2.pyc
6744-rw-r--r-- root root 2550 ./usr/lib/python3.8/encodings/__pycache__/cp874.cpython-38.pyc
6745-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.opt-1.pyc
6746-rw-r--r-- root root 2287 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.opt-2.pyc
6747-rw-r--r-- root root 2419 ./usr/lib/python3.8/encodings/__pycache__/cp875.cpython-38.pyc
6748-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.opt-1.pyc
6749-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.opt-2.pyc
6750-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp932.cpython-38.pyc
6751-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.opt-1.pyc
6752-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.opt-2.pyc
6753-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp949.cpython-38.pyc
6754-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.opt-1.pyc
6755-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.opt-2.pyc
6756-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/cp950.cpython-38.pyc
6757-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.opt-1.pyc
6758-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.opt-2.pyc
6759-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jis_2004.cpython-38.pyc
6760-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.opt-1.pyc
6761-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.opt-2.pyc
6762-rw-r--r-- root root 1425 ./usr/lib/python3.8/encodings/__pycache__/euc_jisx0213.cpython-38.pyc
6763-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.opt-1.pyc
6764-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.opt-2.pyc
6765-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_jp.cpython-38.pyc
6766-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.opt-1.pyc
6767-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.opt-2.pyc
6768-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/euc_kr.cpython-38.pyc
6769-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.opt-1.pyc
6770-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.opt-2.pyc
6771-rw-r--r-- root root 1415 ./usr/lib/python3.8/encodings/__pycache__/gb18030.cpython-38.pyc
6772-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.opt-1.pyc
6773-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.opt-2.pyc
6774-rw-r--r-- root root 1413 ./usr/lib/python3.8/encodings/__pycache__/gb2312.cpython-38.pyc
6775-rw-r--r-- root root 1407 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.opt-1.pyc
6776-rw-r--r-- root root 1407 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.opt-2.pyc
6777-rw-r--r-- root root 1407 ./usr/lib/python3.8/encodings/__pycache__/gbk.cpython-38.pyc
6778-rw-r--r-- root root 2282 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.opt-1.pyc
6779-rw-r--r-- root root 2105 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.opt-2.pyc
6780-rw-r--r-- root root 2386 ./usr/lib/python3.8/encodings/__pycache__/hex_codec.cpython-38.pyc
6781-rw-r--r-- root root 2623 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.opt-1.pyc
6782-rw-r--r-- root root 2302 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.opt-2.pyc
6783-rw-r--r-- root root 2623 ./usr/lib/python3.8/encodings/__pycache__/hp_roman8.cpython-38.pyc
6784-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.opt-1.pyc
6785-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.opt-2.pyc
6786-rw-r--r-- root root 1405 ./usr/lib/python3.8/encodings/__pycache__/hz.cpython-38.pyc
6787-rw-r--r-- root root 5617 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.opt-1.pyc
6788-rw-r--r-- root root 5617 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.opt-2.pyc
6789-rw-r--r-- root root 5617 ./usr/lib/python3.8/encodings/__pycache__/idna.cpython-38.pyc
6790-rw-r--r-- root root 3903 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.opt-1.pyc
6791-rw-r--r-- root root 2448 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.opt-2.pyc
6792-rw-r--r-- root root 3903 ./usr/lib/python3.8/encodings/__pycache__/__init__.cpython-38.pyc
6793-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.opt-1.pyc
6794-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.opt-2.pyc
6795-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_1.cpython-38.pyc
6796-rw-r--r-- root root 1436 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.opt-1.pyc
6797-rw-r--r-- root root 1436 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.opt-2.pyc
6798-rw-r--r-- root root 1436 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2004.cpython-38.pyc
6799-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.opt-1.pyc
6800-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.opt-2.pyc
6801-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_2.cpython-38.pyc
6802-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.opt-1.pyc
6803-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.opt-2.pyc
6804-rw-r--r-- root root 1430 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_3.cpython-38.pyc
6805-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.opt-1.pyc
6806-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.opt-2.pyc
6807-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp.cpython-38.pyc
6808-rw-r--r-- root root 1434 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.opt-1.pyc
6809-rw-r--r-- root root 1434 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.opt-2.pyc
6810-rw-r--r-- root root 1434 ./usr/lib/python3.8/encodings/__pycache__/iso2022_jp_ext.cpython-38.pyc
6811-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.opt-1.pyc
6812-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.opt-2.pyc
6813-rw-r--r-- root root 1426 ./usr/lib/python3.8/encodings/__pycache__/iso2022_kr.cpython-38.pyc
6814-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.opt-1.pyc
6815-rw-r--r-- root root 2301 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.opt-2.pyc
6816-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/iso8859_10.cpython-38.pyc
6817-rw-r--r-- root root 2520 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.opt-1.pyc
6818-rw-r--r-- root root 2395 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.opt-2.pyc
6819-rw-r--r-- root root 2520 ./usr/lib/python3.8/encodings/__pycache__/iso8859_11.cpython-38.pyc
6820-rw-r--r-- root root 2429 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.opt-1.pyc
6821-rw-r--r-- root root 2304 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.opt-2.pyc
6822-rw-r--r-- root root 2429 ./usr/lib/python3.8/encodings/__pycache__/iso8859_13.cpython-38.pyc
6823-rw-r--r-- root root 2447 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.opt-1.pyc
6824-rw-r--r-- root root 2322 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.opt-2.pyc
6825-rw-r--r-- root root 2447 ./usr/lib/python3.8/encodings/__pycache__/iso8859_14.cpython-38.pyc
6826-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.opt-1.pyc
6827-rw-r--r-- root root 2301 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.opt-2.pyc
6828-rw-r--r-- root root 2426 ./usr/lib/python3.8/encodings/__pycache__/iso8859_15.cpython-38.pyc
6829-rw-r--r-- root root 2428 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.opt-1.pyc
6830-rw-r--r-- root root 2303 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.opt-2.pyc
6831-rw-r--r-- root root 2428 ./usr/lib/python3.8/encodings/__pycache__/iso8859_16.cpython-38.pyc
6832-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.opt-1.pyc
6833-rw-r--r-- root root 2298 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.opt-2.pyc
6834-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_1.cpython-38.pyc
6835-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.opt-1.pyc
6836-rw-r--r-- root root 2298 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.opt-2.pyc
6837-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_2.cpython-38.pyc
6838-rw-r--r-- root root 2428 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.opt-1.pyc
6839-rw-r--r-- root root 2305 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.opt-2.pyc
6840-rw-r--r-- root root 2428 ./usr/lib/python3.8/encodings/__pycache__/iso8859_3.cpython-38.pyc
6841-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.opt-1.pyc
6842-rw-r--r-- root root 2298 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.opt-2.pyc
6843-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_4.cpython-38.pyc
6844-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.opt-1.pyc
6845-rw-r--r-- root root 2299 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.opt-2.pyc
6846-rw-r--r-- root root 2422 ./usr/lib/python3.8/encodings/__pycache__/iso8859_5.cpython-38.pyc
6847-rw-r--r-- root root 2466 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.opt-1.pyc
6848-rw-r--r-- root root 2343 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.opt-2.pyc
6849-rw-r--r-- root root 2466 ./usr/lib/python3.8/encodings/__pycache__/iso8859_6.cpython-38.pyc
6850-rw-r--r-- root root 2429 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.opt-1.pyc
6851-rw-r--r-- root root 2306 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.opt-2.pyc
6852-rw-r--r-- root root 2429 ./usr/lib/python3.8/encodings/__pycache__/iso8859_7.cpython-38.pyc
6853-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.opt-1.pyc
6854-rw-r--r-- root root 2337 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.opt-2.pyc
6855-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/iso8859_8.cpython-38.pyc
6856-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.opt-1.pyc
6857-rw-r--r-- root root 2298 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.opt-2.pyc
6858-rw-r--r-- root root 2421 ./usr/lib/python3.8/encodings/__pycache__/iso8859_9.cpython-38.pyc
6859-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.opt-1.pyc
6860-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.opt-2.pyc
6861-rw-r--r-- root root 1411 ./usr/lib/python3.8/encodings/__pycache__/johab.cpython-38.pyc
6862-rw-r--r-- root root 2473 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.opt-1.pyc
6863-rw-r--r-- root root 2348 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.opt-2.pyc
6864-rw-r--r-- root root 2473 ./usr/lib/python3.8/encodings/__pycache__/koi8_r.cpython-38.pyc
6865-rw-r--r-- root root 2384 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.opt-1.pyc
6866-rw-r--r-- root root 2328 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.opt-2.pyc
6867-rw-r--r-- root root 2384 ./usr/lib/python3.8/encodings/__pycache__/koi8_t.cpython-38.pyc
6868-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.opt-1.pyc
6869-rw-r--r-- root root 2340 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.opt-2.pyc
6870-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/koi8_u.cpython-38.pyc
6871-rw-r--r-- root root 2436 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.opt-1.pyc
6872-rw-r--r-- root root 2311 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.opt-2.pyc
6873-rw-r--r-- root root 2436 ./usr/lib/python3.8/encodings/__pycache__/kz1048.cpython-38.pyc
6874-rw-r--r-- root root 1893 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.opt-1.pyc
6875-rw-r--r-- root root 1745 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.opt-2.pyc
6876-rw-r--r-- root root 1893 ./usr/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.pyc
6877-rw-r--r-- root root 7740 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.opt-1.pyc
6878-rw-r--r-- root root 7628 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.opt-2.pyc
6879-rw-r--r-- root root 7740 ./usr/lib/python3.8/encodings/__pycache__/mac_arabic.cpython-38.pyc
6880-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.opt-1.pyc
6881-rw-r--r-- root root 2326 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.opt-2.pyc
6882-rw-r--r-- root root 2460 ./usr/lib/python3.8/encodings/__pycache__/mac_centeuro.cpython-38.pyc
6883-rw-r--r-- root root 2468 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.opt-1.pyc
6884-rw-r--r-- root root 2334 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.opt-2.pyc
6885-rw-r--r-- root root 2468 ./usr/lib/python3.8/encodings/__pycache__/mac_croatian.cpython-38.pyc
6886-rw-r--r-- root root 2458 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.opt-1.pyc
6887-rw-r--r-- root root 2324 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.opt-2.pyc
6888-rw-r--r-- root root 2458 ./usr/lib/python3.8/encodings/__pycache__/mac_cyrillic.cpython-38.pyc
6889-rw-r--r-- root root 2402 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.opt-1.pyc
6890-rw-r--r-- root root 2274 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.opt-2.pyc
6891-rw-r--r-- root root 2402 ./usr/lib/python3.8/encodings/__pycache__/mac_farsi.cpython-38.pyc
6892-rw-r--r-- root root 2442 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.opt-1.pyc
6893-rw-r--r-- root root 2314 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.opt-2.pyc
6894-rw-r--r-- root root 2442 ./usr/lib/python3.8/encodings/__pycache__/mac_greek.cpython-38.pyc
6895-rw-r--r-- root root 2461 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.opt-1.pyc
6896-rw-r--r-- root root 2329 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.opt-2.pyc
6897-rw-r--r-- root root 2461 ./usr/lib/python3.8/encodings/__pycache__/mac_iceland.cpython-38.pyc
6898-rw-r--r-- root root 2602 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.opt-1.pyc
6899-rw-r--r-- root root 2322 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.opt-2.pyc
6900-rw-r--r-- root root 2602 ./usr/lib/python3.8/encodings/__pycache__/mac_latin2.cpython-38.pyc
6901-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.opt-1.pyc
6902-rw-r--r-- root root 2331 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.opt-2.pyc
6903-rw-r--r-- root root 2459 ./usr/lib/python3.8/encodings/__pycache__/mac_roman.cpython-38.pyc
6904-rw-r--r-- root root 2469 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.opt-1.pyc
6905-rw-r--r-- root root 2335 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.opt-2.pyc
6906-rw-r--r-- root root 2469 ./usr/lib/python3.8/encodings/__pycache__/mac_romanian.cpython-38.pyc
6907-rw-r--r-- root root 2462 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.opt-1.pyc
6908-rw-r--r-- root root 2330 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.opt-2.pyc
6909-rw-r--r-- root root 2462 ./usr/lib/python3.8/encodings/__pycache__/mac_turkish.cpython-38.pyc
6910-rw-r--r-- root root 1711 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.opt-1.pyc
6911-rw-r--r-- root root 1478 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.opt-2.pyc
6912-rw-r--r-- root root 1711 ./usr/lib/python3.8/encodings/__pycache__/mbcs.cpython-38.pyc
6913-rw-r--r-- root root 1524 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.opt-1.pyc
6914-rw-r--r-- root root 1474 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.opt-2.pyc
6915-rw-r--r-- root root 1524 ./usr/lib/python3.8/encodings/__pycache__/oem.cpython-38.pyc
6916-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.opt-1.pyc
6917-rw-r--r-- root root 2312 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.opt-2.pyc
6918-rw-r--r-- root root 2449 ./usr/lib/python3.8/encodings/__pycache__/palmos.cpython-38.pyc
6919-rw-r--r-- root root 2543 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.opt-1.pyc
6920-rw-r--r-- root root 2304 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.opt-2.pyc
6921-rw-r--r-- root root 2543 ./usr/lib/python3.8/encodings/__pycache__/ptcp154.cpython-38.pyc
6922-rw-r--r-- root root 6315 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.opt-1.pyc
6923-rw-r--r-- root root 5723 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.opt-2.pyc
6924-rw-r--r-- root root 6315 ./usr/lib/python3.8/encodings/__pycache__/punycode.cpython-38.pyc
6925-rw-r--r-- root root 2358 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.opt-1.pyc
6926-rw-r--r-- root root 2260 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.opt-2.pyc
6927-rw-r--r-- root root 2415 ./usr/lib/python3.8/encodings/__pycache__/quopri_codec.cpython-38.pyc
6928-rw-r--r-- root root 1762 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.opt-1.pyc
6929-rw-r--r-- root root 1603 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.opt-2.pyc
6930-rw-r--r-- root root 1762 ./usr/lib/python3.8/encodings/__pycache__/raw_unicode_escape.cpython-38.pyc
6931-rw-r--r-- root root 3001 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.opt-1.pyc
6932-rw-r--r-- root root 2851 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.opt-2.pyc
6933-rw-r--r-- root root 3001 ./usr/lib/python3.8/encodings/__pycache__/rot_13.cpython-38.pyc
6934-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.opt-1.pyc
6935-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.opt-2.pyc
6936-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jis_2004.cpython-38.pyc
6937-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.opt-1.pyc
6938-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.opt-2.pyc
6939-rw-r--r-- root root 1419 ./usr/lib/python3.8/encodings/__pycache__/shift_jis.cpython-38.pyc
6940-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.opt-1.pyc
6941-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.opt-2.pyc
6942-rw-r--r-- root root 1429 ./usr/lib/python3.8/encodings/__pycache__/shift_jisx0213.cpython-38.pyc
6943-rw-r--r-- root root 2511 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.opt-1.pyc
6944-rw-r--r-- root root 2390 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.opt-2.pyc
6945-rw-r--r-- root root 2511 ./usr/lib/python3.8/encodings/__pycache__/tis_620.cpython-38.pyc
6946-rw-r--r-- root root 2095 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.opt-1.pyc
6947-rw-r--r-- root root 1766 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.opt-2.pyc
6948-rw-r--r-- root root 2095 ./usr/lib/python3.8/encodings/__pycache__/undefined.cpython-38.pyc
6949-rw-r--r-- root root 1742 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.opt-1.pyc
6950-rw-r--r-- root root 1587 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.opt-2.pyc
6951-rw-r--r-- root root 1742 ./usr/lib/python3.8/encodings/__pycache__/unicode_escape.cpython-38.pyc
6952-rw-r--r-- root root 1650 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.opt-1.pyc
6953-rw-r--r-- root root 1500 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.opt-2.pyc
6954-rw-r--r-- root root 1650 ./usr/lib/python3.8/encodings/__pycache__/utf_16_be.cpython-38.pyc
6955-rw-r--r-- root root 4872 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.opt-1.pyc
6956-rw-r--r-- root root 4725 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.opt-2.pyc
6957-rw-r--r-- root root 4872 ./usr/lib/python3.8/encodings/__pycache__/utf_16.cpython-38.pyc
6958-rw-r--r-- root root 1650 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.opt-1.pyc
6959-rw-r--r-- root root 1500 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.opt-2.pyc
6960-rw-r--r-- root root 1650 ./usr/lib/python3.8/encodings/__pycache__/utf_16_le.cpython-38.pyc
6961-rw-r--r-- root root 1543 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.opt-1.pyc
6962-rw-r--r-- root root 1500 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.opt-2.pyc
6963-rw-r--r-- root root 1543 ./usr/lib/python3.8/encodings/__pycache__/utf_32_be.cpython-38.pyc
6964-rw-r--r-- root root 4765 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.opt-1.pyc
6965-rw-r--r-- root root 4725 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.opt-2.pyc
6966-rw-r--r-- root root 4765 ./usr/lib/python3.8/encodings/__pycache__/utf_32.cpython-38.pyc
6967-rw-r--r-- root root 1543 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.opt-1.pyc
6968-rw-r--r-- root root 1500 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.opt-2.pyc
6969-rw-r--r-- root root 1543 ./usr/lib/python3.8/encodings/__pycache__/utf_32_le.cpython-38.pyc
6970-rw-r--r-- root root 1571 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.opt-1.pyc
6971-rw-r--r-- root root 1484 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.opt-2.pyc
6972-rw-r--r-- root root 1571 ./usr/lib/python3.8/encodings/__pycache__/utf_7.cpython-38.pyc
6973-rw-r--r-- root root 1630 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.opt-1.pyc
6974-rw-r--r-- root root 1484 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.opt-2.pyc
6975-rw-r--r-- root root 1630 ./usr/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.pyc
6976-rw-r--r-- root root 4546 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.opt-1.pyc
6977-rw-r--r-- root root 4244 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.opt-2.pyc
6978-rw-r--r-- root root 4546 ./usr/lib/python3.8/encodings/__pycache__/utf_8_sig.cpython-38.pyc
6979-rw-r--r-- root root 3190 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.opt-1.pyc
6980-rw-r--r-- root root 2897 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.opt-2.pyc
6981-rw-r--r-- root root 3249 ./usr/lib/python3.8/encodings/__pycache__/uu_codec.cpython-38.pyc
6982-rw-r--r-- root root 3019 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.opt-1.pyc
6983-rw-r--r-- root root 2853 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.opt-2.pyc
6984-rw-r--r-- root root 3109 ./usr/lib/python3.8/encodings/__pycache__/zlib_codec.cpython-38.pyc
6985-rw-r--r-- root root 1525 ./usr/lib/python3.8/encodings/quopri_codec.py
6986-rw-r--r-- root root 1208 ./usr/lib/python3.8/encodings/raw_unicode_escape.py
6987-rwxr-xr-x root root 2448 ./usr/lib/python3.8/encodings/rot_13.py
6988-rw-r--r-- root root 1059 ./usr/lib/python3.8/encodings/shift_jis_2004.py
6989-rw-r--r-- root root 1039 ./usr/lib/python3.8/encodings/shift_jis.py
6990-rw-r--r-- root root 1059 ./usr/lib/python3.8/encodings/shift_jisx0213.py
6991-rw-r--r-- root root 12300 ./usr/lib/python3.8/encodings/tis_620.py
6992-rw-r--r-- root root 1299 ./usr/lib/python3.8/encodings/undefined.py
6993-rw-r--r-- root root 1184 ./usr/lib/python3.8/encodings/unicode_escape.py
6994-rw-r--r-- root root 1037 ./usr/lib/python3.8/encodings/utf_16_be.py
6995-rw-r--r-- root root 1037 ./usr/lib/python3.8/encodings/utf_16_le.py
6996-rw-r--r-- root root 5236 ./usr/lib/python3.8/encodings/utf_16.py
6997-rw-r--r-- root root 930 ./usr/lib/python3.8/encodings/utf_32_be.py
6998-rw-r--r-- root root 930 ./usr/lib/python3.8/encodings/utf_32_le.py
6999-rw-r--r-- root root 5129 ./usr/lib/python3.8/encodings/utf_32.py
7000-rw-r--r-- root root 946 ./usr/lib/python3.8/encodings/utf_7.py
7001-rw-r--r-- root root 1005 ./usr/lib/python3.8/encodings/utf_8.py
7002-rw-r--r-- root root 4133 ./usr/lib/python3.8/encodings/utf_8_sig.py
7003-rw-r--r-- root root 2851 ./usr/lib/python3.8/encodings/uu_codec.py
7004-rw-r--r-- root root 2204 ./usr/lib/python3.8/encodings/zlib_codec.py
7005-rw-r--r-- root root 34616 ./usr/lib/python3.8/enum.py
7006-rw-r--r-- root root 4056 ./usr/lib/python3.8/fnmatch.py
7007-rw-r--r-- root root 34768 ./usr/lib/python3.8/ftplib.py
7008-rw-r--r-- root root 37406 ./usr/lib/python3.8/functools.py
7009-rw-r--r-- root root 5109 ./usr/lib/python3.8/__future__.py
7010-rw-r--r-- root root 4975 ./usr/lib/python3.8/genericpath.py
7011-rw-r--r-- root root 7489 ./usr/lib/python3.8/getopt.py
7012-rw-r--r-- root root 27138 ./usr/lib/python3.8/gettext.py
7013-rw-r--r-- root root 5697 ./usr/lib/python3.8/glob.py
7014-rw-r--r-- root root 21441 ./usr/lib/python3.8/gzip.py
7015-rw-r--r-- root root 9730 ./usr/lib/python3.8/hashlib.py
7016-rw-r--r-- root root 22877 ./usr/lib/python3.8/heapq.py
7017-rw-r--r-- root root 6629 ./usr/lib/python3.8/hmac.py
7018drwxr-xr-x root root 4096 ./usr/lib/python3.8/http
7019-rw-r--r-- root root 54908 ./usr/lib/python3.8/http/client.py
7020-rw-r--r-- root root 76835 ./usr/lib/python3.8/http/cookiejar.py
7021-rw-r--r-- root root 20412 ./usr/lib/python3.8/http/cookies.py
7022-rw-r--r-- root root 6378 ./usr/lib/python3.8/http/__init__.py
7023drwxr-xr-x root root 4096 ./usr/lib/python3.8/http/__pycache__
7024-rw-r--r-- root root 34204 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.opt-1.pyc
7025-rw-r--r-- root root 25225 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.opt-2.pyc
7026-rw-r--r-- root root 34303 ./usr/lib/python3.8/http/__pycache__/client.cpython-38.pyc
7027-rw-r--r-- root root 53442 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.opt-1.pyc
7028-rw-r--r-- root root 37805 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.opt-2.pyc
7029-rw-r--r-- root root 53642 ./usr/lib/python3.8/http/__pycache__/cookiejar.cpython-38.pyc
7030-rw-r--r-- root root 15220 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.opt-1.pyc
7031-rw-r--r-- root root 10823 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.opt-2.pyc
7032-rw-r--r-- root root 15268 ./usr/lib/python3.8/http/__pycache__/cookies.cpython-38.pyc
7033-rw-r--r-- root root 6064 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.opt-1.pyc
7034-rw-r--r-- root root 5383 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.opt-2.pyc
7035-rw-r--r-- root root 6064 ./usr/lib/python3.8/http/__pycache__/__init__.cpython-38.pyc
7036-rw-r--r-- root root 34392 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.opt-1.pyc
7037-rw-r--r-- root root 22456 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.opt-2.pyc
7038-rw-r--r-- root root 34392 ./usr/lib/python3.8/http/__pycache__/server.cpython-38.pyc
7039-rw-r--r-- root root 47254 ./usr/lib/python3.8/http/server.py
7040-rw-r--r-- root root 53606 ./usr/lib/python3.8/imaplib.py
7041drwxr-xr-x root root 4096 ./usr/lib/python3.8/importlib
7042-rw-r--r-- root root 12873 ./usr/lib/python3.8/importlib/abc.py
7043-rw-r--r-- root root 62357 ./usr/lib/python3.8/importlib/_bootstrap_external.py
7044-rw-r--r-- root root 39644 ./usr/lib/python3.8/importlib/_bootstrap.py
7045-rw-r--r-- root root 6061 ./usr/lib/python3.8/importlib/__init__.py
7046-rw-r--r-- root root 844 ./usr/lib/python3.8/importlib/machinery.py
7047-rw-r--r-- root root 17607 ./usr/lib/python3.8/importlib/metadata.py
7048drwxr-xr-x root root 4096 ./usr/lib/python3.8/importlib/__pycache__
7049-rw-r--r-- root root 13573 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.opt-1.pyc
7050-rw-r--r-- root root 6762 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.opt-2.pyc
7051-rw-r--r-- root root 13573 ./usr/lib/python3.8/importlib/__pycache__/abc.cpython-38.pyc
7052-rw-r--r-- root root 28573 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.opt-1.pyc
7053-rw-r--r-- root root 21814 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.opt-2.pyc
7054-rw-r--r-- root root 28605 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap.cpython-38.pyc
7055-rw-r--r-- root root 43406 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.opt-1.pyc
7056-rw-r--r-- root root 32285 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.opt-2.pyc
7057-rw-r--r-- root root 43710 ./usr/lib/python3.8/importlib/__pycache__/_bootstrap_external.cpython-38.pyc
7058-rw-r--r-- root root 3758 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.opt-1.pyc
7059-rw-r--r-- root root 3079 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.opt-2.pyc
7060-rw-r--r-- root root 3758 ./usr/lib/python3.8/importlib/__pycache__/__init__.cpython-38.pyc
7061-rw-r--r-- root root 962 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.opt-1.pyc
7062-rw-r--r-- root root 822 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.opt-2.pyc
7063-rw-r--r-- root root 962 ./usr/lib/python3.8/importlib/__pycache__/machinery.cpython-38.pyc
7064-rw-r--r-- root root 20840 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.opt-1.pyc
7065-rw-r--r-- root root 15073 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.opt-2.pyc
7066-rw-r--r-- root root 20840 ./usr/lib/python3.8/importlib/__pycache__/metadata.cpython-38.pyc
7067-rw-r--r-- root root 6480 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.opt-1.pyc
7068-rw-r--r-- root root 5135 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.opt-2.pyc
7069-rw-r--r-- root root 6480 ./usr/lib/python3.8/importlib/__pycache__/resources.cpython-38.pyc
7070-rw-r--r-- root root 9292 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.opt-1.pyc
7071-rw-r--r-- root root 6423 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.opt-2.pyc
7072-rw-r--r-- root root 9292 ./usr/lib/python3.8/importlib/__pycache__/util.cpython-38.pyc
7073-rw-r--r-- root root 9437 ./usr/lib/python3.8/importlib/resources.py
7074-rw-r--r-- root root 11319 ./usr/lib/python3.8/importlib/util.py
7075-rw-r--r-- root root 10536 ./usr/lib/python3.8/imp.py
7076-rw-r--r-- root root 118040 ./usr/lib/python3.8/inspect.py
7077-rw-r--r-- root root 3541 ./usr/lib/python3.8/io.py
7078-rw-r--r-- root root 71160 ./usr/lib/python3.8/ipaddress.py
7079-rw-r--r-- root root 945 ./usr/lib/python3.8/keyword.py
7080drwxr-xr-x root root 4096 ./usr/lib/python3.8/lib-dynload
7081-rwxr-xr-x root root 65816 ./usr/lib/python3.8/lib-dynload/array.cpython-38-x86_64-linux-gnu.so
7082-rwxr-xr-x root root 31736 ./usr/lib/python3.8/lib-dynload/binascii.cpython-38-x86_64-linux-gnu.so
7083-rwxr-xr-x root root 14760 ./usr/lib/python3.8/lib-dynload/_bisect.cpython-38-x86_64-linux-gnu.so
7084-rwxr-xr-x root root 44664 ./usr/lib/python3.8/lib-dynload/_blake2.cpython-38-x86_64-linux-gnu.so
7085-rwxr-xr-x root root 27896 ./usr/lib/python3.8/lib-dynload/_bz2.cpython-38-x86_64-linux-gnu.so
7086-rwxr-xr-x root root 43896 ./usr/lib/python3.8/lib-dynload/cmath.cpython-38-x86_64-linux-gnu.so
7087-rwxr-xr-x root root 14384 ./usr/lib/python3.8/lib-dynload/_crypt.cpython-38-x86_64-linux-gnu.so
7088-rwxr-xr-x root root 37240 ./usr/lib/python3.8/lib-dynload/_csv.cpython-38-x86_64-linux-gnu.so
7089-rwxr-xr-x root root 99712 ./usr/lib/python3.8/lib-dynload/_datetime.cpython-38-x86_64-linux-gnu.so
7090-rwxr-xr-x root root 76160 ./usr/lib/python3.8/lib-dynload/_elementtree.cpython-38-x86_64-linux-gnu.so
7091-rwxr-xr-x root root 18856 ./usr/lib/python3.8/lib-dynload/grp.cpython-38-x86_64-linux-gnu.so
7092-rwxr-xr-x root root 36600 ./usr/lib/python3.8/lib-dynload/_hashlib.cpython-38-x86_64-linux-gnu.so
7093-rwxr-xr-x root root 22640 ./usr/lib/python3.8/lib-dynload/_heapq.cpython-38-x86_64-linux-gnu.so
7094-rwxr-xr-x root root 40920 ./usr/lib/python3.8/lib-dynload/_lzma.cpython-38-x86_64-linux-gnu.so
7095-rwxr-xr-x root root 57208 ./usr/lib/python3.8/lib-dynload/math.cpython-38-x86_64-linux-gnu.so
7096-rwxr-xr-x root root 19352 ./usr/lib/python3.8/lib-dynload/_md5.cpython-38-x86_64-linux-gnu.so
7097-rwxr-xr-x root root 14520 ./usr/lib/python3.8/lib-dynload/_opcode.cpython-38-x86_64-linux-gnu.so
7098-rwxr-xr-x root root 27856 ./usr/lib/python3.8/lib-dynload/parser.cpython-38-x86_64-linux-gnu.so
7099-rwxr-xr-x root root 113208 ./usr/lib/python3.8/lib-dynload/_pickle.cpython-38-x86_64-linux-gnu.so
7100-rwxr-xr-x root root 22680 ./usr/lib/python3.8/lib-dynload/_posixsubprocess.cpython-38-x86_64-linux-gnu.so
7101-rwxr-xr-x root root 233072 ./usr/lib/python3.8/lib-dynload/pyexpat.cpython-38-x86_64-linux-gnu.so
7102-rwxr-xr-x root root 19320 ./usr/lib/python3.8/lib-dynload/_queue.cpython-38-x86_64-linux-gnu.so
7103-rwxr-xr-x root root 19024 ./usr/lib/python3.8/lib-dynload/_random.cpython-38-x86_64-linux-gnu.so
7104-rwxr-xr-x root root 35672 ./usr/lib/python3.8/lib-dynload/readline.cpython-38-x86_64-linux-gnu.so
7105-rwxr-xr-x root root 32632 ./usr/lib/python3.8/lib-dynload/select.cpython-38-x86_64-linux-gnu.so
7106-rwxr-xr-x root root 15256 ./usr/lib/python3.8/lib-dynload/_sha1.cpython-38-x86_64-linux-gnu.so
7107-rwxr-xr-x root root 24024 ./usr/lib/python3.8/lib-dynload/_sha256.cpython-38-x86_64-linux-gnu.so
7108-rwxr-xr-x root root 82960 ./usr/lib/python3.8/lib-dynload/_sha3.cpython-38-x86_64-linux-gnu.so
7109-rwxr-xr-x root root 28120 ./usr/lib/python3.8/lib-dynload/_sha512.cpython-38-x86_64-linux-gnu.so
7110-rwxr-xr-x root root 99056 ./usr/lib/python3.8/lib-dynload/_socket.cpython-38-x86_64-linux-gnu.so
7111-rwxr-xr-x root root 191272 ./usr/lib/python3.8/lib-dynload/_ssl.cpython-38-x86_64-linux-gnu.so
7112-rwxr-xr-x root root 50392 ./usr/lib/python3.8/lib-dynload/_struct.cpython-38-x86_64-linux-gnu.so
7113-rwxr-xr-x root root 30576 ./usr/lib/python3.8/lib-dynload/termios.cpython-38-x86_64-linux-gnu.so
7114-rwxr-xr-x root root 1091200 ./usr/lib/python3.8/lib-dynload/unicodedata.cpython-38-x86_64-linux-gnu.so
7115-rwxr-xr-x root root 14384 ./usr/lib/python3.8/lib-dynload/_uuid.cpython-38-x86_64-linux-gnu.so
7116-rwxr-xr-x root root 40888 ./usr/lib/python3.8/lib-dynload/zlib.cpython-38-x86_64-linux-gnu.so
7117-rw-r--r-- root root 5312 ./usr/lib/python3.8/linecache.py
7118-rw-r--r-- root root 78191 ./usr/lib/python3.8/locale.py
7119drwxr-xr-x root root 4096 ./usr/lib/python3.8/logging
7120-rw-r--r-- root root 36357 ./usr/lib/python3.8/logging/config.py
7121-rw-r--r-- root root 57885 ./usr/lib/python3.8/logging/handlers.py
7122-rw-r--r-- root root 77642 ./usr/lib/python3.8/logging/__init__.py
7123drwxr-xr-x root root 4096 ./usr/lib/python3.8/logging/__pycache__
7124-rw-r--r-- root root 23178 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.opt-1.pyc
7125-rw-r--r-- root root 19068 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.opt-2.pyc
7126-rw-r--r-- root root 23224 ./usr/lib/python3.8/logging/__pycache__/config.cpython-38.pyc
7127-rw-r--r-- root root 43156 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.opt-1.pyc
7128-rw-r--r-- root root 24449 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.opt-2.pyc
7129-rw-r--r-- root root 43156 ./usr/lib/python3.8/logging/__pycache__/handlers.cpython-38.pyc
7130-rw-r--r-- root root 64839 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.opt-1.pyc
7131-rw-r--r-- root root 36341 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.opt-2.pyc
7132-rw-r--r-- root root 64871 ./usr/lib/python3.8/logging/__pycache__/__init__.cpython-38.pyc
7133-rw-r--r-- root root 12983 ./usr/lib/python3.8/lzma.py
7134-rw-r--r-- root root 14598 ./usr/lib/python3.8/_markupbase.py
7135-rw-r--r-- root root 21604 ./usr/lib/python3.8/mimetypes.py
7136-rw-r--r-- root root 43261 ./usr/lib/python3.8/nntplib.py
7137-rw-r--r-- root root 27734 ./usr/lib/python3.8/ntpath.py
7138-rw-r--r-- root root 5808 ./usr/lib/python3.8/opcode.py
7139-rw-r--r-- root root 10711 ./usr/lib/python3.8/operator.py
7140-rw-r--r-- root root 60369 ./usr/lib/python3.8/optparse.py
7141-rw-r--r-- root root 38995 ./usr/lib/python3.8/os.py
7142-rw-r--r-- root root 51839 ./usr/lib/python3.8/pathlib.py
7143-rw-r--r-- root root 64395 ./usr/lib/python3.8/pickle.py
7144-rw-r--r-- root root 93486 ./usr/lib/python3.8/pickletools.py
7145-rw-r--r-- root root 8916 ./usr/lib/python3.8/pipes.py
7146-rw-r--r-- root root 21461 ./usr/lib/python3.8/pkgutil.py
7147-rwxr-xr-x root root 40328 ./usr/lib/python3.8/platform.py
7148-rw-r--r-- root root 15077 ./usr/lib/python3.8/poplib.py
7149-rw-r--r-- root root 15627 ./usr/lib/python3.8/posixpath.py
7150drwxr-xr-x root root 20480 ./usr/lib/python3.8/__pycache__
7151-rw-r--r-- root root 5334 ./usr/lib/python3.8/__pycache__/abc.cpython-38.opt-1.pyc
7152-rw-r--r-- root root 3212 ./usr/lib/python3.8/__pycache__/abc.cpython-38.opt-2.pyc
7153-rw-r--r-- root root 5334 ./usr/lib/python3.8/__pycache__/abc.cpython-38.pyc
7154-rw-r--r-- root root 62128 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.opt-1.pyc
7155-rw-r--r-- root root 52887 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.opt-2.pyc
7156-rw-r--r-- root root 62277 ./usr/lib/python3.8/__pycache__/argparse.cpython-38.pyc
7157-rw-r--r-- root root 16485 ./usr/lib/python3.8/__pycache__/ast.cpython-38.opt-1.pyc
7158-rw-r--r-- root root 10094 ./usr/lib/python3.8/__pycache__/ast.cpython-38.opt-2.pyc
7159-rw-r--r-- root root 16520 ./usr/lib/python3.8/__pycache__/ast.cpython-38.pyc
7160-rw-r--r-- root root 16908 ./usr/lib/python3.8/__pycache__/base64.cpython-38.opt-1.pyc
7161-rw-r--r-- root root 11324 ./usr/lib/python3.8/__pycache__/base64.cpython-38.opt-2.pyc
7162-rw-r--r-- root root 17071 ./usr/lib/python3.8/__pycache__/base64.cpython-38.pyc
7163-rw-r--r-- root root 2354 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.opt-1.pyc
7164-rw-r--r-- root root 1042 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.opt-2.pyc
7165-rw-r--r-- root root 2354 ./usr/lib/python3.8/__pycache__/bisect.cpython-38.pyc
7166-rw-r--r-- root root 1217 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.opt-1.pyc
7167-rw-r--r-- root root 992 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.opt-2.pyc
7168-rw-r--r-- root root 1243 ./usr/lib/python3.8/__pycache__/_bootlocale.cpython-38.pyc
7169-rw-r--r-- root root 11445 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.opt-1.pyc
7170-rw-r--r-- root root 6387 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.opt-2.pyc
7171-rw-r--r-- root root 11445 ./usr/lib/python3.8/__pycache__/bz2.cpython-38.pyc
7172-rw-r--r-- root root 27064 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.opt-1.pyc
7173-rw-r--r-- root root 22472 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.opt-2.pyc
7174-rw-r--r-- root root 27064 ./usr/lib/python3.8/__pycache__/calendar.cpython-38.pyc
7175-rw-r--r-- root root 12626 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.opt-1.pyc
7176-rw-r--r-- root root 7201 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.opt-2.pyc
7177-rw-r--r-- root root 12626 ./usr/lib/python3.8/__pycache__/cmd.cpython-38.pyc
7178-rw-r--r-- root root 9913 ./usr/lib/python3.8/__pycache__/code.cpython-38.opt-1.pyc
7179-rw-r--r-- root root 4642 ./usr/lib/python3.8/__pycache__/code.cpython-38.opt-2.pyc
7180-rw-r--r-- root root 9913 ./usr/lib/python3.8/__pycache__/code.cpython-38.pyc
7181-rw-r--r-- root root 33956 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.opt-1.pyc
7182-rw-r--r-- root root 18390 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.opt-2.pyc
7183-rw-r--r-- root root 33956 ./usr/lib/python3.8/__pycache__/codecs.cpython-38.pyc
7184-rw-r--r-- root root 6297 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.opt-1.pyc
7185-rw-r--r-- root root 2259 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.opt-2.pyc
7186-rw-r--r-- root root 6297 ./usr/lib/python3.8/__pycache__/codeop.cpython-38.pyc
7187-rw-r--r-- root root 28741 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.opt-1.pyc
7188-rw-r--r-- root root 23682 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.opt-2.pyc
7189-rw-r--r-- root root 28741 ./usr/lib/python3.8/__pycache__/_collections_abc.cpython-38.pyc
7190-rw-r--r-- root root 5443 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.opt-1.pyc
7191-rw-r--r-- root root 5443 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.opt-2.pyc
7192-rw-r--r-- root root 5501 ./usr/lib/python3.8/__pycache__/_compat_pickle.cpython-38.pyc
7193-rw-r--r-- root root 4146 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.opt-1.pyc
7194-rw-r--r-- root root 3932 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.opt-2.pyc
7195-rw-r--r-- root root 4146 ./usr/lib/python3.8/__pycache__/_compression.cpython-38.pyc
7196-rw-r--r-- root root 45718 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.opt-1.pyc
7197-rw-r--r-- root root 30792 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.opt-2.pyc
7198-rw-r--r-- root root 45718 ./usr/lib/python3.8/__pycache__/configparser.cpython-38.pyc
7199-rw-r--r-- root root 20176 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.opt-1.pyc
7200-rw-r--r-- root root 14596 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.opt-2.pyc
7201-rw-r--r-- root root 20229 ./usr/lib/python3.8/__pycache__/contextlib.cpython-38.pyc
7202-rw-r--r-- root root 6987 ./usr/lib/python3.8/__pycache__/copy.cpython-38.opt-1.pyc
7203-rw-r--r-- root root 4673 ./usr/lib/python3.8/__pycache__/copy.cpython-38.opt-2.pyc
7204-rw-r--r-- root root 6987 ./usr/lib/python3.8/__pycache__/copy.cpython-38.pyc
7205-rw-r--r-- root root 4283 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.opt-1.pyc
7206-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.opt-2.pyc
7207-rw-r--r-- root root 4318 ./usr/lib/python3.8/__pycache__/copyreg.cpython-38.pyc
7208-rw-r--r-- root root 3387 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.opt-1.pyc
7209-rw-r--r-- root root 2725 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.opt-2.pyc
7210-rw-r--r-- root root 3387 ./usr/lib/python3.8/__pycache__/crypt.cpython-38.pyc
7211-rw-r--r-- root root 11910 ./usr/lib/python3.8/__pycache__/csv.cpython-38.opt-1.pyc
7212-rw-r--r-- root root 9871 ./usr/lib/python3.8/__pycache__/csv.cpython-38.opt-2.pyc
7213-rw-r--r-- root root 11910 ./usr/lib/python3.8/__pycache__/csv.cpython-38.pyc
7214-rw-r--r-- root root 55741 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.opt-1.pyc
7215-rw-r--r-- root root 47501 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.opt-2.pyc
7216-rw-r--r-- root root 56978 ./usr/lib/python3.8/__pycache__/datetime.cpython-38.pyc
7217-rw-r--r-- root root 15802 ./usr/lib/python3.8/__pycache__/dis.cpython-38.opt-1.pyc
7218-rw-r--r-- root root 11995 ./usr/lib/python3.8/__pycache__/dis.cpython-38.opt-2.pyc
7219-rw-r--r-- root root 15802 ./usr/lib/python3.8/__pycache__/dis.cpython-38.pyc
7220-rw-r--r-- root root 6037 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.opt-1.pyc
7221-rw-r--r-- root root 3392 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.opt-2.pyc
7222-rw-r--r-- root root 6037 ./usr/lib/python3.8/__pycache__/_dummy_thread.cpython-38.pyc
7223-rw-r--r-- root root 24399 ./usr/lib/python3.8/__pycache__/enum.cpython-38.opt-1.pyc
7224-rw-r--r-- root root 20110 ./usr/lib/python3.8/__pycache__/enum.cpython-38.opt-2.pyc
7225-rw-r--r-- root root 24399 ./usr/lib/python3.8/__pycache__/enum.cpython-38.pyc
7226-rw-r--r-- root root 3332 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.opt-1.pyc
7227-rw-r--r-- root root 2147 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.opt-2.pyc
7228-rw-r--r-- root root 3332 ./usr/lib/python3.8/__pycache__/fnmatch.cpython-38.pyc
7229-rw-r--r-- root root 27849 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.opt-1.pyc
7230-rw-r--r-- root root 18116 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.opt-2.pyc
7231-rw-r--r-- root root 27849 ./usr/lib/python3.8/__pycache__/ftplib.cpython-38.pyc
7232-rw-r--r-- root root 27901 ./usr/lib/python3.8/__pycache__/functools.cpython-38.opt-1.pyc
7233-rw-r--r-- root root 21248 ./usr/lib/python3.8/__pycache__/functools.cpython-38.opt-2.pyc
7234-rw-r--r-- root root 27901 ./usr/lib/python3.8/__pycache__/functools.cpython-38.pyc
7235-rw-r--r-- root root 4131 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.opt-1.pyc
7236-rw-r--r-- root root 2159 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.opt-2.pyc
7237-rw-r--r-- root root 4131 ./usr/lib/python3.8/__pycache__/__future__.cpython-38.pyc
7238-rw-r--r-- root root 4001 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.opt-1.pyc
7239-rw-r--r-- root root 2865 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.opt-2.pyc
7240-rw-r--r-- root root 4001 ./usr/lib/python3.8/__pycache__/genericpath.cpython-38.pyc
7241-rw-r--r-- root root 6237 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.opt-1.pyc
7242-rw-r--r-- root root 3683 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.opt-2.pyc
7243-rw-r--r-- root root 6271 ./usr/lib/python3.8/__pycache__/getopt.cpython-38.pyc
7244-rw-r--r-- root root 17883 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.opt-1.pyc
7245-rw-r--r-- root root 17192 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.opt-2.pyc
7246-rw-r--r-- root root 17883 ./usr/lib/python3.8/__pycache__/gettext.cpython-38.pyc
7247-rw-r--r-- root root 4278 ./usr/lib/python3.8/__pycache__/glob.cpython-38.opt-1.pyc
7248-rw-r--r-- root root 3418 ./usr/lib/python3.8/__pycache__/glob.cpython-38.opt-2.pyc
7249-rw-r--r-- root root 4343 ./usr/lib/python3.8/__pycache__/glob.cpython-38.pyc
7250-rw-r--r-- root root 18191 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.opt-1.pyc
7251-rw-r--r-- root root 14323 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.opt-2.pyc
7252-rw-r--r-- root root 18191 ./usr/lib/python3.8/__pycache__/gzip.cpython-38.pyc
7253-rw-r--r-- root root 6727 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.opt-1.pyc
7254-rw-r--r-- root root 6159 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.opt-2.pyc
7255-rw-r--r-- root root 6727 ./usr/lib/python3.8/__pycache__/hashlib.cpython-38.pyc
7256-rw-r--r-- root root 14070 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.opt-1.pyc
7257-rw-r--r-- root root 11054 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.opt-2.pyc
7258-rw-r--r-- root root 14070 ./usr/lib/python3.8/__pycache__/heapq.cpython-38.pyc
7259-rw-r--r-- root root 6388 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.opt-1.pyc
7260-rw-r--r-- root root 3871 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.opt-2.pyc
7261-rw-r--r-- root root 6388 ./usr/lib/python3.8/__pycache__/hmac.cpython-38.pyc
7262-rw-r--r-- root root 39159 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.opt-1.pyc
7263-rw-r--r-- root root 27182 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.opt-2.pyc
7264-rw-r--r-- root root 41342 ./usr/lib/python3.8/__pycache__/imaplib.cpython-38.pyc
7265-rw-r--r-- root root 9809 ./usr/lib/python3.8/__pycache__/imp.cpython-38.opt-1.pyc
7266-rw-r--r-- root root 7444 ./usr/lib/python3.8/__pycache__/imp.cpython-38.opt-2.pyc
7267-rw-r--r-- root root 9809 ./usr/lib/python3.8/__pycache__/imp.cpython-38.pyc
7268-rw-r--r-- root root 80098 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.opt-1.pyc
7269-rw-r--r-- root root 54985 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.opt-2.pyc
7270-rw-r--r-- root root 80383 ./usr/lib/python3.8/__pycache__/inspect.cpython-38.pyc
7271-rw-r--r-- root root 3454 ./usr/lib/python3.8/__pycache__/io.cpython-38.opt-1.pyc
7272-rw-r--r-- root root 1965 ./usr/lib/python3.8/__pycache__/io.cpython-38.opt-2.pyc
7273-rw-r--r-- root root 3454 ./usr/lib/python3.8/__pycache__/io.cpython-38.pyc
7274-rw-r--r-- root root 59559 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.opt-1.pyc
7275-rw-r--r-- root root 35711 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.opt-2.pyc
7276-rw-r--r-- root root 59559 ./usr/lib/python3.8/__pycache__/ipaddress.cpython-38.pyc
7277-rw-r--r-- root root 998 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.opt-1.pyc
7278-rw-r--r-- root root 571 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.opt-2.pyc
7279-rw-r--r-- root root 998 ./usr/lib/python3.8/__pycache__/keyword.cpython-38.pyc
7280-rw-r--r-- root root 3839 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.opt-1.pyc
7281-rw-r--r-- root root 2734 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.opt-2.pyc
7282-rw-r--r-- root root 3839 ./usr/lib/python3.8/__pycache__/linecache.cpython-38.pyc
7283-rw-r--r-- root root 34689 ./usr/lib/python3.8/__pycache__/locale.cpython-38.opt-1.pyc
7284-rw-r--r-- root root 30074 ./usr/lib/python3.8/__pycache__/locale.cpython-38.opt-2.pyc
7285-rw-r--r-- root root 34689 ./usr/lib/python3.8/__pycache__/locale.cpython-38.pyc
7286-rw-r--r-- root root 12018 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.opt-1.pyc
7287-rw-r--r-- root root 5849 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.opt-2.pyc
7288-rw-r--r-- root root 12018 ./usr/lib/python3.8/__pycache__/lzma.cpython-38.pyc
7289-rw-r--r-- root root 7618 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.opt-1.pyc
7290-rw-r--r-- root root 7240 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.opt-2.pyc
7291-rw-r--r-- root root 7790 ./usr/lib/python3.8/__pycache__/_markupbase.cpython-38.pyc
7292-rw-r--r-- root root 15988 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.opt-1.pyc
7293-rw-r--r-- root root 9973 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.opt-2.pyc
7294-rw-r--r-- root root 15988 ./usr/lib/python3.8/__pycache__/mimetypes.cpython-38.pyc
7295-rw-r--r-- root root 33974 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.opt-1.pyc
7296-rw-r--r-- root root 21464 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.opt-2.pyc
7297-rw-r--r-- root root 33974 ./usr/lib/python3.8/__pycache__/nntplib.cpython-38.pyc
7298-rw-r--r-- root root 14657 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.opt-1.pyc
7299-rw-r--r-- root root 12606 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.opt-2.pyc
7300-rw-r--r-- root root 14657 ./usr/lib/python3.8/__pycache__/ntpath.cpython-38.pyc
7301-rw-r--r-- root root 5420 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.opt-1.pyc
7302-rw-r--r-- root root 5280 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.opt-2.pyc
7303-rw-r--r-- root root 5420 ./usr/lib/python3.8/__pycache__/opcode.cpython-38.pyc
7304-rw-r--r-- root root 13691 ./usr/lib/python3.8/__pycache__/operator.cpython-38.opt-1.pyc
7305-rw-r--r-- root root 11322 ./usr/lib/python3.8/__pycache__/operator.cpython-38.opt-2.pyc
7306-rw-r--r-- root root 13691 ./usr/lib/python3.8/__pycache__/operator.cpython-38.pyc
7307-rw-r--r-- root root 47974 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.opt-1.pyc
7308-rw-r--r-- root root 35659 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.opt-2.pyc
7309-rw-r--r-- root root 48057 ./usr/lib/python3.8/__pycache__/optparse.cpython-38.pyc
7310-rw-r--r-- root root 31365 ./usr/lib/python3.8/__pycache__/os.cpython-38.opt-1.pyc
7311-rw-r--r-- root root 19174 ./usr/lib/python3.8/__pycache__/os.cpython-38.opt-2.pyc
7312-rw-r--r-- root root 31397 ./usr/lib/python3.8/__pycache__/os.cpython-38.pyc
7313-rw-r--r-- root root 43552 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.opt-1.pyc
7314-rw-r--r-- root root 35495 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.opt-2.pyc
7315-rw-r--r-- root root 43552 ./usr/lib/python3.8/__pycache__/pathlib.cpython-38.pyc
7316-rw-r--r-- root root 46761 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.opt-1.pyc
7317-rw-r--r-- root root 40889 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.opt-2.pyc
7318-rw-r--r-- root root 46878 ./usr/lib/python3.8/__pycache__/pickle.cpython-38.pyc
7319-rw-r--r-- root root 66314 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.opt-1.pyc
7320-rw-r--r-- root root 57221 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.opt-2.pyc
7321-rw-r--r-- root root 67204 ./usr/lib/python3.8/__pycache__/pickletools.cpython-38.pyc
7322-rw-r--r-- root root 7795 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.opt-1.pyc
7323-rw-r--r-- root root 4928 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.opt-2.pyc
7324-rw-r--r-- root root 7795 ./usr/lib/python3.8/__pycache__/pipes.cpython-38.pyc
7325-rw-r--r-- root root 16309 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.opt-1.pyc
7326-rw-r--r-- root root 11053 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.opt-2.pyc
7327-rw-r--r-- root root 16309 ./usr/lib/python3.8/__pycache__/pkgutil.cpython-38.pyc
7328-rw-r--r-- root root 24240 ./usr/lib/python3.8/__pycache__/platform.cpython-38.opt-1.pyc
7329-rw-r--r-- root root 16364 ./usr/lib/python3.8/__pycache__/platform.cpython-38.opt-2.pyc
7330-rw-r--r-- root root 24240 ./usr/lib/python3.8/__pycache__/platform.cpython-38.pyc
7331-rw-r--r-- root root 13459 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.opt-1.pyc
7332-rw-r--r-- root root 8528 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.opt-2.pyc
7333-rw-r--r-- root root 13459 ./usr/lib/python3.8/__pycache__/poplib.cpython-38.pyc
7334-rw-r--r-- root root 10428 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.opt-1.pyc
7335-rw-r--r-- root root 8713 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.opt-2.pyc
7336-rw-r--r-- root root 10428 ./usr/lib/python3.8/__pycache__/posixpath.cpython-38.pyc
7337-rw-r--r-- root root 74059 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.opt-1.pyc
7338-rw-r--r-- root root 51166 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.opt-2.pyc
7339-rw-r--r-- root root 74079 ./usr/lib/python3.8/__pycache__/_pyio.cpython-38.pyc
7340-rw-r--r-- root root 10626 ./usr/lib/python3.8/__pycache__/queue.cpython-38.opt-1.pyc
7341-rw-r--r-- root root 6289 ./usr/lib/python3.8/__pycache__/queue.cpython-38.opt-2.pyc
7342-rw-r--r-- root root 10626 ./usr/lib/python3.8/__pycache__/queue.cpython-38.pyc
7343-rw-r--r-- root root 5573 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.opt-1.pyc
7344-rw-r--r-- root root 4537 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.opt-2.pyc
7345-rw-r--r-- root root 5748 ./usr/lib/python3.8/__pycache__/quopri.cpython-38.pyc
7346-rw-r--r-- root root 20108 ./usr/lib/python3.8/__pycache__/random.cpython-38.opt-1.pyc
7347-rw-r--r-- root root 13132 ./usr/lib/python3.8/__pycache__/random.cpython-38.opt-2.pyc
7348-rw-r--r-- root root 20108 ./usr/lib/python3.8/__pycache__/random.cpython-38.pyc
7349-rw-r--r-- root root 14422 ./usr/lib/python3.8/__pycache__/re.cpython-38.opt-1.pyc
7350-rw-r--r-- root root 6084 ./usr/lib/python3.8/__pycache__/re.cpython-38.opt-2.pyc
7351-rw-r--r-- root root 14422 ./usr/lib/python3.8/__pycache__/re.cpython-38.pyc
7352-rw-r--r-- root root 5303 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.opt-1.pyc
7353-rw-r--r-- root root 5147 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.opt-2.pyc
7354-rw-r--r-- root root 5303 ./usr/lib/python3.8/__pycache__/reprlib.cpython-38.pyc
7355-rw-r--r-- root root 5755 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.opt-1.pyc
7356-rw-r--r-- root root 3092 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.opt-2.pyc
7357-rw-r--r-- root root 5755 ./usr/lib/python3.8/__pycache__/rlcompleter.cpython-38.pyc
7358-rw-r--r-- root root 8181 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.opt-1.pyc
7359-rw-r--r-- root root 6615 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.opt-2.pyc
7360-rw-r--r-- root root 8181 ./usr/lib/python3.8/__pycache__/runpy.cpython-38.pyc
7361-rw-r--r-- root root 16935 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.opt-1.pyc
7362-rw-r--r-- root root 12900 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.opt-2.pyc
7363-rw-r--r-- root root 16935 ./usr/lib/python3.8/__pycache__/selectors.cpython-38.pyc
7364-rw-r--r-- root root 9490 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.opt-1.pyc
7365-rw-r--r-- root root 5339 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.opt-2.pyc
7366-rw-r--r-- root root 9490 ./usr/lib/python3.8/__pycache__/shelve.cpython-38.pyc
7367-rw-r--r-- root root 7536 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.opt-1.pyc
7368-rw-r--r-- root root 6979 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.opt-2.pyc
7369-rw-r--r-- root root 7536 ./usr/lib/python3.8/__pycache__/shlex.cpython-38.pyc
7370-rw-r--r-- root root 36569 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.opt-1.pyc
7371-rw-r--r-- root root 25114 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.opt-2.pyc
7372-rw-r--r-- root root 36569 ./usr/lib/python3.8/__pycache__/shutil.cpython-38.pyc
7373-rw-r--r-- root root 2843 ./usr/lib/python3.8/__pycache__/signal.cpython-38.opt-1.pyc
7374-rw-r--r-- root root 2619 ./usr/lib/python3.8/__pycache__/signal.cpython-38.opt-2.pyc
7375-rw-r--r-- root root 2843 ./usr/lib/python3.8/__pycache__/signal.cpython-38.pyc
7376-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.opt-1.pyc
7377-rw-r--r-- root root 2957 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.opt-2.pyc
7378-rw-r--r-- root root 3481 ./usr/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.pyc
7379-rw-r--r-- root root 16700 ./usr/lib/python3.8/__pycache__/site.cpython-38.opt-1.pyc
7380-rw-r--r-- root root 11164 ./usr/lib/python3.8/__pycache__/site.cpython-38.opt-2.pyc
7381-rw-r--r-- root root 16700 ./usr/lib/python3.8/__pycache__/site.cpython-38.pyc
7382-rw-r--r-- root root 35252 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.opt-1.pyc
7383-rw-r--r-- root root 18892 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.opt-2.pyc
7384-rw-r--r-- root root 35313 ./usr/lib/python3.8/__pycache__/smtplib.cpython-38.pyc
7385-rw-r--r-- root root 27747 ./usr/lib/python3.8/__pycache__/socket.cpython-38.opt-1.pyc
7386-rw-r--r-- root root 19424 ./usr/lib/python3.8/__pycache__/socket.cpython-38.opt-2.pyc
7387-rw-r--r-- root root 27787 ./usr/lib/python3.8/__pycache__/socket.cpython-38.pyc
7388-rw-r--r-- root root 14916 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.opt-1.pyc
7389-rw-r--r-- root root 14502 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.opt-2.pyc
7390-rw-r--r-- root root 15142 ./usr/lib/python3.8/__pycache__/sre_compile.cpython-38.pyc
7391-rw-r--r-- root root 6359 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.opt-1.pyc
7392-rw-r--r-- root root 5934 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.opt-2.pyc
7393-rw-r--r-- root root 6359 ./usr/lib/python3.8/__pycache__/sre_constants.cpython-38.pyc
7394-rw-r--r-- root root 21600 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.opt-1.pyc
7395-rw-r--r-- root root 21552 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.opt-2.pyc
7396-rw-r--r-- root root 21647 ./usr/lib/python3.8/__pycache__/sre_parse.cpython-38.pyc
7397-rw-r--r-- root root 44596 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.opt-1.pyc
7398-rw-r--r-- root root 33618 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.opt-2.pyc
7399-rw-r--r-- root root 44596 ./usr/lib/python3.8/__pycache__/ssl.cpython-38.pyc
7400-rw-r--r-- root root 4372 ./usr/lib/python3.8/__pycache__/stat.cpython-38.opt-1.pyc
7401-rw-r--r-- root root 3589 ./usr/lib/python3.8/__pycache__/stat.cpython-38.opt-2.pyc
7402-rw-r--r-- root root 4372 ./usr/lib/python3.8/__pycache__/stat.cpython-38.pyc
7403-rw-r--r-- root root 7300 ./usr/lib/python3.8/__pycache__/string.cpython-38.opt-1.pyc
7404-rw-r--r-- root root 6194 ./usr/lib/python3.8/__pycache__/string.cpython-38.opt-2.pyc
7405-rw-r--r-- root root 7300 ./usr/lib/python3.8/__pycache__/string.cpython-38.pyc
7406-rw-r--r-- root root 10959 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.opt-1.pyc
7407-rw-r--r-- root root 10739 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.opt-2.pyc
7408-rw-r--r-- root root 11017 ./usr/lib/python3.8/__pycache__/stringprep.cpython-38.pyc
7409-rw-r--r-- root root 16044 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.opt-1.pyc
7410-rw-r--r-- root root 12316 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.opt-2.pyc
7411-rw-r--r-- root root 16044 ./usr/lib/python3.8/__pycache__/_strptime.cpython-38.pyc
7412-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.opt-1.pyc
7413-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.opt-2.pyc
7414-rw-r--r-- root root 330 ./usr/lib/python3.8/__pycache__/struct.cpython-38.pyc
7415-rw-r--r-- root root 41843 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.opt-1.pyc
7416-rw-r--r-- root root 29913 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.opt-2.pyc
7417-rw-r--r-- root root 41940 ./usr/lib/python3.8/__pycache__/subprocess.cpython-38.pyc
7418-rw-r--r-- root root 2404 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.opt-1.pyc
7419-rw-r--r-- root root 2328 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.opt-2.pyc
7420-rw-r--r-- root root 2404 ./usr/lib/python3.8/__pycache__/symbol.cpython-38.pyc
7421-rw-r--r-- root root 15462 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.opt-1.pyc
7422-rw-r--r-- root root 13084 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.opt-2.pyc
7423-rw-r--r-- root root 15462 ./usr/lib/python3.8/__pycache__/sysconfig.cpython-38.pyc
7424-rw-r--r-- root root 62519 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.opt-1.pyc
7425-rw-r--r-- root root 48629 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.opt-2.pyc
7426-rw-r--r-- root root 62550 ./usr/lib/python3.8/__pycache__/tarfile.cpython-38.pyc
7427-rw-r--r-- root root 18237 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.opt-1.pyc
7428-rw-r--r-- root root 10735 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.opt-2.pyc
7429-rw-r--r-- root root 18237 ./usr/lib/python3.8/__pycache__/telnetlib.cpython-38.pyc
7430-rw-r--r-- root root 23455 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.opt-1.pyc
7431-rw-r--r-- root root 16871 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.opt-2.pyc
7432-rw-r--r-- root root 23455 ./usr/lib/python3.8/__pycache__/tempfile.cpython-38.pyc
7433-rw-r--r-- root root 13445 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.opt-1.pyc
7434-rw-r--r-- root root 6236 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.opt-2.pyc
7435-rw-r--r-- root root 13519 ./usr/lib/python3.8/__pycache__/textwrap.cpython-38.pyc
7436-rw-r--r-- root root 39425 ./usr/lib/python3.8/__pycache__/threading.cpython-38.opt-1.pyc
7437-rw-r--r-- root root 22848 ./usr/lib/python3.8/__pycache__/threading.cpython-38.opt-2.pyc
7438-rw-r--r-- root root 39976 ./usr/lib/python3.8/__pycache__/threading.cpython-38.pyc
7439-rw-r--r-- root root 6446 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.opt-1.pyc
7440-rw-r--r-- root root 3126 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.opt-2.pyc
7441-rw-r--r-- root root 6446 ./usr/lib/python3.8/__pycache__/_threading_local.cpython-38.pyc
7442-rw-r--r-- root root 2485 ./usr/lib/python3.8/__pycache__/token.cpython-38.opt-1.pyc
7443-rw-r--r-- root root 2452 ./usr/lib/python3.8/__pycache__/token.cpython-38.opt-2.pyc
7444-rw-r--r-- root root 2485 ./usr/lib/python3.8/__pycache__/token.cpython-38.pyc
7445-rw-r--r-- root root 17116 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.opt-1.pyc
7446-rw-r--r-- root root 13352 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.opt-2.pyc
7447-rw-r--r-- root root 17160 ./usr/lib/python3.8/__pycache__/tokenize.cpython-38.pyc
7448-rw-r--r-- root root 19889 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.opt-1.pyc
7449-rw-r--r-- root root 10986 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.opt-2.pyc
7450-rw-r--r-- root root 19889 ./usr/lib/python3.8/__pycache__/traceback.cpython-38.pyc
7451-rw-r--r-- root root 9177 ./usr/lib/python3.8/__pycache__/types.cpython-38.opt-1.pyc
7452-rw-r--r-- root root 7955 ./usr/lib/python3.8/__pycache__/types.cpython-38.opt-2.pyc
7453-rw-r--r-- root root 9177 ./usr/lib/python3.8/__pycache__/types.cpython-38.pyc
7454-rw-r--r-- root root 3605 ./usr/lib/python3.8/__pycache__/uu.cpython-38.opt-1.pyc
7455-rw-r--r-- root root 3361 ./usr/lib/python3.8/__pycache__/uu.cpython-38.opt-2.pyc
7456-rw-r--r-- root root 3605 ./usr/lib/python3.8/__pycache__/uu.cpython-38.pyc
7457-rw-r--r-- root root 23532 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.opt-1.pyc
7458-rw-r--r-- root root 16376 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.opt-2.pyc
7459-rw-r--r-- root root 23666 ./usr/lib/python3.8/__pycache__/uuid.cpython-38.pyc
7460-rw-r--r-- root root 13192 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.opt-1.pyc
7461-rw-r--r-- root root 10917 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.opt-2.pyc
7462-rw-r--r-- root root 13652 ./usr/lib/python3.8/__pycache__/warnings.cpython-38.pyc
7463-rw-r--r-- root root 19488 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.opt-1.pyc
7464-rw-r--r-- root root 16204 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.opt-2.pyc
7465-rw-r--r-- root root 19518 ./usr/lib/python3.8/__pycache__/weakref.cpython-38.pyc
7466-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.opt-1.pyc
7467-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.opt-2.pyc
7468-rw-r--r-- root root 7600 ./usr/lib/python3.8/__pycache__/_weakrefset.cpython-38.pyc
7469-rw-r--r-- root root 58420 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.opt-1.pyc
7470-rw-r--r-- root root 49731 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.opt-2.pyc
7471-rw-r--r-- root root 58457 ./usr/lib/python3.8/__pycache__/zipfile.cpython-38.pyc
7472-rw-r--r-- root root 93177 ./usr/lib/python3.8/_pyio.py
7473-rw-r--r-- root root 11356 ./usr/lib/python3.8/queue.py
7474-rwxr-xr-x root root 7254 ./usr/lib/python3.8/quopri.py
7475-rw-r--r-- root root 28802 ./usr/lib/python3.8/random.py
7476-rw-r--r-- root root 5267 ./usr/lib/python3.8/reprlib.py
7477-rw-r--r-- root root 15861 ./usr/lib/python3.8/re.py
7478-rw-r--r-- root root 7097 ./usr/lib/python3.8/rlcompleter.py
7479-rw-r--r-- root root 12052 ./usr/lib/python3.8/runpy.py
7480-rw-r--r-- root root 18561 ./usr/lib/python3.8/selectors.py
7481-rw-r--r-- root root 8527 ./usr/lib/python3.8/shelve.py
7482-rw-r--r-- root root 13325 ./usr/lib/python3.8/shlex.py
7483-rw-r--r-- root root 50752 ./usr/lib/python3.8/shutil.py
7484-rw-r--r-- root root 2273 ./usr/lib/python3.8/signal.py
7485-rw-r--r-- root root 3115 ./usr/lib/python3.8/_sitebuiltins.py
7486drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages
7487drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info
7488-rw-r--r-- root root 1 ./usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info/dependency_links.txt
7489-rw-r--r-- root root 242 ./usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info/PKG-INFO
7490-rw-r--r-- root root 203 ./usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info/SOURCES.txt
7491-rw-r--r-- root root 10 ./usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info/top_level.txt
7492-rwxr-xr-x root root 45936 ./usr/lib/python3.8/site-packages/btrfsutil.cpython-38-x86_64-linux-gnu.so
7493drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/cairo
7494-rwxr-xr-x root root 220616 ./usr/lib/python3.8/site-packages/cairo/_cairo.cpython-38-x86_64-linux-gnu.so
7495drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/cairo/include
7496-rw-r--r-- root root 9152 ./usr/lib/python3.8/site-packages/cairo/include/py3cairo.h
7497-rwxr-xr-x root root 660 ./usr/lib/python3.8/site-packages/cairo/__init__.py
7498-rw-r--r-- root root 33334 ./usr/lib/python3.8/site-packages/cairo/__init__.pyi
7499-rw-r--r-- root root 0 ./usr/lib/python3.8/site-packages/cairo/py.typed
7500drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus
7501-rwxr-xr-x root root 167752 ./usr/lib/python3.8/site-packages/_dbus_bindings.so
7502-rw-r--r-- root root 17960 ./usr/lib/python3.8/site-packages/dbus/bus.py
7503-rw-r--r-- root root 148 ./usr/lib/python3.8/site-packages/dbus/_compat.py
7504-rw-r--r-- root root 27806 ./usr/lib/python3.8/site-packages/dbus/connection.py
7505-rw-r--r-- root root 8837 ./usr/lib/python3.8/site-packages/dbus/_dbus.py
7506-rw-r--r-- root root 15240 ./usr/lib/python3.8/site-packages/dbus/decorators.py
7507-rw-r--r-- root root 4707 ./usr/lib/python3.8/site-packages/dbus/exceptions.py
7508-rw-r--r-- root root 3409 ./usr/lib/python3.8/site-packages/dbus/_expat_introspect_parser.py
7509-rw-r--r-- root root 3517 ./usr/lib/python3.8/site-packages/dbus/gi_service.py
7510-rwxr-xr-x root root 22736 ./usr/lib/python3.8/site-packages/_dbus_glib_bindings.so
7511-rw-r--r-- root root 2130 ./usr/lib/python3.8/site-packages/dbus/glib.py
7512-rw-r--r-- root root 3756 ./usr/lib/python3.8/site-packages/dbus/__init__.py
7513-rw-r--r-- root root 1864 ./usr/lib/python3.8/site-packages/dbus/lowlevel.py
7514drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/mainloop
7515-rw-r--r-- root root 1806 ./usr/lib/python3.8/site-packages/dbus/mainloop/glib.py
7516-rw-r--r-- root root 2369 ./usr/lib/python3.8/site-packages/dbus/mainloop/__init__.py
7517drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__
7518-rw-r--r-- root root 655 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/glib.cpython-38.opt-1.pyc
7519-rw-r--r-- root root 655 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/glib.cpython-38.pyc
7520-rw-r--r-- root root 435 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/__init__.cpython-38.opt-1.pyc
7521-rw-r--r-- root root 435 ./usr/lib/python3.8/site-packages/dbus/mainloop/__pycache__/__init__.cpython-38.pyc
7522drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock
7523-rw-r--r-- root root 856 ./usr/lib/python3.8/site-packages/dbusmock/__init__.py
7524-rw-r--r-- root root 4533 ./usr/lib/python3.8/site-packages/dbusmock/__main__.py
7525-rw-r--r-- root root 28848 ./usr/lib/python3.8/site-packages/dbusmock/mockobject.py
7526drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__
7527-rw-r--r-- root root 641 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/__init__.cpython-38.pyc
7528-rw-r--r-- root root 3142 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/__main__.cpython-38.pyc
7529-rw-r--r-- root root 22372 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/mockobject.cpython-38.pyc
7530-rw-r--r-- root root 7903 ./usr/lib/python3.8/site-packages/dbusmock/__pycache__/testcase.cpython-38.pyc
7531drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/templates
7532-rw-r--r-- root root 16490 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez4.py
7533-rw-r--r-- root root 10784 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez5-obex.py
7534-rw-r--r-- root root 15264 ./usr/lib/python3.8/site-packages/dbusmock/templates/bluez5.py
7535-rw-r--r-- root root 1250 ./usr/lib/python3.8/site-packages/dbusmock/templates/gnome_screensaver.py
7536-rw-r--r-- root root 382 ./usr/lib/python3.8/site-packages/dbusmock/templates/__init__.py
7537-rw-r--r-- root root 10765 ./usr/lib/python3.8/site-packages/dbusmock/templates/logind.py
7538-rw-r--r-- root root 1139 ./usr/lib/python3.8/site-packages/dbusmock/templates/low_memory_monitor.py
7539-rw-r--r-- root root 34680 ./usr/lib/python3.8/site-packages/dbusmock/templates/networkmanager.py
7540-rw-r--r-- root root 1777 ./usr/lib/python3.8/site-packages/dbusmock/templates/notification_daemon.py
7541-rw-r--r-- root root 18046 ./usr/lib/python3.8/site-packages/dbusmock/templates/ofono.py
7542-rw-r--r-- root root 2089 ./usr/lib/python3.8/site-packages/dbusmock/templates/polkitd.py
7543drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__
7544-rw-r--r-- root root 10255 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez4.cpython-38.pyc
7545-rw-r--r-- root root 9287 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez5.cpython-38.pyc
7546-rw-r--r-- root root 7996 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/bluez5-obex.cpython-38.pyc
7547-rw-r--r-- root root 1052 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/gnome_screensaver.cpython-38.pyc
7548-rw-r--r-- root root 206 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/__init__.cpython-38.pyc
7549-rw-r--r-- root root 6563 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/logind.cpython-38.pyc
7550-rw-r--r-- root root 1111 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/low_memory_monitor.cpython-38.pyc
7551-rw-r--r-- root root 23374 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/networkmanager.cpython-38.pyc
7552-rw-r--r-- root root 1419 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/notification_daemon.cpython-38.pyc
7553-rw-r--r-- root root 9250 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/ofono.cpython-38.pyc
7554-rw-r--r-- root root 1890 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/polkitd.cpython-38.pyc
7555-rw-r--r-- root root 1342 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/timedated.cpython-38.pyc
7556-rw-r--r-- root root 6843 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/upower.cpython-38.pyc
7557-rw-r--r-- root root 2520 ./usr/lib/python3.8/site-packages/dbusmock/templates/__pycache__/urfkill.cpython-38.pyc
7558-rw-r--r-- root root 1796 ./usr/lib/python3.8/site-packages/dbusmock/templates/timedated.py
7559-rw-r--r-- root root 10801 ./usr/lib/python3.8/site-packages/dbusmock/templates/upower.py
7560-rw-r--r-- root root 3709 ./usr/lib/python3.8/site-packages/dbusmock/templates/urfkill.py
7561-rw-r--r-- root root 9445 ./usr/lib/python3.8/site-packages/dbusmock/testcase.py
7562-rw-r--r-- root root 24821 ./usr/lib/python3.8/site-packages/dbus/proxies.py
7563drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/dbus/__pycache__
7564-rw-r--r-- root root 13609 ./usr/lib/python3.8/site-packages/dbus/__pycache__/bus.cpython-38.opt-1.pyc
7565-rw-r--r-- root root 13609 ./usr/lib/python3.8/site-packages/dbus/__pycache__/bus.cpython-38.pyc
7566-rw-r--r-- root root 218 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_compat.cpython-38.opt-1.pyc
7567-rw-r--r-- root root 218 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_compat.cpython-38.pyc
7568-rw-r--r-- root root 17806 ./usr/lib/python3.8/site-packages/dbus/__pycache__/connection.cpython-38.opt-1.pyc
7569-rw-r--r-- root root 17806 ./usr/lib/python3.8/site-packages/dbus/__pycache__/connection.cpython-38.pyc
7570-rw-r--r-- root root 7385 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_dbus.cpython-38.opt-1.pyc
7571-rw-r--r-- root root 7385 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_dbus.cpython-38.pyc
7572-rw-r--r-- root root 11569 ./usr/lib/python3.8/site-packages/dbus/__pycache__/decorators.cpython-38.opt-1.pyc
7573-rw-r--r-- root root 11569 ./usr/lib/python3.8/site-packages/dbus/__pycache__/decorators.cpython-38.pyc
7574-rw-r--r-- root root 3916 ./usr/lib/python3.8/site-packages/dbus/__pycache__/exceptions.cpython-38.opt-1.pyc
7575-rw-r--r-- root root 3916 ./usr/lib/python3.8/site-packages/dbus/__pycache__/exceptions.cpython-38.pyc
7576-rw-r--r-- root root 2206 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-38.opt-1.pyc
7577-rw-r--r-- root root 2206 ./usr/lib/python3.8/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-38.pyc
7578-rw-r--r-- root root 1954 ./usr/lib/python3.8/site-packages/dbus/__pycache__/gi_service.cpython-38.opt-1.pyc
7579-rw-r--r-- root root 1954 ./usr/lib/python3.8/site-packages/dbus/__pycache__/gi_service.cpython-38.pyc
7580-rw-r--r-- root root 1018 ./usr/lib/python3.8/site-packages/dbus/__pycache__/glib.cpython-38.opt-1.pyc
7581-rw-r--r-- root root 1018 ./usr/lib/python3.8/site-packages/dbus/__pycache__/glib.cpython-38.pyc
7582-rw-r--r-- root root 2185 ./usr/lib/python3.8/site-packages/dbus/__pycache__/__init__.cpython-38.opt-1.pyc
7583-rw-r--r-- root root 2185 ./usr/lib/python3.8/site-packages/dbus/__pycache__/__init__.cpython-38.pyc
7584-rw-r--r-- root root 677 ./usr/lib/python3.8/site-packages/dbus/__pycache__/lowlevel.cpython-38.opt-1.pyc
7585-rw-r--r-- root root 677 ./usr/lib/python3.8/site-packages/dbus/__pycache__/lowlevel.cpython-38.pyc
7586-rw-r--r-- root root 17730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/proxies.cpython-38.opt-1.pyc
7587-rw-r--r-- root root 17730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/proxies.cpython-38.pyc
7588-rw-r--r-- root root 3462 ./usr/lib/python3.8/site-packages/dbus/__pycache__/server.cpython-38.opt-1.pyc
7589-rw-r--r-- root root 3462 ./usr/lib/python3.8/site-packages/dbus/__pycache__/server.cpython-38.pyc
7590-rw-r--r-- root root 22086 ./usr/lib/python3.8/site-packages/dbus/__pycache__/service.cpython-38.opt-1.pyc
7591-rw-r--r-- root root 22086 ./usr/lib/python3.8/site-packages/dbus/__pycache__/service.cpython-38.pyc
7592-rw-r--r-- root root 730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/types.cpython-38.opt-1.pyc
7593-rw-r--r-- root root 730 ./usr/lib/python3.8/site-packages/dbus/__pycache__/types.cpython-38.pyc
7594-rw-r--r-- root root 4657 ./usr/lib/python3.8/site-packages/dbus/server.py
7595-rw-r--r-- root root 35473 ./usr/lib/python3.8/site-packages/dbus/service.py
7596-rw-r--r-- root root 561 ./usr/lib/python3.8/site-packages/dbus/types.py
7597drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi
7598-rw-r--r-- root root 1493 ./usr/lib/python3.8/site-packages/gi/_compat.py
7599-rw-r--r-- root root 1969 ./usr/lib/python3.8/site-packages/gi/_constants.py
7600-rw-r--r-- root root 6688 ./usr/lib/python3.8/site-packages/gi/docstring.py
7601-rw-r--r-- root root 2082 ./usr/lib/python3.8/site-packages/gi/_error.py
7602-rwxr-xr-x root root 22488 ./usr/lib/python3.8/site-packages/gi/_gi_cairo.cpython-38-x86_64-linux-gnu.so
7603-rwxr-xr-x root root 344488 ./usr/lib/python3.8/site-packages/gi/_gi.cpython-38-x86_64-linux-gnu.so
7604-rw-r--r-- root root 7833 ./usr/lib/python3.8/site-packages/gi/_gtktemplate.py
7605-rw-r--r-- root root 5280 ./usr/lib/python3.8/site-packages/gi/importer.py
7606-rw-r--r-- root root 5894 ./usr/lib/python3.8/site-packages/gi/__init__.py
7607-rw-r--r-- root root 9705 ./usr/lib/python3.8/site-packages/gi/module.py
7608-rw-r--r-- root root 13192 ./usr/lib/python3.8/site-packages/gi/_option.py
7609-rw-r--r-- root root 8083 ./usr/lib/python3.8/site-packages/gi/_ossighelper.py
7610drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi/overrides
7611-rw-r--r-- root root 1724 ./usr/lib/python3.8/site-packages/gi/overrides/GdkPixbuf.py
7612-rw-r--r-- root root 16239 ./usr/lib/python3.8/site-packages/gi/overrides/Gdk.py
7613-rw-r--r-- root root 2242 ./usr/lib/python3.8/site-packages/gi/overrides/GIMarshallingTests.py
7614-rw-r--r-- root root 19033 ./usr/lib/python3.8/site-packages/gi/overrides/Gio.py
7615-rw-r--r-- root root 29897 ./usr/lib/python3.8/site-packages/gi/overrides/GLib.py
7616-rw-r--r-- root root 24640 ./usr/lib/python3.8/site-packages/gi/overrides/GObject.py
7617-rw-r--r-- root root 59669 ./usr/lib/python3.8/site-packages/gi/overrides/Gtk.py
7618-rw-r--r-- root root 12590 ./usr/lib/python3.8/site-packages/gi/overrides/__init__.py
7619-rw-r--r-- root root 1705 ./usr/lib/python3.8/site-packages/gi/overrides/keysyms.py
7620-rw-r--r-- root root 1774 ./usr/lib/python3.8/site-packages/gi/overrides/Pango.py
7621-rw-r--r-- root root 14331 ./usr/lib/python3.8/site-packages/gi/_propertyhelper.py
7622-rw-r--r-- root root 766 ./usr/lib/python3.8/site-packages/gi/pygtkcompat.py
7623drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/gi/repository
7624-rw-r--r-- root root 1042 ./usr/lib/python3.8/site-packages/gi/repository/__init__.py
7625-rw-r--r-- root root 9303 ./usr/lib/python3.8/site-packages/gi/_signalhelper.py
7626-rw-r--r-- root root 14330 ./usr/lib/python3.8/site-packages/gi/types.py
7627-rw-r--r-- root root 1024 ./usr/lib/python3.8/site-packages/pycairo-1.19.1.egg-info
7628-rw-r--r-- root root 810 ./usr/lib/python3.8/site-packages/PyGObject-3.36.1.egg-info
7629drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/pygtkcompat
7630-rw-r--r-- root root 14200 ./usr/lib/python3.8/site-packages/pygtkcompat/generictreemodel.py
7631-rw-r--r-- root root 547 ./usr/lib/python3.8/site-packages/pygtkcompat/__init__.py
7632-rw-r--r-- root root 20890 ./usr/lib/python3.8/site-packages/pygtkcompat/pygtkcompat.py
7633drwxr-xr-x root root 4096 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info
7634-rw-r--r-- root root 1 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/dependency_links.txt
7635-rw-r--r-- root root 14631 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/PKG-INFO
7636-rw-r--r-- root root 1137 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/SOURCES.txt
7637-rw-r--r-- root root 9 ./usr/lib/python3.8/site-packages/python_dbusmock-0.19-py3.8.egg-info/top_level.txt
7638-rw-r--r-- root root 21342 ./usr/lib/python3.8/site.py
7639-rwxr-xr-x root root 44328 ./usr/lib/python3.8/smtplib.py
7640-rw-r--r-- root root 35243 ./usr/lib/python3.8/socket.py
7641-rw-r--r-- root root 26695 ./usr/lib/python3.8/sre_compile.py
7642-rw-r--r-- root root 7154 ./usr/lib/python3.8/sre_constants.py
7643-rw-r--r-- root root 40230 ./usr/lib/python3.8/sre_parse.py
7644-rw-r--r-- root root 50760 ./usr/lib/python3.8/ssl.py
7645-rw-r--r-- root root 5485 ./usr/lib/python3.8/stat.py
7646-rw-r--r-- root root 12917 ./usr/lib/python3.8/stringprep.py
7647-rw-r--r-- root root 10535 ./usr/lib/python3.8/string.py
7648-rw-r--r-- root root 25268 ./usr/lib/python3.8/_strptime.py
7649-rw-r--r-- root root 257 ./usr/lib/python3.8/struct.py
7650-rw-r--r-- root root 77289 ./usr/lib/python3.8/subprocess.py
7651-rw-r--r-- root root 2109 ./usr/lib/python3.8/symbol.py
7652-rw-r--r-- root root 26693 ./usr/lib/python3.8/_sysconfigdata__linux_x86_64-linux-gnu.py
7653-rw-r--r-- root root 24339 ./usr/lib/python3.8/sysconfig.py
7654-rwxr-xr-x root root 93575 ./usr/lib/python3.8/tarfile.py
7655-rw-r--r-- root root 23254 ./usr/lib/python3.8/telnetlib.py
7656-rw-r--r-- root root 27595 ./usr/lib/python3.8/tempfile.py
7657-rw-r--r-- root root 19407 ./usr/lib/python3.8/textwrap.py
7658-rw-r--r-- root root 7220 ./usr/lib/python3.8/_threading_local.py
7659-rw-r--r-- root root 50820 ./usr/lib/python3.8/threading.py
7660-rw-r--r-- root root 25841 ./usr/lib/python3.8/tokenize.py
7661-rw-r--r-- root root 2368 ./usr/lib/python3.8/token.py
7662-rw-r--r-- root root 23478 ./usr/lib/python3.8/traceback.py
7663-rw-r--r-- root root 9713 ./usr/lib/python3.8/types.py
7664drwxr-xr-x root root 4096 ./usr/lib/python3.8/urllib
7665-rw-r--r-- root root 2632 ./usr/lib/python3.8/urllib/error.py
7666-rw-r--r-- root root 0 ./usr/lib/python3.8/urllib/__init__.py
7667-rw-r--r-- root root 41583 ./usr/lib/python3.8/urllib/parse.py
7668drwxr-xr-x root root 4096 ./usr/lib/python3.8/urllib/__pycache__
7669-rw-r--r-- root root 2809 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.opt-1.pyc
7670-rw-r--r-- root root 2134 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.opt-2.pyc
7671-rw-r--r-- root root 2809 ./usr/lib/python3.8/urllib/__pycache__/error.cpython-38.pyc
7672-rw-r--r-- root root 128 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.opt-1.pyc
7673-rw-r--r-- root root 128 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.opt-2.pyc
7674-rw-r--r-- root root 128 ./usr/lib/python3.8/urllib/__pycache__/__init__.cpython-38.pyc
7675-rw-r--r-- root root 33932 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.opt-1.pyc
7676-rw-r--r-- root root 24496 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.opt-2.pyc
7677-rw-r--r-- root root 33932 ./usr/lib/python3.8/urllib/__pycache__/parse.cpython-38.pyc
7678-rw-r--r-- root root 72417 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.opt-1.pyc
7679-rw-r--r-- root root 60124 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.opt-2.pyc
7680-rw-r--r-- root root 72531 ./usr/lib/python3.8/urllib/__pycache__/request.cpython-38.pyc
7681-rw-r--r-- root root 3289 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.opt-1.pyc
7682-rw-r--r-- root root 2710 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.opt-2.pyc
7683-rw-r--r-- root root 3289 ./usr/lib/python3.8/urllib/__pycache__/response.cpython-38.pyc
7684-rw-r--r-- root root 7327 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.opt-1.pyc
7685-rw-r--r-- root root 5959 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.opt-2.pyc
7686-rw-r--r-- root root 7327 ./usr/lib/python3.8/urllib/__pycache__/robotparser.cpython-38.pyc
7687-rw-r--r-- root root 101308 ./usr/lib/python3.8/urllib/request.py
7688-rw-r--r-- root root 2299 ./usr/lib/python3.8/urllib/response.py
7689-rw-r--r-- root root 9424 ./usr/lib/python3.8/urllib/robotparser.py
7690-rw-r--r-- root root 30394 ./usr/lib/python3.8/uuid.py
7691-rwxr-xr-x root root 6959 ./usr/lib/python3.8/uu.py
7692-rw-r--r-- root root 19688 ./usr/lib/python3.8/warnings.py
7693-rw-r--r-- root root 21387 ./usr/lib/python3.8/weakref.py
7694-rw-r--r-- root root 5735 ./usr/lib/python3.8/_weakrefset.py
7695drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml
7696drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/dom
7697-rw-r--r-- root root 3451 ./usr/lib/python3.8/xml/dom/domreg.py
7698-rw-r--r-- root root 35756 ./usr/lib/python3.8/xml/dom/expatbuilder.py
7699-rw-r--r-- root root 4019 ./usr/lib/python3.8/xml/dom/__init__.py
7700-rw-r--r-- root root 3367 ./usr/lib/python3.8/xml/dom/minicompat.py
7701-rw-r--r-- root root 66857 ./usr/lib/python3.8/xml/dom/minidom.py
7702-rw-r--r-- root root 936 ./usr/lib/python3.8/xml/dom/NodeFilter.py
7703-rw-r--r-- root root 11997 ./usr/lib/python3.8/xml/dom/pulldom.py
7704drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/dom/__pycache__
7705-rw-r--r-- root root 2850 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.opt-1.pyc
7706-rw-r--r-- root root 1648 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.opt-2.pyc
7707-rw-r--r-- root root 2850 ./usr/lib/python3.8/xml/dom/__pycache__/domreg.cpython-38.pyc
7708-rw-r--r-- root root 26806 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.opt-1.pyc
7709-rw-r--r-- root root 24201 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.opt-2.pyc
7710-rw-r--r-- root root 27341 ./usr/lib/python3.8/xml/dom/__pycache__/expatbuilder.cpython-38.pyc
7711-rw-r--r-- root root 5530 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.opt-1.pyc
7712-rw-r--r-- root root 4735 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.opt-2.pyc
7713-rw-r--r-- root root 5530 ./usr/lib/python3.8/xml/dom/__pycache__/__init__.cpython-38.pyc
7714-rw-r--r-- root root 2650 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.opt-1.pyc
7715-rw-r--r-- root root 2472 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.opt-2.pyc
7716-rw-r--r-- root root 2742 ./usr/lib/python3.8/xml/dom/__pycache__/minicompat.cpython-38.pyc
7717-rw-r--r-- root root 55272 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.opt-1.pyc
7718-rw-r--r-- root root 53701 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.opt-2.pyc
7719-rw-r--r-- root root 55374 ./usr/lib/python3.8/xml/dom/__pycache__/minidom.cpython-38.pyc
7720-rw-r--r-- root root 967 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.opt-1.pyc
7721-rw-r--r-- root root 874 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.opt-2.pyc
7722-rw-r--r-- root root 967 ./usr/lib/python3.8/xml/dom/__pycache__/NodeFilter.cpython-38.pyc
7723-rw-r--r-- root root 10691 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.opt-1.pyc
7724-rw-r--r-- root root 10255 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.opt-2.pyc
7725-rw-r--r-- root root 10691 ./usr/lib/python3.8/xml/dom/__pycache__/pulldom.cpython-38.pyc
7726-rw-r--r-- root root 12464 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.opt-1.pyc
7727-rw-r--r-- root root 12035 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.opt-2.pyc
7728-rw-r--r-- root root 12494 ./usr/lib/python3.8/xml/dom/__pycache__/xmlbuilder.cpython-38.pyc
7729-rw-r--r-- root root 12403 ./usr/lib/python3.8/xml/dom/xmlbuilder.py
7730drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/etree
7731-rw-r--r-- root root 82 ./usr/lib/python3.8/xml/etree/cElementTree.py
7732-rw-r--r-- root root 5151 ./usr/lib/python3.8/xml/etree/ElementInclude.py
7733-rw-r--r-- root root 13118 ./usr/lib/python3.8/xml/etree/ElementPath.py
7734-rw-r--r-- root root 72728 ./usr/lib/python3.8/xml/etree/ElementTree.py
7735-rw-r--r-- root root 1604 ./usr/lib/python3.8/xml/etree/__init__.py
7736drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/etree/__pycache__
7737-rw-r--r-- root root 173 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.opt-1.pyc
7738-rw-r--r-- root root 173 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.opt-2.pyc
7739-rw-r--r-- root root 173 ./usr/lib/python3.8/xml/etree/__pycache__/cElementTree.cpython-38.pyc
7740-rw-r--r-- root root 1579 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.opt-1.pyc
7741-rw-r--r-- root root 1579 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.opt-2.pyc
7742-rw-r--r-- root root 1579 ./usr/lib/python3.8/xml/etree/__pycache__/ElementInclude.cpython-38.pyc
7743-rw-r--r-- root root 8434 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.opt-1.pyc
7744-rw-r--r-- root root 8434 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.opt-2.pyc
7745-rw-r--r-- root root 8434 ./usr/lib/python3.8/xml/etree/__pycache__/ElementPath.cpython-38.pyc
7746-rw-r--r-- root root 55298 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.opt-1.pyc
7747-rw-r--r-- root root 36901 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.opt-2.pyc
7748-rw-r--r-- root root 55612 ./usr/lib/python3.8/xml/etree/__pycache__/ElementTree.cpython-38.pyc
7749-rw-r--r-- root root 131 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.opt-1.pyc
7750-rw-r--r-- root root 131 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.opt-2.pyc
7751-rw-r--r-- root root 131 ./usr/lib/python3.8/xml/etree/__pycache__/__init__.cpython-38.pyc
7752-rw-r--r-- root root 557 ./usr/lib/python3.8/xml/__init__.py
7753drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/parsers
7754-rw-r--r-- root root 248 ./usr/lib/python3.8/xml/parsers/expat.py
7755-rw-r--r-- root root 167 ./usr/lib/python3.8/xml/parsers/__init__.py
7756drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/parsers/__pycache__
7757-rw-r--r-- root root 334 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.opt-1.pyc
7758-rw-r--r-- root root 268 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.opt-2.pyc
7759-rw-r--r-- root root 334 ./usr/lib/python3.8/xml/parsers/__pycache__/expat.cpython-38.pyc
7760-rw-r--r-- root root 305 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.opt-1.pyc
7761-rw-r--r-- root root 133 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.opt-2.pyc
7762-rw-r--r-- root root 305 ./usr/lib/python3.8/xml/parsers/__pycache__/__init__.cpython-38.pyc
7763drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/__pycache__
7764-rw-r--r-- root root 692 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.opt-1.pyc
7765-rw-r--r-- root root 169 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.opt-2.pyc
7766-rw-r--r-- root root 692 ./usr/lib/python3.8/xml/__pycache__/__init__.cpython-38.pyc
7767drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/sax
7768-rw-r--r-- root root 4785 ./usr/lib/python3.8/xml/sax/_exceptions.py
7769-rw-r--r-- root root 15704 ./usr/lib/python3.8/xml/sax/expatreader.py
7770-rw-r--r-- root root 13922 ./usr/lib/python3.8/xml/sax/handler.py
7771-rw-r--r-- root root 3647 ./usr/lib/python3.8/xml/sax/__init__.py
7772drwxr-xr-x root root 4096 ./usr/lib/python3.8/xml/sax/__pycache__
7773-rw-r--r-- root root 5444 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.opt-1.pyc
7774-rw-r--r-- root root 2841 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.opt-2.pyc
7775-rw-r--r-- root root 5444 ./usr/lib/python3.8/xml/sax/__pycache__/_exceptions.cpython-38.pyc
7776-rw-r--r-- root root 12495 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.opt-1.pyc
7777-rw-r--r-- root root 12084 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.opt-2.pyc
7778-rw-r--r-- root root 12495 ./usr/lib/python3.8/xml/sax/__pycache__/expatreader.cpython-38.pyc
7779-rw-r--r-- root root 12422 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.opt-1.pyc
7780-rw-r--r-- root root 4651 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.opt-2.pyc
7781-rw-r--r-- root root 12422 ./usr/lib/python3.8/xml/sax/__pycache__/handler.cpython-38.pyc
7782-rw-r--r-- root root 3219 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.opt-1.pyc
7783-rw-r--r-- root root 2156 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.opt-2.pyc
7784-rw-r--r-- root root 3219 ./usr/lib/python3.8/xml/sax/__pycache__/__init__.cpython-38.pyc
7785-rw-r--r-- root root 12919 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.opt-1.pyc
7786-rw-r--r-- root root 11264 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.opt-2.pyc
7787-rw-r--r-- root root 12919 ./usr/lib/python3.8/xml/sax/__pycache__/saxutils.cpython-38.pyc
7788-rw-r--r-- root root 16844 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.opt-1.pyc
7789-rw-r--r-- root root 10407 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.opt-2.pyc
7790-rw-r--r-- root root 16844 ./usr/lib/python3.8/xml/sax/__pycache__/xmlreader.cpython-38.pyc
7791-rw-r--r-- root root 12255 ./usr/lib/python3.8/xml/sax/saxutils.py
7792-rw-r--r-- root root 12684 ./usr/lib/python3.8/xml/sax/xmlreader.py
7793-rw-r--r-- root root 87626 ./usr/lib/python3.8/zipfile.py
7794-rw-r--r-- root root 3920 ./usr/lib/Scrt1.o
7795drwxr-xr-x root root 4096 ./usr/lib/ssl-1.1
7796lrwxrwxrwx root root 22 ./usr/lib/ssl-1.1/certs -> ../../../etc/ssl/certs
7797-rw-r--r-- root root 412 ./usr/lib/ssl-1.1/ct_log_list.cnf
7798-rw-r--r-- root root 412 ./usr/lib/ssl-1.1/ct_log_list.cnf.dist
7799-rw-r--r-- root root 10909 ./usr/lib/ssl-1.1/openssl.cnf.dist
7800lrwxrwxrwx root root 28 ./usr/lib/ssl-1.1/openssl.cnf -> ../../../etc/ssl/openssl.cnf
7801lrwxrwxrwx root root 24 ./usr/lib/ssl-1.1/private -> ../../../etc/ssl/private
7802drwxr-xr-x root root 4096 ./usr/lib/systemd
7803drwxr-xr-x root root 4096 ./usr/lib/systemd/user
7804-rw-r--r-- root root 360 ./usr/lib/systemd/user/dbus.service
7805-rw-r--r-- root root 174 ./usr/lib/systemd/user/dbus.socket
7806drwxr-xr-x root root 4096 ./usr/lib/systemd/user/sockets.target.wants
7807lrwxrwxrwx root root 14 ./usr/lib/systemd/user/sockets.target.wants/dbus.socket -> ../dbus.socket
7808drwxr-xr-x root root 4096 ./usr/lib/x86_64-poky-linux
7809drwxr-xr-x root root 4096 ./usr/lib/x86_64-poky-linux/10.1.0
7810-rw-r--r-- root root 2432 ./usr/lib/x86_64-poky-linux/10.1.0/crtbegin.o
7811-rw-r--r-- root root 2752 ./usr/lib/x86_64-poky-linux/10.1.0/crtbeginS.o
7812-rw-r--r-- root root 2944 ./usr/lib/x86_64-poky-linux/10.1.0/crtbeginT.o
7813-rw-r--r-- root root 1200 ./usr/lib/x86_64-poky-linux/10.1.0/crtend.o
7814-rw-r--r-- root root 1200 ./usr/lib/x86_64-poky-linux/10.1.0/crtendS.o
7815-rw-r--r-- root root 3848 ./usr/lib/x86_64-poky-linux/10.1.0/crtfastmath.o
7816-rw-r--r-- root root 3400 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec32.o
7817-rw-r--r-- root root 3416 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec64.o
7818-rw-r--r-- root root 3400 ./usr/lib/x86_64-poky-linux/10.1.0/crtprec80.o
7819-rw-r--r-- root root 6179894 ./usr/lib/x86_64-poky-linux/10.1.0/libgcc.a
7820-rw-r--r-- root root 405636 ./usr/lib/x86_64-poky-linux/10.1.0/libgcc_eh.a
7821-rw-r--r-- root root 267062 ./usr/lib/x86_64-poky-linux/10.1.0/libgcov.a
7822-rw-r--r-- root root 201 ./usr/lib/xml2Conf.sh
7823drwxr-xr-x root root 4096 ./usr/lib/xtables
7824-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_ah.so
7825-rwxr-xr-x root root 14640 ./usr/lib/xtables/libip6t_DNAT.so
7826-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_DNPT.so
7827-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_dst.so
7828-rwxr-xr-x root root 14208 ./usr/lib/xtables/libip6t_eui64.so
7829-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_frag.so
7830-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_hbh.so
7831-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_hl.so
7832-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_HL.so
7833-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_icmp6.so
7834-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_ipv6header.so
7835-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_LOG.so
7836-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_MASQUERADE.so
7837-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_mh.so
7838-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_NETMAP.so
7839-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_REDIRECT.so
7840-rwxr-xr-x root root 14448 ./usr/lib/xtables/libip6t_REJECT.so
7841-rwxr-xr-x root root 14432 ./usr/lib/xtables/libip6t_rt.so
7842-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_SNAT.so
7843-rwxr-xr-x root root 14440 ./usr/lib/xtables/libip6t_SNPT.so
7844-rwxr-xr-x root root 22816 ./usr/lib/xtables/libip6t_srh.so
7845-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_ah.so
7846-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_CLUSTERIP.so
7847-rwxr-xr-x root root 18736 ./usr/lib/xtables/libipt_DNAT.so
7848-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_ECN.so
7849-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_icmp.so
7850-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_LOG.so
7851-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_MASQUERADE.so
7852-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_NETMAP.so
7853-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_realm.so
7854-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_REDIRECT.so
7855-rwxr-xr-x root root 14448 ./usr/lib/xtables/libipt_REJECT.so
7856-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_SNAT.so
7857-rwxr-xr-x root root 14432 ./usr/lib/xtables/libipt_ttl.so
7858-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_TTL.so
7859-rwxr-xr-x root root 14440 ./usr/lib/xtables/libipt_ULOG.so
7860-rwxr-xr-x root root 14632 ./usr/lib/xtables/libxt_addrtype.so
7861-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_AUDIT.so
7862-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_bpf.so
7863-rwxr-xr-x root root 14816 ./usr/lib/xtables/libxt_cgroup.so
7864-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_CHECKSUM.so
7865-rwxr-xr-x root root 14648 ./usr/lib/xtables/libxt_CLASSIFY.so
7866-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_cluster.so
7867-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_comment.so
7868-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_connbytes.so
7869-rwxr-xr-x root root 15016 ./usr/lib/xtables/libxt_connlimit.so
7870-rwxr-xr-x root root 14632 ./usr/lib/xtables/libxt_connmark.so
7871-rwxr-xr-x root root 18944 ./usr/lib/xtables/libxt_CONNMARK.so
7872-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_CONNSECMARK.so
7873-rwxr-xr-x root root 32744 ./usr/lib/xtables/libxt_conntrack.so
7874-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_cpu.so
7875-rwxr-xr-x root root 19736 ./usr/lib/xtables/libxt_CT.so
7876-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_dccp.so
7877-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_devgroup.so
7878-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_dscp.so
7879-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_DSCP.so
7880-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_ecn.so
7881-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_esp.so
7882-rwxr-xr-x root root 36136 ./usr/lib/xtables/libxt_hashlimit.so
7883-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_helper.so
7884-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_HMARK.so
7885-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_IDLETIMER.so
7886-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_ipcomp.so
7887-rwxr-xr-x root root 14824 ./usr/lib/xtables/libxt_iprange.so
7888-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_ipvs.so
7889-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_LED.so
7890-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_length.so
7891-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_limit.so
7892-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_mac.so
7893-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_mark.so
7894-rwxr-xr-x root root 15168 ./usr/lib/xtables/libxt_MARK.so
7895-rwxr-xr-x root root 19112 ./usr/lib/xtables/libxt_multiport.so
7896-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_nfacct.so
7897-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_NFLOG.so
7898-rwxr-xr-x root root 15048 ./usr/lib/xtables/libxt_NFQUEUE.so
7899lrwxrwxrwx root root 11 ./usr/lib/xtables/libxt_NOTRACK.so -> libxt_CT.so
7900-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_osf.so
7901-rwxr-xr-x root root 23008 ./usr/lib/xtables/libxt_owner.so
7902-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_physdev.so
7903-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_pkttype.so
7904-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_policy.so
7905-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_quota.so
7906-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_rateest.so
7907-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_RATEEST.so
7908-rwxr-xr-x root root 18912 ./usr/lib/xtables/libxt_recent.so
7909-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_rpfilter.so
7910-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_sctp.so
7911-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_SECMARK.so
7912-rwxr-xr-x root root 23392 ./usr/lib/xtables/libxt_set.so
7913-rwxr-xr-x root root 23232 ./usr/lib/xtables/libxt_SET.so
7914-rwxr-xr-x root root 15008 ./usr/lib/xtables/libxt_socket.so
7915-rwxr-xr-x root root 14368 ./usr/lib/xtables/libxt_standard.so
7916lrwxrwxrwx root root 18 ./usr/lib/xtables/libxt_state.so -> libxt_conntrack.so
7917-rwxr-xr-x root root 14440 ./usr/lib/xtables/libxt_statistic.so
7918-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_string.so
7919-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_SYNPROXY.so
7920-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_tcpmss.so
7921-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TCPMSS.so
7922-rwxr-xr-x root root 14448 ./usr/lib/xtables/libxt_TCPOPTSTRIP.so
7923-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_tcp.so
7924-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TEE.so
7925-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_time.so
7926-rwxr-xr-x root root 14624 ./usr/lib/xtables/libxt_tos.so
7927-rwxr-xr-x root root 14640 ./usr/lib/xtables/libxt_TOS.so
7928-rwxr-xr-x root root 14840 ./usr/lib/xtables/libxt_TPROXY.so
7929-rwxr-xr-x root root 14208 ./usr/lib/xtables/libxt_TRACE.so
7930-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_u32.so
7931-rwxr-xr-x root root 14432 ./usr/lib/xtables/libxt_udp.so
7932drwxr-xr-x root root 4096 ./usr/sbin
7933lrwxrwxrwx root root 19 ./usr/sbin/addgroup -> /bin/busybox.nosuid
7934-rwxr-xr-x root root 26664 ./usr/sbin/addpart
7935lrwxrwxrwx root root 19 ./usr/sbin/adduser -> /bin/busybox.nosuid
7936-rwxr-xr-x root root 30760 ./usr/sbin/blkdiscard
7937-rwxr-xr-x root root 71720 ./usr/sbin/blkzone
7938-rwxr-xr-x root root 47136 ./usr/sbin/chcpu
7939-rwxr-xr-x root root 59152 ./usr/sbin/chgpasswd
7940-rwxr-xr-x root root 55056 ./usr/sbin/chpasswd.shadow
7941lrwxrwxrwx root root 25 ./usr/sbin/chpasswd -> /usr/sbin/chpasswd.shadow
7942-rwxr-xr-x root root 55464 ./usr/sbin/chroot.coreutils
7943lrwxrwxrwx root root 26 ./usr/sbin/chroot -> /usr/sbin/chroot.coreutils
7944lrwxrwxrwx root root 19 ./usr/sbin/delgroup -> /bin/busybox.nosuid
7945-rwxr-xr-x root root 26664 ./usr/sbin/delpart
7946lrwxrwxrwx root root 19 ./usr/sbin/deluser -> /bin/busybox.nosuid
7947lrwxrwxrwx root root 19 ./usr/sbin/fbset -> /bin/busybox.nosuid
7948-rwxr-xr-x root root 34856 ./usr/sbin/fdformat
7949-rwxr-xr-x root root 14368 ./usr/sbin/findfs
7950-rwxr-xr-x root root 38984 ./usr/sbin/fsck.cramfs
7951lrwxrwxrwx root root 29 ./usr/sbin/fsfreeze -> /usr/sbin/fsfreeze.util-linux
7952-rwxr-xr-x root root 14384 ./usr/sbin/fsfreeze.util-linux
7953-rwxr-xr-x root root 84336 ./usr/sbin/groupadd
7954-rwxr-xr-x root root 75952 ./usr/sbin/groupdel
7955-rwxr-xr-x root root 59160 ./usr/sbin/groupmems
7956-rwxr-xr-x root root 84272 ./usr/sbin/groupmod
7957-rwxr-xr-x root root 59120 ./usr/sbin/grpck
7958-rwxr-xr-x root root 54896 ./usr/sbin/grpconv
7959-rwxr-xr-x root root 54904 ./usr/sbin/grpunconv
7960-rwxr-xr-x root root 30936 ./usr/sbin/iconvconfig
7961lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy-restore -> xtables-legacy-multi
7962lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy-save -> xtables-legacy-multi
7963lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-legacy -> xtables-legacy-multi
7964lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-restore -> xtables-legacy-multi
7965lrwxrwxrwx root root 20 ./usr/sbin/ip6tables-save -> xtables-legacy-multi
7966lrwxrwxrwx root root 20 ./usr/sbin/ip6tables -> xtables-legacy-multi
7967lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy-restore -> xtables-legacy-multi
7968lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy-save -> xtables-legacy-multi
7969lrwxrwxrwx root root 20 ./usr/sbin/iptables-legacy -> xtables-legacy-multi
7970lrwxrwxrwx root root 20 ./usr/sbin/iptables-restore -> xtables-legacy-multi
7971lrwxrwxrwx root root 20 ./usr/sbin/iptables-save -> xtables-legacy-multi
7972lrwxrwxrwx root root 20 ./usr/sbin/iptables -> xtables-legacy-multi
7973-rwxr-xr-x root root 34856 ./usr/sbin/ldattach
7974lrwxrwxrwx root root 19 ./usr/sbin/loadfont -> /bin/busybox.nosuid
7975-rwxr-xr-x root root 14288 ./usr/sbin/logoutd
7976-rwxr-xr-x root root 14368 ./usr/sbin/mkfs
7977-rwxr-xr-x root root 38880 ./usr/sbin/mkfs.cramfs
7978-rwxr-xr-x root root 96560 ./usr/sbin/newusers
7979-rwxr-xr-x root root 116776 ./usr/sbin/partx
7980-rwxr-xr-x root root 55016 ./usr/sbin/pwck
7981-rwxr-xr-x root root 50792 ./usr/sbin/pwconv
7982-rwxr-xr-x root root 50808 ./usr/sbin/pwunconv
7983-rwxr-xr-x root root 14368 ./usr/sbin/raw
7984lrwxrwxrwx root root 19 ./usr/sbin/rdate -> /bin/busybox.nosuid
7985lrwxrwxrwx root root 32 ./usr/sbin/readprofile -> /usr/sbin/readprofile.util-linux
7986-rwxr-xr-x root root 22616 ./usr/sbin/readprofile.util-linux
7987-rwxr-xr-x root root 63528 ./usr/sbin/resizepart
7988lrwxrwxrwx root root 27 ./usr/sbin/rfkill -> /usr/sbin/rfkill.util-linux
7989-rwxr-xr-x root root 47152 ./usr/sbin/rfkill.util-linux
7990lrwxrwxrwx root root 28 ./usr/sbin/rtcwake -> /usr/sbin/rtcwake.util-linux
7991-rwxr-xr-x root root 47152 ./usr/sbin/rtcwake.util-linux
7992-rwxr-xr-x root root 1986 ./usr/sbin/run-postinsts
7993-rwxr-xr-x root root 141352 ./usr/sbin/sfdisk
7994-rwxr-xr-x root root 18472 ./usr/sbin/swaplabel
7995lrwxrwxrwx root root 19 ./usr/sbin/udhcpd -> /bin/busybox.nosuid
7996-rwxr-xr-x root root 5990 ./usr/sbin/update-ca-certificates
7997-rwxr-xr-x root root 6365 ./usr/sbin/update-rc.d
7998-rwxr-xr-x root root 130136 ./usr/sbin/useradd
7999-rwxr-xr-x root root 88328 ./usr/sbin/userdel
8000-rwxr-xr-x root root 125880 ./usr/sbin/usermod
8001-rwxr-xr-x root root 39032 ./usr/sbin/uuidd
8002-rwxr-xr-x root root 47144 ./usr/sbin/wipefs
8003-rwxr-xr-x root root 98960 ./usr/sbin/xtables-legacy-multi
8004-rwxr-xr-x root root 112792 ./usr/sbin/zramctl
8005drwxr-xr-x root root 4096 ./usr/share
8006drwxr-xr-x root root 4096 ./usr/share/aclocal
8007-rw-r--r-- root root 2221 ./usr/share/aclocal/bison-i18n.m4
8008-rw-r--r-- root root 1184 ./usr/share/aclocal/cap-ng.m4
8009-rw-r--r-- root root 6337 ./usr/share/aclocal/freetype2.m4
8010-rw-r--r-- root root 8316 ./usr/share/aclocal/glib-2.0.m4
8011-rw-r--r-- root root 15838 ./usr/share/aclocal/glib-gettext.m4
8012-rw-r--r-- root root 3589 ./usr/share/aclocal/gsettings.m4
8013-rw-r--r-- root root 5132 ./usr/share/aclocal/introspection.m4
8014-rw-r--r-- root root 357 ./usr/share/aclocal/libxml.m4
8015-rw-r--r-- root root 428 ./usr/share/aclocal/wayland-scanner.m4
8016-rw-r--r-- root root 71315 ./usr/share/aclocal/xorg-macros.m4
8017-rw-r--r-- root root 6537 ./usr/share/aclocal/xtrans.m4
8018drwxr-xr-x root root 4096 ./usr/share/awk
8019-rw-r--r-- root root 383 ./usr/share/awk/assert.awk
8020-rw-r--r-- root root 334 ./usr/share/awk/bits2str.awk
8021-rw-r--r-- root root 307 ./usr/share/awk/cliff_rand.awk
8022-rw-r--r-- root root 234 ./usr/share/awk/ctime.awk
8023-rw-r--r-- root root 315 ./usr/share/awk/ftrans.awk
8024-rw-r--r-- root root 3278 ./usr/share/awk/getopt.awk
8025-rw-r--r-- root root 2491 ./usr/share/awk/gettime.awk
8026-rw-r--r-- root root 1765 ./usr/share/awk/group.awk
8027-rw-r--r-- root root 221 ./usr/share/awk/have_mpfr.awk
8028-rw-r--r-- root root 2340 ./usr/share/awk/inplace.awk
8029-rw-r--r-- root root 462 ./usr/share/awk/intdiv0.awk
8030-rw-r--r-- root root 378 ./usr/share/awk/join.awk
8031-rw-r--r-- root root 238 ./usr/share/awk/libintl.awk
8032-rw-r--r-- root root 422 ./usr/share/awk/noassign.awk
8033-rw-r--r-- root root 1282 ./usr/share/awk/ns_passwd.awk
8034-rw-r--r-- root root 937 ./usr/share/awk/ord.awk
8035-rw-r--r-- root root 1199 ./usr/share/awk/passwd.awk
8036-rw-r--r-- root root 355 ./usr/share/awk/processarray.awk
8037-rw-r--r-- root root 1031 ./usr/share/awk/quicksort.awk
8038-rw-r--r-- root root 489 ./usr/share/awk/readable.awk
8039-rw-r--r-- root root 267 ./usr/share/awk/readfile.awk
8040-rw-r--r-- root root 404 ./usr/share/awk/rewind.awk
8041-rw-r--r-- root root 661 ./usr/share/awk/round.awk
8042-rw-r--r-- root root 472 ./usr/share/awk/shellquote.awk
8043-rw-r--r-- root root 1454 ./usr/share/awk/strtonum.awk
8044-rw-r--r-- root root 214 ./usr/share/awk/walkarray.awk
8045-rw-r--r-- root root 424 ./usr/share/awk/zerofile.awk
8046drwxr-xr-x root root 4096 ./usr/share/bash-completion
8047-rw-r--r-- root root 74302 ./usr/share/bash-completion/bash_completion
8048drwxr-xr-x root root 4096 ./usr/share/bison
8049-rw-r--r-- root root 1206 ./usr/share/bison/bison-default.css
8050drwxr-xr-x root root 4096 ./usr/share/bison/m4sugar
8051-rw-r--r-- root root 14755 ./usr/share/bison/m4sugar/foreach.m4
8052-rw-r--r-- root root 122297 ./usr/share/bison/m4sugar/m4sugar.m4
8053-rw-r--r-- root root 7134 ./usr/share/bison/README.md
8054drwxr-xr-x root root 4096 ./usr/share/bison/skeletons
8055-rw-r--r-- root root 41025 ./usr/share/bison/skeletons/bison.m4
8056-rw-r--r-- root root 2571 ./usr/share/bison/skeletons/c-like.m4
8057-rw-r--r-- root root 32297 ./usr/share/bison/skeletons/c.m4
8058-rw-r--r-- root root 21273 ./usr/share/bison/skeletons/c++.m4
8059-rw-r--r-- root root 1163 ./usr/share/bison/skeletons/c-skel.m4
8060-rw-r--r-- root root 1169 ./usr/share/bison/skeletons/c++-skel.m4
8061-rw-r--r-- root root 10492 ./usr/share/bison/skeletons/d.m4
8062-rw-r--r-- root root 1135 ./usr/share/bison/skeletons/d-skel.m4
8063-rw-r--r-- root root 91038 ./usr/share/bison/skeletons/glr.c
8064-rw-r--r-- root root 12766 ./usr/share/bison/skeletons/glr.cc
8065-rw-r--r-- root root 14410 ./usr/share/bison/skeletons/java.m4
8066-rw-r--r-- root root 1166 ./usr/share/bison/skeletons/java-skel.m4
8067-rw-r--r-- root root 51533 ./usr/share/bison/skeletons/lalr1.cc
8068-rw-r--r-- root root 30671 ./usr/share/bison/skeletons/lalr1.d
8069-rw-r--r-- root root 37180 ./usr/share/bison/skeletons/lalr1.java
8070-rw-r--r-- root root 10331 ./usr/share/bison/skeletons/location.cc
8071-rw-r--r-- root root 1896 ./usr/share/bison/skeletons/README-D.txt
8072-rw-r--r-- root root 3975 ./usr/share/bison/skeletons/stack.hh
8073-rw-r--r-- root root 13220 ./usr/share/bison/skeletons/variant.hh
8074-rw-r--r-- root root 70766 ./usr/share/bison/skeletons/yacc.c
8075drwxr-xr-x root root 4096 ./usr/share/bison/xslt
8076-rw-r--r-- root root 3364 ./usr/share/bison/xslt/bison.xsl
8077-rw-r--r-- root root 12820 ./usr/share/bison/xslt/xml2dot.xsl
8078-rw-r--r-- root root 18554 ./usr/share/bison/xslt/xml2text.xsl
8079-rw-r--r-- root root 22678 ./usr/share/bison/xslt/xml2xhtml.xsl
8080drwxr-xr-x root root 4096 ./usr/share/ca-certificates
8081drwxr-xr-x root root 12288 ./usr/share/ca-certificates/mozilla
8082-rw-r--r-- root root 2772 ./usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt
8083-rw-r--r-- root root 1972 ./usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt
8084-rw-r--r-- root root 2049 ./usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt
8085-rw-r--r-- root root 1521 ./usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt
8086-rw-r--r-- root root 1204 ./usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt
8087-rw-r--r-- root root 1204 ./usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt
8088-rw-r--r-- root root 1891 ./usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt
8089-rw-r--r-- root root 753 ./usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt
8090-rw-r--r-- root root 1188 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt
8091-rw-r--r-- root root 1883 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt
8092-rw-r--r-- root root 656 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt
8093-rw-r--r-- root root 737 ./usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt
8094-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt
8095-rw-r--r-- root root 2167 ./usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt
8096-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt
8097-rw-r--r-- root root 1915 ./usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt
8098-rw-r--r-- root root 1915 ./usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt
8099-rw-r--r-- root root 1935 ./usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt
8100-rw-r--r-- root root 1330 ./usr/share/ca-certificates/mozilla/Certigna.crt
8101-rw-r--r-- root root 1992 ./usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt
8102-rw-r--r-- root root 1298 ./usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt
8103-rw-r--r-- root root 1176 ./usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt
8104-rw-r--r-- root root 2078 ./usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt
8105-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt
8106-rw-r--r-- root root 1984 ./usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt
8107-rw-r--r-- root root 2594 ./usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt
8108-rw-r--r-- root root 1517 ./usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt
8109-rw-r--r-- root root 1489 ./usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt
8110-rw-r--r-- root root 940 ./usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt
8111-rw-r--r-- root root 2086 ./usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt
8112-rw-r--r-- root root 1318 ./usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt
8113-rw-r--r-- root root 1318 ./usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt
8114-rw-r--r-- root root 1350 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt
8115-rw-r--r-- root root 1306 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt
8116-rw-r--r-- root root 851 ./usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt
8117-rw-r--r-- root root 1338 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt
8118-rw-r--r-- root root 1294 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt
8119-rw-r--r-- root root 839 ./usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt
8120-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt
8121-rw-r--r-- root root 1988 ./usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt
8122-rw-r--r-- root root 1200 ./usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
8123-rw-r--r-- root root 1517 ./usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt
8124-rw-r--r-- root root 1537 ./usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt
8125-rw-r--r-- root root 1911 ./usr/share/ca-certificates/mozilla/EC-ACC.crt
8126-rw-r--r-- root root 1452 ./usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt
8127-rw-r--r-- root root 1505 ./usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt
8128-rw-r--r-- root root 1643 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt
8129-rw-r--r-- root root 1090 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt
8130-rw-r--r-- root root 1533 ./usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt
8131-rw-r--r-- root root 2033 ./usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt
8132-rw-r--r-- root root 2244 ./usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt
8133-rw-r--r-- root root 1980 ./usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt
8134-rw-r--r-- root root 1216 ./usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt
8135-rw-r--r-- root root 1269 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt
8136-rw-r--r-- root root 989 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt
8137-rw-r--r-- root root 1444 ./usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt
8138-rw-r--r-- root root 1939 ./usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt
8139-rw-r--r-- root root 1935 ./usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt
8140-rw-r--r-- root root 2585 ./usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt
8141-rw-r--r-- root root 713 ./usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt
8142-rw-r--r-- root root 794 ./usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt
8143-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt
8144-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt
8145-rw-r--r-- root root 1229 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt
8146-rw-r--r-- root root 1972 ./usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt
8147-rw-r--r-- root root 1448 ./usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt
8148-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt
8149-rw-r--r-- root root 1017 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt
8150-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt
8151-rw-r--r-- root root 2155 ./usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt
8152-rw-r--r-- root root 1168 ./usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt
8153-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt
8154-rw-r--r-- root root 1931 ./usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt
8155-rw-r--r-- root root 1939 ./usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
8156-rw-r--r-- root root 2122 ./usr/share/ca-certificates/mozilla/Izenpe.com.crt
8157-rw-r--r-- root root 2057 ./usr/share/ca-certificates/mozilla/LuxTrust_Global_Root_2.crt
8158-rw-r--r-- root root 1460 ./usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt
8159-rw-r--r-- root root 1476 ./usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt
8160-rw-r--r-- root root 1411 ./usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt
8161-rw-r--r-- root root 1428 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GA_CA.crt
8162-rw-r--r-- root root 1346 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt
8163-rw-r--r-- root root 895 ./usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt
8164-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt
8165-rw-r--r-- root root 2041 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt
8166-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt
8167-rw-r--r-- root root 2354 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt
8168-rw-r--r-- root root 1923 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt
8169-rw-r--r-- root root 2078 ./usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt
8170-rw-r--r-- root root 1354 ./usr/share/ca-certificates/mozilla/Secure_Global_CA.crt
8171-rw-r--r-- root root 1249 ./usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt
8172-rw-r--r-- root root 1350 ./usr/share/ca-certificates/mozilla/SecureTrust_CA.crt
8173-rw-r--r-- root root 1261 ./usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt
8174-rw-r--r-- root root 1224 ./usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt
8175-rw-r--r-- root root 1143 ./usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt
8176-rw-r--r-- root root 956 ./usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt
8177-rw-r--r-- root root 2114 ./usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt
8178-rw-r--r-- root root 944 ./usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt
8179-rw-r--r-- root root 2094 ./usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt
8180-rw-r--r-- root root 1948 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt
8181-rw-r--r-- root root 2069 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G2.crt
8182-rw-r--r-- root root 1952 ./usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt
8183-rw-r--r-- root root 1468 ./usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt
8184-rw-r--r-- root root 1399 ./usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt
8185-rw-r--r-- root root 1424 ./usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt
8186-rw-r--r-- root root 2045 ./usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt
8187-rw-r--r-- root root 2049 ./usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt
8188-rw-r--r-- root root 1257 ./usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt
8189-rw-r--r-- root root 1948 ./usr/share/ca-certificates/mozilla/Taiwan_GRCA.crt
8190-rw-r--r-- root root 1870 ./usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt
8191-rw-r--r-- root root 1493 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA.crt
8192-rw-r--r-- root root 940 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G2.crt
8193-rw-r--r-- root root 1505 ./usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G3.crt
8194-rw-r--r-- root root 1493 ./usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt
8195-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt
8196-rw-r--r-- root root 2204 ./usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt
8197-rw-r--r-- root root 1241 ./usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt
8198-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt
8199-rw-r--r-- root root 1367 ./usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt
8200-rw-r--r-- root root 1582 ./usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt
8201-rw-r--r-- root root 1883 ./usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt
8202-rw-r--r-- root root 1269 ./usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt
8203-rw-r--r-- root root 948 ./usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt
8204-rw-r--r-- root root 2094 ./usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt
8205-rw-r--r-- root root 1484 ./usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.crt
8206-rw-r--r-- root root 1281 ./usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.crt
8207-rw-r--r-- root root 1732 ./usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.crt
8208-rw-r--r-- root root 1700 ./usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt
8209-rw-r--r-- root root 1513 ./usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt
8210drwxr-xr-x root root 4096 ./usr/share/cmake
8211drwxr-xr-x root root 4096 ./usr/share/cmake/bash-completion
8212-rw-r--r-- root root 393 ./usr/share/cmake/bash-completion/bash-completion-config.cmake
8213-rw-r--r-- root root 252 ./usr/share/cmake/bash-completion/bash-completion-config-version.cmake
8214drwxr-xr-x root root 4096 ./usr/share/dbus-1
8215drwxr-xr-x root root 4096 ./usr/share/dbus-1/services
8216-rw-r--r-- root root 3561 ./usr/share/dbus-1/session.conf
8217drwxr-xr-x root root 4096 ./usr/share/dbus-1/session.d
8218-rw-r--r-- root root 5692 ./usr/share/dbus-1/system.conf
8219drwxr-xr-x root root 4096 ./usr/share/dbus-1/system.d
8220drwxr-xr-x root root 4096 ./usr/share/dbus-1/system-services
8221drwxr-xr-x root root 4096 ./usr/share/dict
8222drwxr-xr-x root root 4096 ./usr/share/drirc.d
8223-rw-r--r-- root root 27422 ./usr/share/drirc.d/00-mesa-defaults.conf
8224drwxr-xr-x root root 4096 ./usr/share/et
8225-rw-r--r-- root root 6485 ./usr/share/et/et_c.awk
8226-rw-r--r-- root root 4539 ./usr/share/et/et_h.awk
8227drwxr-xr-x root root 4096 ./usr/share/fontconfig
8228drwxr-xr-x root root 4096 ./usr/share/fontconfig/conf.avail
8229-rw-r--r-- root root 706 ./usr/share/fontconfig/conf.avail/10-autohint.conf
8230-rw-r--r-- root root 692 ./usr/share/fontconfig/conf.avail/10-hinting-full.conf
8231-rw-r--r-- root root 696 ./usr/share/fontconfig/conf.avail/10-hinting-medium.conf
8232-rw-r--r-- root root 692 ./usr/share/fontconfig/conf.avail/10-hinting-none.conf
8233-rw-r--r-- root root 696 ./usr/share/fontconfig/conf.avail/10-hinting-slight.conf
8234-rw-r--r-- root root 723 ./usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf
8235-rw-r--r-- root root 2228 ./usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
8236-rw-r--r-- root root 748 ./usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf
8237-rw-r--r-- root root 748 ./usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf
8238-rw-r--r-- root root 758 ./usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf
8239-rw-r--r-- root root 758 ./usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf
8240-rw-r--r-- root root 701 ./usr/share/fontconfig/conf.avail/10-unhinted.conf
8241-rw-r--r-- root root 771 ./usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf
8242-rw-r--r-- root root 768 ./usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf
8243-rw-r--r-- root root 765 ./usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf
8244-rw-r--r-- root root 1537 ./usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf
8245-rw-r--r-- root root 3489 ./usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf
8246-rw-r--r-- root root 13274 ./usr/share/fontconfig/conf.avail/30-metric-aliases.conf
8247-rw-r--r-- root root 5424 ./usr/share/fontconfig/conf.avail/40-nonlatin.conf
8248-rw-r--r-- root root 3543 ./usr/share/fontconfig/conf.avail/45-generic.conf
8249-rw-r--r-- root root 6600 ./usr/share/fontconfig/conf.avail/45-latin.conf
8250-rw-r--r-- root root 799 ./usr/share/fontconfig/conf.avail/49-sansserif.conf
8251-rw-r--r-- root root 911 ./usr/share/fontconfig/conf.avail/50-user.conf
8252-rw-r--r-- root root 423 ./usr/share/fontconfig/conf.avail/51-local.conf
8253-rw-r--r-- root root 2041 ./usr/share/fontconfig/conf.avail/60-generic.conf
8254-rw-r--r-- root root 2068 ./usr/share/fontconfig/conf.avail/60-latin.conf
8255-rw-r--r-- root root 10293 ./usr/share/fontconfig/conf.avail/65-fonts-persian.conf
8256-rw-r--r-- root root 464 ./usr/share/fontconfig/conf.avail/65-khmer.conf
8257-rw-r--r-- root root 8170 ./usr/share/fontconfig/conf.avail/65-nonlatin.conf
8258-rw-r--r-- root root 847 ./usr/share/fontconfig/conf.avail/69-unifont.conf
8259-rw-r--r-- root root 487 ./usr/share/fontconfig/conf.avail/70-no-bitmaps.conf
8260-rw-r--r-- root root 487 ./usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf
8261-rw-r--r-- root root 597 ./usr/share/fontconfig/conf.avail/80-delicious.conf
8262-rw-r--r-- root root 1917 ./usr/share/fontconfig/conf.avail/90-synthetic.conf
8263drwxr-xr-x root root 4096 ./usr/share/gettext
8264drwxr-xr-x root root 4096 ./usr/share/gettext/its
8265-rw-r--r-- root root 189 ./usr/share/gettext/its/fontconfig.its
8266-rw-r--r-- root root 189 ./usr/share/gettext/its/fontconfig.loc
8267-rw-r--r-- root root 1048 ./usr/share/gettext/its/gschema.its
8268-rw-r--r-- root root 333 ./usr/share/gettext/its/gschema.loc
8269drwxr-xr-x root root 4096 ./usr/share/gir-1.0
8270-rw-r--r-- root root 23723 ./usr/share/gir-1.0/cairo-1.0.gir
8271-rw-r--r-- root root 1185 ./usr/share/gir-1.0/DBus-1.0.gir
8272-rw-r--r-- root root 797 ./usr/share/gir-1.0/DBusGLib-1.0.gir
8273-rw-r--r-- root root 620 ./usr/share/gir-1.0/fontconfig-2.0.gir
8274-rw-r--r-- root root 768 ./usr/share/gir-1.0/freetype2-2.0.gir
8275-rw-r--r-- root root 6332887 ./usr/share/gir-1.0/Gio-2.0.gir
8276-rw-r--r-- root root 29235 ./usr/share/gir-1.0/gir-1.2.rnc
8277-rw-r--r-- root root 324506 ./usr/share/gir-1.0/GIRepository-2.0.gir
8278-rw-r--r-- root root 1122 ./usr/share/gir-1.0/GL-1.0.gir
8279-rw-r--r-- root root 3544680 ./usr/share/gir-1.0/GLib-2.0.gir
8280-rw-r--r-- root root 19691 ./usr/share/gir-1.0/GModule-2.0.gir
8281-rw-r--r-- root root 1247584 ./usr/share/gir-1.0/GObject-2.0.gir
8282-rw-r--r-- root root 938 ./usr/share/gir-1.0/libxml2-2.0.gir
8283-rw-r--r-- root root 65349 ./usr/share/gir-1.0/Vulkan-1.0.gir
8284-rw-r--r-- root root 611 ./usr/share/gir-1.0/win32-1.0.gir
8285-rw-r--r-- root root 361 ./usr/share/gir-1.0/xfixes-4.0.gir
8286-rw-r--r-- root root 745 ./usr/share/gir-1.0/xft-2.0.gir
8287-rw-r--r-- root root 2325 ./usr/share/gir-1.0/xlib-2.0.gir
8288-rw-r--r-- root root 808 ./usr/share/gir-1.0/xrandr-1.3.gir
8289drwxr-xr-x root root 4096 ./usr/share/glib-2.0
8290drwxr-xr-x root root 4096 ./usr/share/glib-2.0/gettext
8291drwxr-xr-x root root 4096 ./usr/share/glib-2.0/gettext/po
8292-rw-r--r-- root root 8076 ./usr/share/glib-2.0/gettext/po/Makefile.in.in
8293drwxr-xr-x root root 4096 ./usr/share/glib-2.0/schemas
8294-rw-r--r-- root root 2916 ./usr/share/glib-2.0/schemas/gschema.dtd
8295drwxr-xr-x root root 4096 ./usr/share/glib-2.0/valgrind
8296-rw-r--r-- root root 15263 ./usr/share/glib-2.0/valgrind/glib.supp
8297drwxr-xr-x root root 4096 ./usr/share/gobject-introspection-1.0
8298-rw-r--r-- root root 15228 ./usr/share/gobject-introspection-1.0/gdump.c
8299-rw-r--r-- root root 7177 ./usr/share/gobject-introspection-1.0/Makefile.introspection
8300drwxr-xr-x root root 4096 ./usr/share/info
8301drwxr-xr-x root root 4096 ./usr/share/libdrm
8302-rw-r--r-- root root 7547 ./usr/share/libdrm/amdgpu.ids
8303drwxr-xr-x root root 4096 ./usr/share/man
8304drwxr-xr-x root root 4096 ./usr/share/mime
8305-rw-r--r-- root root 10777 ./usr/share/mime/aliases
8306drwxr-xr-x root root 20480 ./usr/share/mime/application
8307-rw-r--r-- root root 2700 ./usr/share/mime/application/andrew-inset.xml
8308-rw-r--r-- root root 3200 ./usr/share/mime/application/annodex.xml
8309-rw-r--r-- root root 3123 ./usr/share/mime/application/atom+xml.xml
8310-rw-r--r-- root root 3009 ./usr/share/mime/application/dicom.xml
8311-rw-r--r-- root root 3299 ./usr/share/mime/application/ecmascript.xml
8312-rw-r--r-- root root 3513 ./usr/share/mime/application/epub+zip.xml
8313-rw-r--r-- root root 2263 ./usr/share/mime/application/geo+json.xml
8314-rw-r--r-- root root 2304 ./usr/share/mime/application/gml+xml.xml
8315-rw-r--r-- root root 3264 ./usr/share/mime/application/gnunet-directory.xml
8316-rw-r--r-- root root 2354 ./usr/share/mime/application/gpx+xml.xml
8317-rw-r--r-- root root 2813 ./usr/share/mime/application/gzip.xml
8318-rw-r--r-- root root 3757 ./usr/share/mime/application/illustrator.xml
8319-rw-r--r-- root root 3404 ./usr/share/mime/application/javascript.xml
8320-rw-r--r-- root root 2140 ./usr/share/mime/application/jrd+json.xml
8321-rw-r--r-- root root 1993 ./usr/share/mime/application/json-patch+json.xml
8322-rw-r--r-- root root 2281 ./usr/share/mime/application/json.xml
8323-rw-r--r-- root root 2255 ./usr/share/mime/application/ld+json.xml
8324-rw-r--r-- root root 4240 ./usr/share/mime/application/mac-binhex40.xml
8325-rw-r--r-- root root 1136 ./usr/share/mime/application/mathematica.xml
8326-rw-r--r-- root root 3328 ./usr/share/mime/application/mathml+xml.xml
8327-rw-r--r-- root root 3112 ./usr/share/mime/application/mbox.xml
8328-rw-r--r-- root root 2759 ./usr/share/mime/application/metalink4+xml.xml
8329-rw-r--r-- root root 2761 ./usr/share/mime/application/metalink+xml.xml
8330-rw-r--r-- root root 2925 ./usr/share/mime/application/msword-template.xml
8331-rw-r--r-- root root 3057 ./usr/share/mime/application/msword.xml
8332-rw-r--r-- root root 2615 ./usr/share/mime/application/mxf.xml
8333-rw-r--r-- root root 2687 ./usr/share/mime/application/octet-stream.xml
8334-rw-r--r-- root root 3111 ./usr/share/mime/application/oda.xml
8335-rw-r--r-- root root 3393 ./usr/share/mime/application/ogg.xml
8336-rw-r--r-- root root 2057 ./usr/share/mime/application/owl+xml.xml
8337-rw-r--r-- root root 3059 ./usr/share/mime/application/oxps.xml
8338-rw-r--r-- root root 3131 ./usr/share/mime/application/pdf.xml
8339-rw-r--r-- root root 4545 ./usr/share/mime/application/pgp-encrypted.xml
8340-rw-r--r-- root root 3138 ./usr/share/mime/application/pgp-keys.xml
8341-rw-r--r-- root root 3716 ./usr/share/mime/application/pgp-signature.xml
8342-rw-r--r-- root root 3686 ./usr/share/mime/application/pkcs10.xml
8343-rw-r--r-- root root 3703 ./usr/share/mime/application/pkcs12.xml
8344-rw-r--r-- root root 1090 ./usr/share/mime/application/pkcs7-mime.xml
8345-rw-r--r-- root root 3684 ./usr/share/mime/application/pkcs7-signature.xml
8346-rw-r--r-- root root 2231 ./usr/share/mime/application/pkcs8-encrypted.xml
8347-rw-r--r-- root root 2936 ./usr/share/mime/application/pkcs8.xml
8348-rw-r--r-- root root 2674 ./usr/share/mime/application/pkix-cert.xml
8349-rw-r--r-- root root 1120 ./usr/share/mime/application/pkix-crl.xml
8350-rw-r--r-- root root 3306 ./usr/share/mime/application/pkix-pkipath.xml
8351-rw-r--r-- root root 1110 ./usr/share/mime/application/postscript.xml
8352-rw-r--r-- root root 3011 ./usr/share/mime/application/prs.plucker.xml
8353-rw-r--r-- root root 1992 ./usr/share/mime/application/raml+yaml.xml
8354-rw-r--r-- root root 1115 ./usr/share/mime/application/ram.xml
8355-rw-r--r-- root root 2800 ./usr/share/mime/application/rdf+xml.xml
8356-rw-r--r-- root root 2940 ./usr/share/mime/application/relax-ng-compact-syntax.xml
8357-rw-r--r-- root root 2927 ./usr/share/mime/application/rss+xml.xml
8358-rw-r--r-- root root 2954 ./usr/share/mime/application/rtf.xml
8359-rw-r--r-- root root 3857 ./usr/share/mime/application/sdp.xml
8360-rw-r--r-- root root 3701 ./usr/share/mime/application/sieve.xml
8361-rw-r--r-- root root 3131 ./usr/share/mime/application/smil+xml.xml
8362-rw-r--r-- root root 2733 ./usr/share/mime/application/sql.xml
8363-rw-r--r-- root root 2434 ./usr/share/mime/application/trig.xml
8364-rw-r--r-- root root 3433 ./usr/share/mime/application/vnd.adobe.flash.movie.xml
8365-rw-r--r-- root root 432 ./usr/share/mime/application/vnd.amazon.mobi8-ebook.xml
8366-rw-r--r-- root root 2605 ./usr/share/mime/application/vnd.android.package-archive.xml
8367-rw-r--r-- root root 2358 ./usr/share/mime/application/vnd.appimage.xml
8368-rw-r--r-- root root 3597 ./usr/share/mime/application/vnd.apple.mpegurl.xml
8369-rw-r--r-- root root 3598 ./usr/share/mime/application/vnd.chess-pgn.xml
8370-rw-r--r-- root root 2381 ./usr/share/mime/application/vnd.coffeescript.xml
8371-rw-r--r-- root root 3230 ./usr/share/mime/application/vnd.comicbook-rar.xml
8372-rw-r--r-- root root 3226 ./usr/share/mime/application/vnd.comicbook+zip.xml
8373-rw-r--r-- root root 3655 ./usr/share/mime/application/vnd.corel-draw.xml
8374-rw-r--r-- root root 3205 ./usr/share/mime/application/vnd.debian.binary-package.xml
8375-rw-r--r-- root root 3403 ./usr/share/mime/application/vnd.emusic-emusic_package.xml
8376-rw-r--r-- root root 2211 ./usr/share/mime/application/vnd.flatpak.ref.xml
8377-rw-r--r-- root root 2273 ./usr/share/mime/application/vnd.flatpak.repo.xml
8378-rw-r--r-- root root 2279 ./usr/share/mime/application/vnd.flatpak.xml
8379-rw-r--r-- root root 3675 ./usr/share/mime/application/vnd.framemaker.xml
8380-rw-r--r-- root root 3051 ./usr/share/mime/application/vnd.google-earth.kml+xml.xml
8381-rw-r--r-- root root 3579 ./usr/share/mime/application/vnd.google-earth.kmz.xml
8382-rw-r--r-- root root 2820 ./usr/share/mime/application/vnd.hp-hpgl.xml
8383-rw-r--r-- root root 2769 ./usr/share/mime/application/vnd.hp-pcl.xml
8384-rw-r--r-- root root 2536 ./usr/share/mime/application/vnd.iccprofile.xml
8385-rw-r--r-- root root 3991 ./usr/share/mime/application/vnd.lotus-1-2-3.xml
8386-rw-r--r-- root root 1142 ./usr/share/mime/application/vnd.lotus-wordpro.xml
8387-rw-r--r-- root root 3540 ./usr/share/mime/application/vnd.mozilla.xul+xml.xml
8388-rw-r--r-- root root 3419 ./usr/share/mime/application/vnd.ms-access.xml
8389-rw-r--r-- root root 2921 ./usr/share/mime/application/vnd.ms-asf.xml
8390-rw-r--r-- root root 3299 ./usr/share/mime/application/vnd.ms-cab-compressed.xml
8391-rw-r--r-- root root 2619 ./usr/share/mime/application/vnd.ms-excel.addin.macroenabled.12.xml
8392-rw-r--r-- root root 3407 ./usr/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml
8393-rw-r--r-- root root 3330 ./usr/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml
8394-rw-r--r-- root root 2685 ./usr/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml
8395-rw-r--r-- root root 3525 ./usr/share/mime/application/vnd.ms-excel.xml
8396-rw-r--r-- root root 3011 ./usr/share/mime/application/vnd.ms-htmlhelp.xml
8397-rw-r--r-- root root 2734 ./usr/share/mime/application/vnd.ms-powerpoint.addin.macroenabled.12.xml
8398-rw-r--r-- root root 3491 ./usr/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml
8399-rw-r--r-- root root 2420 ./usr/share/mime/application/vnd.ms-powerpoint.slide.macroenabled.12.xml
8400-rw-r--r-- root root 3485 ./usr/share/mime/application/vnd.ms-powerpoint.slideshow.macroenabled.12.xml
8401-rw-r--r-- root root 2906 ./usr/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml
8402-rw-r--r-- root root 3569 ./usr/share/mime/application/vnd.ms-powerpoint.xml
8403-rw-r--r-- root root 2757 ./usr/share/mime/application/vnd.ms-publisher.xml
8404-rw-r--r-- root root 2977 ./usr/share/mime/application/vnd.ms-tnef.xml
8405-rw-r--r-- root root 1161 ./usr/share/mime/application/vnd.ms-visio.drawing.macroenabled.main+xml.xml
8406-rw-r--r-- root root 1148 ./usr/share/mime/application/vnd.ms-visio.drawing.main+xml.xml
8407-rw-r--r-- root root 1163 ./usr/share/mime/application/vnd.ms-visio.stencil.macroenabled.main+xml.xml
8408-rw-r--r-- root root 1150 ./usr/share/mime/application/vnd.ms-visio.stencil.main+xml.xml
8409-rw-r--r-- root root 1226 ./usr/share/mime/application/vnd.ms-visio.template.macroenabled.main+xml.xml
8410-rw-r--r-- root root 1213 ./usr/share/mime/application/vnd.ms-visio.template.main+xml.xml
8411-rw-r--r-- root root 3004 ./usr/share/mime/application/vnd.ms-word.document.macroenabled.12.xml
8412-rw-r--r-- root root 2541 ./usr/share/mime/application/vnd.ms-word.template.macroenabled.12.xml
8413-rw-r--r-- root root 3639 ./usr/share/mime/application/vnd.ms-works.xml
8414-rw-r--r-- root root 3039 ./usr/share/mime/application/vnd.ms-wpl.xml
8415-rw-r--r-- root root 2927 ./usr/share/mime/application/vnd.nintendo.snes.rom.xml
8416-rw-r--r-- root root 2760 ./usr/share/mime/application/vnd.oasis.opendocument.chart-template.xml
8417-rw-r--r-- root root 2879 ./usr/share/mime/application/vnd.oasis.opendocument.chart.xml
8418-rw-r--r-- root root 3262 ./usr/share/mime/application/vnd.oasis.opendocument.database.xml
8419-rw-r--r-- root root 2776 ./usr/share/mime/application/vnd.oasis.opendocument.formula-template.xml
8420-rw-r--r-- root root 2954 ./usr/share/mime/application/vnd.oasis.opendocument.formula.xml
8421-rw-r--r-- root root 3235 ./usr/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml
8422-rw-r--r-- root root 2958 ./usr/share/mime/application/vnd.oasis.opendocument.graphics-template.xml
8423-rw-r--r-- root root 2918 ./usr/share/mime/application/vnd.oasis.opendocument.graphics.xml
8424-rw-r--r-- root root 2956 ./usr/share/mime/application/vnd.oasis.opendocument.image.xml
8425-rw-r--r-- root root 3480 ./usr/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml
8426-rw-r--r-- root root 2974 ./usr/share/mime/application/vnd.oasis.opendocument.presentation-template.xml
8427-rw-r--r-- root root 3204 ./usr/share/mime/application/vnd.oasis.opendocument.presentation.xml
8428-rw-r--r-- root root 3506 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml
8429-rw-r--r-- root root 2970 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml
8430-rw-r--r-- root root 3226 ./usr/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml
8431-rw-r--r-- root root 3352 ./usr/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml
8432-rw-r--r-- root root 3033 ./usr/share/mime/application/vnd.oasis.opendocument.text-master.xml
8433-rw-r--r-- root root 2956 ./usr/share/mime/application/vnd.oasis.opendocument.text-template.xml
8434-rw-r--r-- root root 2925 ./usr/share/mime/application/vnd.oasis.opendocument.text-web.xml
8435-rw-r--r-- root root 3024 ./usr/share/mime/application/vnd.oasis.opendocument.text.xml
8436-rw-r--r-- root root 3524 ./usr/share/mime/application/vnd.openofficeorg.extension.xml
8437-rw-r--r-- root root 3394 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml
8438-rw-r--r-- root root 3257 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml
8439-rw-r--r-- root root 2932 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml
8440-rw-r--r-- root root 3563 ./usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml
8441-rw-r--r-- root root 3250 ./usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml
8442-rw-r--r-- root root 3378 ./usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml
8443-rw-r--r-- root root 2957 ./usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml
8444-rw-r--r-- root root 3210 ./usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml
8445-rw-r--r-- root root 3457 ./usr/share/mime/application/vnd.palm.xml
8446-rw-r--r-- root root 2983 ./usr/share/mime/application/vnd.rar.xml
8447-rw-r--r-- root root 3320 ./usr/share/mime/application/vnd.rn-realmedia.xml
8448-rw-r--r-- root root 1759 ./usr/share/mime/application/vnd.snap.xml
8449-rw-r--r-- root root 3196 ./usr/share/mime/application/vnd.sqlite3.xml
8450-rw-r--r-- root root 1139 ./usr/share/mime/application/vnd.squashfs.xml
8451-rw-r--r-- root root 3467 ./usr/share/mime/application/vnd.stardivision.calc.xml
8452-rw-r--r-- root root 3228 ./usr/share/mime/application/vnd.stardivision.chart.xml
8453-rw-r--r-- root root 3156 ./usr/share/mime/application/vnd.stardivision.draw.xml
8454-rw-r--r-- root root 3619 ./usr/share/mime/application/vnd.stardivision.impress.xml
8455-rw-r--r-- root root 3181 ./usr/share/mime/application/vnd.stardivision.mail.xml
8456-rw-r--r-- root root 3090 ./usr/share/mime/application/vnd.stardivision.math.xml
8457-rw-r--r-- root root 3489 ./usr/share/mime/application/vnd.stardivision.writer.xml
8458-rw-r--r-- root root 3534 ./usr/share/mime/application/vnd.sun.xml.calc.template.xml
8459-rw-r--r-- root root 3762 ./usr/share/mime/application/vnd.sun.xml.calc.xml
8460-rw-r--r-- root root 3513 ./usr/share/mime/application/vnd.sun.xml.draw.template.xml
8461-rw-r--r-- root root 3438 ./usr/share/mime/application/vnd.sun.xml.draw.xml
8462-rw-r--r-- root root 3704 ./usr/share/mime/application/vnd.sun.xml.impress.template.xml
8463-rw-r--r-- root root 4000 ./usr/share/mime/application/vnd.sun.xml.impress.xml
8464-rw-r--r-- root root 3488 ./usr/share/mime/application/vnd.sun.xml.math.xml
8465-rw-r--r-- root root 4341 ./usr/share/mime/application/vnd.sun.xml.writer.global.xml
8466-rw-r--r-- root root 3819 ./usr/share/mime/application/vnd.sun.xml.writer.template.xml
8467-rw-r--r-- root root 3800 ./usr/share/mime/application/vnd.sun.xml.writer.xml
8468-rw-r--r-- root root 2835 ./usr/share/mime/application/vnd.symbian.install.xml
8469-rw-r--r-- root root 1126 ./usr/share/mime/application/vnd.tcpdump.pcap.xml
8470-rw-r--r-- root root 3046 ./usr/share/mime/application/vnd.visio.xml
8471-rw-r--r-- root root 3633 ./usr/share/mime/application/vnd.wordperfect.xml
8472-rw-r--r-- root root 1189 ./usr/share/mime/application/vnd.youtube.yt.xml
8473-rw-r--r-- root root 2575 ./usr/share/mime/application/winhlp.xml
8474-rw-r--r-- root root 2942 ./usr/share/mime/application/x-7z-compressed.xml
8475-rw-r--r-- root root 3303 ./usr/share/mime/application/x-abiword.xml
8476-rw-r--r-- root root 2785 ./usr/share/mime/application/x-ace.xml
8477-rw-r--r-- root root 2890 ./usr/share/mime/application/x-alz.xml
8478-rw-r--r-- root root 2185 ./usr/share/mime/application/x-amiga-disk-format.xml
8479-rw-r--r-- root root 3479 ./usr/share/mime/application/x-amipro.xml
8480-rw-r--r-- root root 3122 ./usr/share/mime/application/x-aportisdoc.xml
8481-rw-r--r-- root root 2699 ./usr/share/mime/application/x-apple-diskimage.xml
8482-rw-r--r-- root root 346 ./usr/share/mime/application/x-appleworks-document.xml
8483-rw-r--r-- root root 3940 ./usr/share/mime/application/x-applix-spreadsheet.xml
8484-rw-r--r-- root root 3574 ./usr/share/mime/application/x-applix-word.xml
8485-rw-r--r-- root root 2804 ./usr/share/mime/application/x-archive.xml
8486-rw-r--r-- root root 2759 ./usr/share/mime/application/x-arc.xml
8487-rw-r--r-- root root 3010 ./usr/share/mime/application/x-arj.xml
8488-rw-r--r-- root root 2899 ./usr/share/mime/application/x-asp.xml
8489-rw-r--r-- root root 1019 ./usr/share/mime/application/x-atari-2600-rom.xml
8490-rw-r--r-- root root 1019 ./usr/share/mime/application/x-atari-7800-rom.xml
8491-rw-r--r-- root root 1021 ./usr/share/mime/application/x-atari-lynx-rom.xml
8492-rw-r--r-- root root 3084 ./usr/share/mime/application/x-awk.xml
8493-rw-r--r-- root root 3225 ./usr/share/mime/application/x-bcpio.xml
8494-rw-r--r-- root root 3540 ./usr/share/mime/application/x-bittorrent.xml
8495-rw-r--r-- root root 3102 ./usr/share/mime/application/x-blender.xml
8496-rw-r--r-- root root 2357 ./usr/share/mime/application/x-bsdiff.xml
8497-rw-r--r-- root root 4099 ./usr/share/mime/application/x-bzdvi.xml
8498-rw-r--r-- root root 3945 ./usr/share/mime/application/x-bzip-compressed-tar.xml
8499-rw-r--r-- root root 2986 ./usr/share/mime/application/x-bzip.xml
8500-rw-r--r-- root root 3880 ./usr/share/mime/application/x-bzpdf.xml
8501-rw-r--r-- root root 4236 ./usr/share/mime/application/x-bzpostscript.xml
8502-rw-r--r-- root root 3190 ./usr/share/mime/application/x-cb7.xml
8503-rw-r--r-- root root 3180 ./usr/share/mime/application/x-cbt.xml
8504-rw-r--r-- root root 2858 ./usr/share/mime/application/x-ccmx.xml
8505-rw-r--r-- root root 3292 ./usr/share/mime/application/x-cd-image.xml
8506-rw-r--r-- root root 3136 ./usr/share/mime/application/x-cdrdao-toc.xml
8507-rw-r--r-- root root 1099 ./usr/share/mime/application/x-cisco-vpn-settings.xml
8508-rw-r--r-- root root 3042 ./usr/share/mime/application/x-class-file.xml
8509-rw-r--r-- root root 3786 ./usr/share/mime/application/x-compressed-tar.xml
8510-rw-r--r-- root root 3414 ./usr/share/mime/application/x-compress.xml
8511-rw-r--r-- root root 3630 ./usr/share/mime/application/x-core.xml
8512-rw-r--r-- root root 4192 ./usr/share/mime/application/x-cpio-compressed.xml
8513-rw-r--r-- root root 3028 ./usr/share/mime/application/x-cpio.xml
8514-rw-r--r-- root root 3273 ./usr/share/mime/application/x-csh.xml
8515-rw-r--r-- root root 3240 ./usr/share/mime/application/x-cue.xml
8516-rw-r--r-- root root 2785 ./usr/share/mime/application/x-dar.xml
8517-rw-r--r-- root root 3031 ./usr/share/mime/application/x-dbf.xml
8518-rw-r--r-- root root 1136 ./usr/share/mime/application/x-dc-rom.xml
8519-rw-r--r-- root root 1241 ./usr/share/mime/application/x-designer.xml
8520-rw-r--r-- root root 3922 ./usr/share/mime/application/x-desktop.xml
8521-rw-r--r-- root root 3052 ./usr/share/mime/application/x-dia-diagram.xml
8522-rw-r--r-- root root 2405 ./usr/share/mime/application/x-dia-shape.xml
8523-rw-r--r-- root root 3273 ./usr/share/mime/application/x-docbook+xml.xml
8524-rw-r--r-- root root 1051 ./usr/share/mime/application/x-doom-wad.xml
8525-rw-r--r-- root root 3183 ./usr/share/mime/application/x-dvi.xml
8526-rw-r--r-- root root 3473 ./usr/share/mime/application/x-egon.xml
8527-rw-r--r-- root root 3341 ./usr/share/mime/application/x-e-theme.xml
8528-rw-r--r-- root root 2837 ./usr/share/mime/application/x-executable.xml
8529-rw-r--r-- root root 2172 ./usr/share/mime/application/x-fds-disk.xml
8530-rw-r--r-- root root 3142 ./usr/share/mime/application/x-fictionbook+xml.xml
8531-rw-r--r-- root root 3137 ./usr/share/mime/application/x-fluid.xml
8532-rw-r--r-- root root 3465 ./usr/share/mime/application/x-font-afm.xml
8533-rw-r--r-- root root 2866 ./usr/share/mime/application/x-font-bdf.xml
8534-rw-r--r-- root root 2854 ./usr/share/mime/application/x-font-dos.xml
8535-rw-r--r-- root root 3612 ./usr/share/mime/application/x-font-framemaker.xml
8536-rw-r--r-- root root 3018 ./usr/share/mime/application/x-font-libgrx.xml
8537-rw-r--r-- root root 3800 ./usr/share/mime/application/x-font-linux-psf.xml
8538-rw-r--r-- root root 2918 ./usr/share/mime/application/x-font-pcf.xml
8539-rw-r--r-- root root 3031 ./usr/share/mime/application/x-font-speedo.xml
8540-rw-r--r-- root root 3244 ./usr/share/mime/application/x-font-sunos-news.xml
8541-rw-r--r-- root root 3352 ./usr/share/mime/application/x-font-tex-tfm.xml
8542-rw-r--r-- root root 2839 ./usr/share/mime/application/x-font-tex.xml
8543-rw-r--r-- root root 3183 ./usr/share/mime/application/x-font-ttx.xml
8544-rw-r--r-- root root 2200 ./usr/share/mime/application/x-font-type1.xml
8545-rw-r--r-- root root 2741 ./usr/share/mime/application/x-font-vfont.xml
8546-rw-r--r-- root root 1959 ./usr/share/mime/application/x-gameboy-color-rom.xml
8547-rw-r--r-- root root 2895 ./usr/share/mime/application/x-gameboy-rom.xml
8548-rw-r--r-- root root 2521 ./usr/share/mime/application/x-gamecube-rom.xml
8549-rw-r--r-- root root 1722 ./usr/share/mime/application/x-gamegear-rom.xml
8550-rw-r--r-- root root 3217 ./usr/share/mime/application/x-gba-rom.xml
8551-rw-r--r-- root root 3125 ./usr/share/mime/application/x-gdbm.xml
8552-rw-r--r-- root root 3528 ./usr/share/mime/application/x-gedcom.xml
8553-rw-r--r-- root root 1892 ./usr/share/mime/application/x-genesis-32x-rom.xml
8554-rw-r--r-- root root 2901 ./usr/share/mime/application/x-genesis-rom.xml
8555-rw-r--r-- root root 4594 ./usr/share/mime/application/x-gettext-translation.xml
8556-rw-r--r-- root root 3040 ./usr/share/mime/application/x-glade.xml
8557-rw-r--r-- root root 3208 ./usr/share/mime/application/x-gnucash.xml
8558-rw-r--r-- root root 3362 ./usr/share/mime/application/x-gnumeric.xml
8559-rw-r--r-- root root 3130 ./usr/share/mime/application/x-gnuplot.xml
8560-rw-r--r-- root root 2839 ./usr/share/mime/application/x-go-sgf.xml
8561-rw-r--r-- root root 3559 ./usr/share/mime/application/x-graphite.xml
8562-rw-r--r-- root root 1253 ./usr/share/mime/application/x-gtk-builder.xml
8563-rw-r--r-- root root 3098 ./usr/share/mime/application/x-gtktalog.xml
8564-rw-r--r-- root root 4096 ./usr/share/mime/application/x-gzdvi.xml
8565-rw-r--r-- root root 4598 ./usr/share/mime/application/x-gz-font-linux-psf.xml
8566-rw-r--r-- root root 3871 ./usr/share/mime/application/x-gzpdf.xml
8567-rw-r--r-- root root 4380 ./usr/share/mime/application/x-gzpostscript.xml
8568-rw-r--r-- root root 3146 ./usr/share/mime/application/x-hdf.xml
8569-rw-r--r-- root root 2102 ./usr/share/mime/application/x-hfe-floppy-image.xml
8570-rw-r--r-- root root 3048 ./usr/share/mime/application/xhtml+xml.xml
8571-rw-r--r-- root root 3437 ./usr/share/mime/application/x-hwp.xml
8572-rw-r--r-- root root 3922 ./usr/share/mime/application/x-hwt.xml
8573-rw-r--r-- root root 3805 ./usr/share/mime/application/x-ica.xml
8574-rw-r--r-- root root 2088 ./usr/share/mime/application/x-iff.xml
8575-rw-r--r-- root root 2959 ./usr/share/mime/application/x-ipod-firmware.xml
8576-rw-r--r-- root root 1098 ./usr/share/mime/application/x-ipynb+json.xml
8577-rw-r--r-- root root 2355 ./usr/share/mime/application/x-iso9660-appimage.xml
8578-rw-r--r-- root root 3393 ./usr/share/mime/application/x-it87.xml
8579-rw-r--r-- root root 2779 ./usr/share/mime/application/x-iwork-keynote-sffkey.xml
8580-rw-r--r-- root root 2956 ./usr/share/mime/application/x-java-archive.xml
8581-rw-r--r-- root root 3006 ./usr/share/mime/application/x-java-jce-keystore.xml
8582-rw-r--r-- root root 2826 ./usr/share/mime/application/x-java-jnlp-file.xml
8583-rw-r--r-- root root 2810 ./usr/share/mime/application/x-java-keystore.xml
8584-rw-r--r-- root root 3097 ./usr/share/mime/application/x-java-pack200.xml
8585-rw-r--r-- root root 2902 ./usr/share/mime/application/x-java.xml
8586-rw-r--r-- root root 3090 ./usr/share/mime/application/x-jbuilder-project.xml
8587-rw-r--r-- root root 3023 ./usr/share/mime/application/x-karbon.xml
8588-rw-r--r-- root root 2961 ./usr/share/mime/application/x-kchart.xml
8589-rw-r--r-- root root 985 ./usr/share/mime/application/x-kexi-connectiondata.xml
8590-rw-r--r-- root root 963 ./usr/share/mime/application/x-kexiproject-shortcut.xml
8591-rw-r--r-- root root 1139 ./usr/share/mime/application/x-kexiproject-sqlite2.xml
8592-rw-r--r-- root root 1235 ./usr/share/mime/application/x-kexiproject-sqlite3.xml
8593-rw-r--r-- root root 3059 ./usr/share/mime/application/x-kformula.xml
8594-rw-r--r-- root root 3235 ./usr/share/mime/application/x-killustrator.xml
8595-rw-r--r-- root root 3186 ./usr/share/mime/application/x-kivio.xml
8596-rw-r--r-- root root 2970 ./usr/share/mime/application/x-kontour.xml
8597-rw-r--r-- root root 3112 ./usr/share/mime/application/x-kpovmodeler.xml
8598-rw-r--r-- root root 3446 ./usr/share/mime/application/x-kpresenter.xml
8599-rw-r--r-- root root 2978 ./usr/share/mime/application/x-krita.xml
8600-rw-r--r-- root root 3981 ./usr/share/mime/application/x-kspread-crypt.xml
8601-rw-r--r-- root root 3288 ./usr/share/mime/application/x-kspread.xml
8602-rw-r--r-- root root 3087 ./usr/share/mime/application/x-ksysv-package.xml
8603-rw-r--r-- root root 2981 ./usr/share/mime/application/x-kugar.xml
8604-rw-r--r-- root root 3680 ./usr/share/mime/application/x-kword-crypt.xml
8605-rw-r--r-- root root 3054 ./usr/share/mime/application/x-kword.xml
8606-rw-r--r-- root root 2937 ./usr/share/mime/application/x-lha.xml
8607-rw-r--r-- root root 2788 ./usr/share/mime/application/x-lhz.xml
8608-rw-r--r-- root root 3529 ./usr/share/mime/application/xliff+xml.xml
8609-rw-r--r-- root root 3509 ./usr/share/mime/application/x-lrzip-compressed-tar.xml
8610-rw-r--r-- root root 2586 ./usr/share/mime/application/x-lrzip.xml
8611-rw-r--r-- root root 2932 ./usr/share/mime/application/x-lyx.xml
8612-rw-r--r-- root root 2407 ./usr/share/mime/application/x-lz4-compressed-tar.xml
8613-rw-r--r-- root root 2047 ./usr/share/mime/application/x-lz4.xml
8614-rw-r--r-- root root 2439 ./usr/share/mime/application/x-lzip-compressed-tar.xml
8615-rw-r--r-- root root 2538 ./usr/share/mime/application/x-lzip.xml
8616-rw-r--r-- root root 3787 ./usr/share/mime/application/x-lzma-compressed-tar.xml
8617-rw-r--r-- root root 2879 ./usr/share/mime/application/x-lzma.xml
8618-rw-r--r-- root root 2858 ./usr/share/mime/application/x-lzop.xml
8619-rw-r--r-- root root 2450 ./usr/share/mime/application/x-lzpdf.xml
8620-rw-r--r-- root root 2573 ./usr/share/mime/application/x-m4.xml
8621-rw-r--r-- root root 3552 ./usr/share/mime/application/x-macbinary.xml
8622-rw-r--r-- root root 3595 ./usr/share/mime/application/x-magicpoint.xml
8623-rw-r--r-- root root 3076 ./usr/share/mime/application/x-markaby.xml
8624-rw-r--r-- root root 2865 ./usr/share/mime/application/x-matroska.xml
8625-rw-r--r-- root root 3816 ./usr/share/mime/application/x-mif.xml
8626-rw-r--r-- root root 2522 ./usr/share/mime/application/x-mimearchive.xml
8627-rw-r--r-- root root 2842 ./usr/share/mime/application/xml-dtd.xml
8628-rw-r--r-- root root 3524 ./usr/share/mime/application/xml-external-parsed-entity.xml
8629-rw-r--r-- root root 3038 ./usr/share/mime/application/xml.xml
8630-rw-r--r-- root root 2798 ./usr/share/mime/application/x-mobipocket-ebook.xml
8631-rw-r--r-- root root 3272 ./usr/share/mime/application/x-mozilla-bookmarks.xml
8632-rw-r--r-- root root 3670 ./usr/share/mime/application/x-ms-dos-executable.xml
8633-rw-r--r-- root root 3395 ./usr/share/mime/application/x-msi.xml
8634-rw-r--r-- root root 1046 ./usr/share/mime/application/x-ms-wim.xml
8635-rw-r--r-- root root 3069 ./usr/share/mime/application/x-mswinurl.xml
8636-rw-r--r-- root root 2816 ./usr/share/mime/application/x-mswrite.xml
8637-rw-r--r-- root root 2631 ./usr/share/mime/application/x-msx-rom.xml
8638-rw-r--r-- root root 2950 ./usr/share/mime/application/x-n64-rom.xml
8639-rw-r--r-- root root 3171 ./usr/share/mime/application/x-nautilus-link.xml
8640-rw-r--r-- root root 3348 ./usr/share/mime/application/x-navi-animation.xml
8641-rw-r--r-- root root 1852 ./usr/share/mime/application/x-neo-geo-pocket-color-rom.xml
8642-rw-r--r-- root root 1874 ./usr/share/mime/application/x-neo-geo-pocket-rom.xml
8643-rw-r--r-- root root 2681 ./usr/share/mime/application/x-nes-rom.xml
8644-rw-r--r-- root root 3540 ./usr/share/mime/application/x-netcdf.xml
8645-rw-r--r-- root root 3587 ./usr/share/mime/application/x-netshow-channel.xml
8646-rw-r--r-- root root 2904 ./usr/share/mime/application/x-nintendo-ds-rom.xml
8647-rw-r--r-- root root 2651 ./usr/share/mime/application/x-nzb.xml
8648-rw-r--r-- root root 2816 ./usr/share/mime/application/x-object.xml
8649-rw-r--r-- root root 3410 ./usr/share/mime/application/x-oleo.xml
8650-rw-r--r-- root root 3999 ./usr/share/mime/application/x-ole-storage.xml
8651-rw-r--r-- root root 1221 ./usr/share/mime/application/x-pagemaker.xml
8652-rw-r--r-- root root 2785 ./usr/share/mime/application/x-pak.xml
8653-rw-r--r-- root root 3058 ./usr/share/mime/application/x-par2.xml
8654-rw-r--r-- root root 2817 ./usr/share/mime/application/x-partial-download.xml
8655-rw-r--r-- root root 2149 ./usr/share/mime/application/x-pc-engine-rom.xml
8656-rw-r--r-- root root 3072 ./usr/share/mime/application/x-pef-executable.xml
8657-rw-r--r-- root root 3209 ./usr/share/mime/application/x-perl.xml
8658-rw-r--r-- root root 3050 ./usr/share/mime/application/x-php.xml
8659-rw-r--r-- root root 3264 ./usr/share/mime/application/x-pkcs7-certificates.xml
8660-rw-r--r-- root root 3383 ./usr/share/mime/application/x-planperfect.xml
8661-rw-r--r-- root root 2969 ./usr/share/mime/application/x-pocket-word.xml
8662-rw-r--r-- root root 3489 ./usr/share/mime/application/x-profile.xml
8663-rw-r--r-- root root 3521 ./usr/share/mime/application/x-pw.xml
8664-rw-r--r-- root root 3180 ./usr/share/mime/application/x-python-bytecode.xml
8665-rw-r--r-- root root 407 ./usr/share/mime/application/x-qemu-disk.xml
8666-rw-r--r-- root root 2164 ./usr/share/mime/application/x-qpress.xml
8667-rw-r--r-- root root 2458 ./usr/share/mime/application/x-qtiplot.xml
8668-rw-r--r-- root root 3546 ./usr/share/mime/application/x-quattropro.xml
8669-rw-r--r-- root root 1258 ./usr/share/mime/application/x-quicktime-media-link.xml
8670-rw-r--r-- root root 3189 ./usr/share/mime/application/x-qw.xml
8671-rw-r--r-- root root 2444 ./usr/share/mime/application/x-raw-disk-image.xml
8672-rw-r--r-- root root 3223 ./usr/share/mime/application/x-raw-disk-image-xz-compressed.xml
8673-rw-r--r-- root root 1828 ./usr/share/mime/application/x-raw-floppy-disk-image.xml
8674-rw-r--r-- root root 2067 ./usr/share/mime/application/x-riff.xml
8675-rw-r--r-- root root 2780 ./usr/share/mime/application/x-rpm.xml
8676-rw-r--r-- root root 2941 ./usr/share/mime/application/x-ruby.xml
8677-rw-r--r-- root root 3058 ./usr/share/mime/application/x-sami.xml
8678-rw-r--r-- root root 2519 ./usr/share/mime/application/x-saturn-rom.xml
8679-rw-r--r-- root root 3354 ./usr/share/mime/application/x-sc.xml
8680-rw-r--r-- root root 2140 ./usr/share/mime/application/x-sega-cd-rom.xml
8681-rw-r--r-- root root 1752 ./usr/share/mime/application/x-sega-pico-rom.xml
8682-rw-r--r-- root root 1656 ./usr/share/mime/application/x-sg1000-rom.xml
8683-rw-r--r-- root root 3576 ./usr/share/mime/application/x-shared-library-la.xml
8684-rw-r--r-- root root 3341 ./usr/share/mime/application/x-sharedlib.xml
8685-rw-r--r-- root root 3018 ./usr/share/mime/application/x-shar.xml
8686-rw-r--r-- root root 3191 ./usr/share/mime/application/x-shellscript.xml
8687-rw-r--r-- root root 2898 ./usr/share/mime/application/x-shorten.xml
8688-rw-r--r-- root root 3125 ./usr/share/mime/application/x-siag.xml
8689-rw-r--r-- root root 3067 ./usr/share/mime/application/x-slp.xml
8690-rw-r--r-- root root 3271 ./usr/share/mime/application/xslt+xml.xml
8691-rw-r--r-- root root 2868 ./usr/share/mime/application/x-smaf.xml
8692-rw-r--r-- root root 1828 ./usr/share/mime/application/x-sms-rom.xml
8693-rw-r--r-- root root 2563 ./usr/share/mime/application/x-source-rpm.xml
8694-rw-r--r-- root root 3445 ./usr/share/mime/application/xspf+xml.xml
8695-rw-r--r-- root root 1201 ./usr/share/mime/application/x-spss-por.xml
8696-rw-r--r-- root root 1181 ./usr/share/mime/application/x-spss-sav.xml
8697-rw-r--r-- root root 3154 ./usr/share/mime/application/x-sqlite2.xml
8698-rw-r--r-- root root 3027 ./usr/share/mime/application/x-stuffit.xml
8699-rw-r--r-- root root 3069 ./usr/share/mime/application/x-subrip.xml
8700-rw-r--r-- root root 3146 ./usr/share/mime/application/x-sv4cpio.xml
8701-rw-r--r-- root root 3637 ./usr/share/mime/application/x-sv4crc.xml
8702-rw-r--r-- root root 2862 ./usr/share/mime/application/x-t602.xml
8703-rw-r--r-- root root 2908 ./usr/share/mime/application/x-tar.xml
8704-rw-r--r-- root root 3451 ./usr/share/mime/application/x-tarz.xml
8705-rw-r--r-- root root 3391 ./usr/share/mime/application/x-tex-gf.xml
8706-rw-r--r-- root root 3527 ./usr/share/mime/application/x-tex-pk.xml
8707-rw-r--r-- root root 2916 ./usr/share/mime/application/x-tgif.xml
8708-rw-r--r-- root root 2604 ./usr/share/mime/application/x-theme.xml
8709-rw-r--r-- root root 2013 ./usr/share/mime/application/x-thomson-cartridge-memo7.xml
8710-rw-r--r-- root root 1776 ./usr/share/mime/application/x-thomson-cassette.xml
8711-rw-r--r-- root root 2342 ./usr/share/mime/application/x-thomson-sap-image.xml
8712-rw-r--r-- root root 3216 ./usr/share/mime/application/x-toutdoux.xml
8713-rw-r--r-- root root 3148 ./usr/share/mime/application/x-trash.xml
8714-rw-r--r-- root root 3887 ./usr/share/mime/application/x-troff-man-compressed.xml
8715-rw-r--r-- root root 2521 ./usr/share/mime/application/x-troff-man.xml
8716-rw-r--r-- root root 3731 ./usr/share/mime/application/x-tzo.xml
8717-rw-r--r-- root root 3110 ./usr/share/mime/application/x-ufraw.xml
8718-rw-r--r-- root root 2836 ./usr/share/mime/application/x-ustar.xml
8719-rw-r--r-- root root 1666 ./usr/share/mime/application/x-virtual-boy-rom.xml
8720-rw-r--r-- root root 3242 ./usr/share/mime/application/x-wais-source.xml
8721-rw-r--r-- root root 2456 ./usr/share/mime/application/x-wii-rom.xml
8722-rw-r--r-- root root 1998 ./usr/share/mime/application/x-wii-wad.xml
8723-rw-r--r-- root root 3595 ./usr/share/mime/application/x-windows-themepack.xml
8724-rw-r--r-- root root 1989 ./usr/share/mime/application/x-wonderswan-color-rom.xml
8725-rw-r--r-- root root 1825 ./usr/share/mime/application/x-wonderswan-rom.xml
8726-rw-r--r-- root root 3782 ./usr/share/mime/application/x-wpg.xml
8727-rw-r--r-- root root 2498 ./usr/share/mime/application/x-wwf.xml
8728-rw-r--r-- root root 4757 ./usr/share/mime/application/x-x509-ca-cert.xml
8729-rw-r--r-- root root 1890 ./usr/share/mime/application/x-xar.xml
8730-rw-r--r-- root root 3167 ./usr/share/mime/application/x-xbel.xml
8731-rw-r--r-- root root 3294 ./usr/share/mime/application/x-xpinstall.xml
8732-rw-r--r-- root root 3373 ./usr/share/mime/application/x-xz-compressed-tar.xml
8733-rw-r--r-- root root 3269 ./usr/share/mime/application/x-xzpdf.xml
8734-rw-r--r-- root root 2449 ./usr/share/mime/application/x-xz.xml
8735-rw-r--r-- root root 2822 ./usr/share/mime/application/x-yaml.xml
8736-rw-r--r-- root root 2936 ./usr/share/mime/application/x-zerosize.xml
8737-rw-r--r-- root root 2912 ./usr/share/mime/application/x-zip-compressed-fb2.xml
8738-rw-r--r-- root root 2818 ./usr/share/mime/application/x-zoo.xml
8739-rw-r--r-- root root 1995 ./usr/share/mime/application/x-zstd-compressed-tar.xml
8740-rw-r--r-- root root 2901 ./usr/share/mime/application/zip.xml
8741-rw-r--r-- root root 2084 ./usr/share/mime/application/zlib.xml
8742-rw-r--r-- root root 1464 ./usr/share/mime/application/zstd.xml
8743drwxr-xr-x root root 4096 ./usr/share/mime/audio
8744-rw-r--r-- root root 2202 ./usr/share/mime/audio/aac.xml
8745-rw-r--r-- root root 3368 ./usr/share/mime/audio/ac3.xml
8746-rw-r--r-- root root 2944 ./usr/share/mime/audio/amr-wb.xml
8747-rw-r--r-- root root 2771 ./usr/share/mime/audio/amr.xml
8748-rw-r--r-- root root 1023 ./usr/share/mime/audio/annodex.xml
8749-rw-r--r-- root root 3151 ./usr/share/mime/audio/basic.xml
8750-rw-r--r-- root root 2798 ./usr/share/mime/audio/flac.xml
8751-rw-r--r-- root root 2876 ./usr/share/mime/audio/midi.xml
8752-rw-r--r-- root root 2623 ./usr/share/mime/audio/mp2.xml
8753-rw-r--r-- root root 2884 ./usr/share/mime/audio/mp4.xml
8754-rw-r--r-- root root 2936 ./usr/share/mime/audio/mpeg.xml
8755-rw-r--r-- root root 1008 ./usr/share/mime/audio/ogg.xml
8756-rw-r--r-- root root 3220 ./usr/share/mime/audio/prs.sid.xml
8757-rw-r--r-- root root 1610 ./usr/share/mime/audio/usac.xml
8758-rw-r--r-- root root 2180 ./usr/share/mime/audio/vnd.dts.hd.xml
8759-rw-r--r-- root root 2055 ./usr/share/mime/audio/vnd.dts.xml
8760-rw-r--r-- root root 3202 ./usr/share/mime/audio/vnd.rn-realaudio.xml
8761-rw-r--r-- root root 2422 ./usr/share/mime/audio/webm.xml
8762-rw-r--r-- root root 2713 ./usr/share/mime/audio/x-adpcm.xml
8763-rw-r--r-- root root 3066 ./usr/share/mime/audio/x-aifc.xml
8764-rw-r--r-- root root 3573 ./usr/share/mime/audio/x-aiff.xml
8765-rw-r--r-- root root 2766 ./usr/share/mime/audio/x-amzxml.xml
8766-rw-r--r-- root root 2758 ./usr/share/mime/audio/x-ape.xml
8767-rw-r--r-- root root 2958 ./usr/share/mime/audio/x-flac+ogg.xml
8768-rw-r--r-- root root 2864 ./usr/share/mime/audio/x-gsm.xml
8769-rw-r--r-- root root 1076 ./usr/share/mime/audio/x-iriver-pla.xml
8770-rw-r--r-- root root 3344 ./usr/share/mime/audio/x-it.xml
8771-rw-r--r-- root root 3184 ./usr/share/mime/audio/x-m4b.xml
8772-rw-r--r-- root root 1002 ./usr/share/mime/audio/x-m4r.xml
8773-rw-r--r-- root root 2979 ./usr/share/mime/audio/x-matroska.xml
8774-rw-r--r-- root root 3017 ./usr/share/mime/audio/x-minipsf.xml
8775-rw-r--r-- root root 3256 ./usr/share/mime/audio/x-mo3.xml
8776-rw-r--r-- root root 3640 ./usr/share/mime/audio/x-mod.xml
8777-rw-r--r-- root root 3601 ./usr/share/mime/audio/x-mpegurl.xml
8778-rw-r--r-- root root 3833 ./usr/share/mime/audio/x-ms-asx.xml
8779-rw-r--r-- root root 3148 ./usr/share/mime/audio/x-ms-wma.xml
8780-rw-r--r-- root root 2864 ./usr/share/mime/audio/x-musepack.xml
8781-rw-r--r-- root root 2000 ./usr/share/mime/audio/x-opus+ogg.xml
8782-rw-r--r-- root root 1778 ./usr/share/mime/audio/x-pn-audibleaudio.xml
8783-rw-r--r-- root root 3385 ./usr/share/mime/audio/x-psflib.xml
8784-rw-r--r-- root root 2682 ./usr/share/mime/audio/x-psf.xml
8785-rw-r--r-- root root 2764 ./usr/share/mime/audio/x-riff.xml
8786-rw-r--r-- root root 3393 ./usr/share/mime/audio/x-s3m.xml
8787-rw-r--r-- root root 3693 ./usr/share/mime/audio/x-scpls.xml
8788-rw-r--r-- root root 2976 ./usr/share/mime/audio/x-speex+ogg.xml
8789-rw-r--r-- root root 2656 ./usr/share/mime/audio/x-speex.xml
8790-rw-r--r-- root root 3290 ./usr/share/mime/audio/x-stm.xml
8791-rw-r--r-- root root 2930 ./usr/share/mime/audio/x-tta.xml
8792-rw-r--r-- root root 2737 ./usr/share/mime/audio/x-voc.xml
8793-rw-r--r-- root root 3311 ./usr/share/mime/audio/x-vorbis+ogg.xml
8794-rw-r--r-- root root 3641 ./usr/share/mime/audio/x-wavpack-correction.xml
8795-rw-r--r-- root root 2833 ./usr/share/mime/audio/x-wavpack.xml
8796-rw-r--r-- root root 2795 ./usr/share/mime/audio/x-wav.xml
8797-rw-r--r-- root root 3518 ./usr/share/mime/audio/x-xi.xml
8798-rw-r--r-- root root 2751 ./usr/share/mime/audio/x-xmf.xml
8799-rw-r--r-- root root 3360 ./usr/share/mime/audio/x-xm.xml
8800drwxr-xr-x root root 4096 ./usr/share/mime/font
8801-rw-r--r-- root root 1752 ./usr/share/mime/font/collection.xml
8802-rw-r--r-- root root 3213 ./usr/share/mime/font/otf.xml
8803-rw-r--r-- root root 3063 ./usr/share/mime/font/ttf.xml
8804-rw-r--r-- root root 1753 ./usr/share/mime/font/woff2.xml
8805-rw-r--r-- root root 2331 ./usr/share/mime/font/woff.xml
8806-rw-r--r-- root root 17449 ./usr/share/mime/generic-icons
8807-rw-r--r-- root root 29350 ./usr/share/mime/globs
8808-rw-r--r-- root root 32606 ./usr/share/mime/globs2
8809-rw-r--r-- root root 0 ./usr/share/mime/icons
8810drwxr-xr-x root root 4096 ./usr/share/mime/image
8811-rw-r--r-- root root 3325 ./usr/share/mime/image/bmp.xml
8812-rw-r--r-- root root 928 ./usr/share/mime/image/cgm.xml
8813-rw-r--r-- root root 2788 ./usr/share/mime/image/dpx.xml
8814-rw-r--r-- root root 2896 ./usr/share/mime/image/emf.xml
8815-rw-r--r-- root root 1017 ./usr/share/mime/image/fax-g3.xml
8816-rw-r--r-- root root 3011 ./usr/share/mime/image/fits.xml
8817-rw-r--r-- root root 2851 ./usr/share/mime/image/gif.xml
8818-rw-r--r-- root root 1713 ./usr/share/mime/image/heif.xml
8819-rw-r--r-- root root 2775 ./usr/share/mime/image/ief.xml
8820-rw-r--r-- root root 1995 ./usr/share/mime/image/jp2.xml
8821-rw-r--r-- root root 2914 ./usr/share/mime/image/jpeg.xml
8822-rw-r--r-- root root 1890 ./usr/share/mime/image/jpm.xml
8823-rw-r--r-- root root 1891 ./usr/share/mime/image/jpx.xml
8824-rw-r--r-- root root 2043 ./usr/share/mime/image/ktx.xml
8825-rw-r--r-- root root 1030 ./usr/share/mime/image/openraster.xml
8826-rw-r--r-- root root 2775 ./usr/share/mime/image/png.xml
8827-rw-r--r-- root root 1057 ./usr/share/mime/image/rle.xml
8828-rw-r--r-- root root 3368 ./usr/share/mime/image/svg+xml-compressed.xml
8829-rw-r--r-- root root 2782 ./usr/share/mime/image/svg+xml.xml
8830-rw-r--r-- root root 2852 ./usr/share/mime/image/tiff.xml
8831-rw-r--r-- root root 3033 ./usr/share/mime/image/vnd.adobe.photoshop.xml
8832-rw-r--r-- root root 2120 ./usr/share/mime/image/vnd.djvu+multipage.xml
8833-rw-r--r-- root root 2911 ./usr/share/mime/image/vnd.djvu.xml
8834-rw-r--r-- root root 3101 ./usr/share/mime/image/vnd.dwg.xml
8835-rw-r--r-- root root 3301 ./usr/share/mime/image/vnd.dxf.xml
8836-rw-r--r-- root root 2244 ./usr/share/mime/image/vnd.microsoft.icon.xml
8837-rw-r--r-- root root 933 ./usr/share/mime/image/vnd.ms-modi.xml
8838-rw-r--r-- root root 2993 ./usr/share/mime/image/vnd.rn-realpix.xml
8839-rw-r--r-- root root 2775 ./usr/share/mime/image/vnd.wap.wbmp.xml
8840-rw-r--r-- root root 2764 ./usr/share/mime/image/vnd.zbrush.pcx.xml
8841-rw-r--r-- root root 1985 ./usr/share/mime/image/webp.xml
8842-rw-r--r-- root root 2901 ./usr/share/mime/image/wmf.xml
8843-rw-r--r-- root root 3236 ./usr/share/mime/image/x-3ds.xml
8844-rw-r--r-- root root 3249 ./usr/share/mime/image/x-adobe-dng.xml
8845-rw-r--r-- root root 3454 ./usr/share/mime/image/x-applix-graphics.xml
8846-rw-r--r-- root root 3863 ./usr/share/mime/image/x-bzeps.xml
8847-rw-r--r-- root root 3517 ./usr/share/mime/image/x-canon-cr2.xml
8848-rw-r--r-- root root 3480 ./usr/share/mime/image/x-canon-crw.xml
8849-rw-r--r-- root root 3346 ./usr/share/mime/image/x-cmu-raster.xml
8850-rw-r--r-- root root 3323 ./usr/share/mime/image/x-compressed-xcf.xml
8851-rw-r--r-- root root 3230 ./usr/share/mime/image/x-dcraw.xml
8852-rw-r--r-- root root 3119 ./usr/share/mime/image/x-dds.xml
8853-rw-r--r-- root root 2780 ./usr/share/mime/image/x-dib.xml
8854-rw-r--r-- root root 2906 ./usr/share/mime/image/x-eps.xml
8855-rw-r--r-- root root 2720 ./usr/share/mime/image/x-exr.xml
8856-rw-r--r-- root root 2767 ./usr/share/mime/image/x-fpx.xml
8857-rw-r--r-- root root 3445 ./usr/share/mime/image/x-fuji-raf.xml
8858-rw-r--r-- root root 1569 ./usr/share/mime/image/x-gimp-gbr.xml
8859-rw-r--r-- root root 1672 ./usr/share/mime/image/x-gimp-gih.xml
8860-rw-r--r-- root root 1564 ./usr/share/mime/image/x-gimp-pat.xml
8861-rw-r--r-- root root 3863 ./usr/share/mime/image/x-gzeps.xml
8862-rw-r--r-- root root 2927 ./usr/share/mime/image/x-icns.xml
8863-rw-r--r-- root root 3043 ./usr/share/mime/image/x-ilbm.xml
8864-rw-r--r-- root root 2863 ./usr/share/mime/image/x-jng.xml
8865-rw-r--r-- root root 1821 ./usr/share/mime/image/x-jp2-codestream.xml
8866-rw-r--r-- root root 3442 ./usr/share/mime/image/x-kodak-dcr.xml
8867-rw-r--r-- root root 3428 ./usr/share/mime/image/x-kodak-k25.xml
8868-rw-r--r-- root root 3444 ./usr/share/mime/image/x-kodak-kdc.xml
8869-rw-r--r-- root root 3140 ./usr/share/mime/image/x-lwo.xml
8870-rw-r--r-- root root 3058 ./usr/share/mime/image/x-lws.xml
8871-rw-r--r-- root root 3324 ./usr/share/mime/image/x-macpaint.xml
8872-rw-r--r-- root root 3495 ./usr/share/mime/image/x-minolta-mrw.xml
8873-rw-r--r-- root root 2793 ./usr/share/mime/image/x-msod.xml
8874-rw-r--r-- root root 2665 ./usr/share/mime/image/x-niff.xml
8875-rw-r--r-- root root 3442 ./usr/share/mime/image/x-nikon-nef.xml
8876-rw-r--r-- root root 3607 ./usr/share/mime/image/x-olympus-orf.xml
8877-rw-r--r-- root root 3360 ./usr/share/mime/image/x-panasonic-rw2.xml
8878-rw-r--r-- root root 3358 ./usr/share/mime/image/x-panasonic-rw.xml
8879-rw-r--r-- root root 3499 ./usr/share/mime/image/x-pentax-pef.xml
8880-rw-r--r-- root root 2793 ./usr/share/mime/image/x-photo-cd.xml
8881-rw-r--r-- root root 3911 ./usr/share/mime/image/x-pict.xml
8882-rw-r--r-- root root 2789 ./usr/share/mime/image/x-portable-anymap.xml
8883-rw-r--r-- root root 2904 ./usr/share/mime/image/x-portable-bitmap.xml
8884-rw-r--r-- root root 2830 ./usr/share/mime/image/x-portable-graymap.xml
8885-rw-r--r-- root root 2828 ./usr/share/mime/image/x-portable-pixmap.xml
8886-rw-r--r-- root root 2989 ./usr/share/mime/image/x-quicktime.xml
8887-rw-r--r-- root root 2784 ./usr/share/mime/image/x-rgb.xml
8888-rw-r--r-- root root 2640 ./usr/share/mime/image/x-sgi.xml
8889-rw-r--r-- root root 3400 ./usr/share/mime/image/x-sigma-x3f.xml
8890-rw-r--r-- root root 2956 ./usr/share/mime/image/x-skencil.xml
8891-rw-r--r-- root root 3388 ./usr/share/mime/image/x-sony-arw.xml
8892-rw-r--r-- root root 3388 ./usr/share/mime/image/x-sony-sr2.xml
8893-rw-r--r-- root root 3387 ./usr/share/mime/image/x-sony-srf.xml
8894-rw-r--r-- root root 3040 ./usr/share/mime/image/x-sun-raster.xml
8895-rw-r--r-- root root 2867 ./usr/share/mime/image/x-tga.xml
8896-rw-r--r-- root root 2644 ./usr/share/mime/image/x-tiff-multipage.xml
8897-rw-r--r-- root root 2941 ./usr/share/mime/image/x-win-bitmap.xml
8898-rw-r--r-- root root 2721 ./usr/share/mime/image/x-xbitmap.xml
8899-rw-r--r-- root root 2832 ./usr/share/mime/image/x-xcf.xml
8900-rw-r--r-- root root 2592 ./usr/share/mime/image/x-xcursor.xml
8901-rw-r--r-- root root 2753 ./usr/share/mime/image/x-xfig.xml
8902-rw-r--r-- root root 2798 ./usr/share/mime/image/x-xpixmap.xml
8903-rw-r--r-- root root 3109 ./usr/share/mime/image/x-xwindowdump.xml
8904drwxr-xr-x root root 4096 ./usr/share/mime/inode
8905-rw-r--r-- root root 3006 ./usr/share/mime/inode/blockdevice.xml
8906-rw-r--r-- root root 3145 ./usr/share/mime/inode/chardevice.xml
8907-rw-r--r-- root root 2543 ./usr/share/mime/inode/directory.xml
8908-rw-r--r-- root root 2413 ./usr/share/mime/inode/fifo.xml
8909-rw-r--r-- root root 3021 ./usr/share/mime/inode/mount-point.xml
8910-rw-r--r-- root root 2469 ./usr/share/mime/inode/socket.xml
8911-rw-r--r-- root root 3295 ./usr/share/mime/inode/symlink.xml
8912-rw-r--r-- root root 27700 ./usr/share/mime/magic
8913drwxr-xr-x root root 4096 ./usr/share/mime/message
8914-rw-r--r-- root root 3735 ./usr/share/mime/message/delivery-status.xml
8915-rw-r--r-- root root 3771 ./usr/share/mime/message/disposition-notification.xml
8916-rw-r--r-- root root 3777 ./usr/share/mime/message/external-body.xml
8917-rw-r--r-- root root 3617 ./usr/share/mime/message/news.xml
8918-rw-r--r-- root root 3728 ./usr/share/mime/message/partial.xml
8919-rw-r--r-- root root 3183 ./usr/share/mime/message/rfc822.xml
8920-rw-r--r-- root root 3427 ./usr/share/mime/message/x-gnu-rmail.xml
8921-rw-r--r-- root root 136104 ./usr/share/mime/mime.cache
8922drwxr-xr-x root root 4096 ./usr/share/mime/model
8923-rw-r--r-- root root 2003 ./usr/share/mime/model/iges.xml
8924-rw-r--r-- root root 1695 ./usr/share/mime/model/stl.xml
8925-rw-r--r-- root root 3189 ./usr/share/mime/model/vrml.xml
8926drwxr-xr-x root root 4096 ./usr/share/mime/multipart
8927-rw-r--r-- root root 3761 ./usr/share/mime/multipart/alternative.xml
8928-rw-r--r-- root root 4361 ./usr/share/mime/multipart/appledouble.xml
8929-rw-r--r-- root root 3157 ./usr/share/mime/multipart/digest.xml
8930-rw-r--r-- root root 3267 ./usr/share/mime/multipart/encrypted.xml
8931-rw-r--r-- root root 3191 ./usr/share/mime/multipart/mixed.xml
8932-rw-r--r-- root root 3209 ./usr/share/mime/multipart/related.xml
8933-rw-r--r-- root root 3556 ./usr/share/mime/multipart/report.xml
8934-rw-r--r-- root root 3203 ./usr/share/mime/multipart/signed.xml
8935-rw-r--r-- root root 3867 ./usr/share/mime/multipart/x-mixed-replace.xml
8936-rw-r--r-- root root 16073 ./usr/share/mime/subclasses
8937drwxr-xr-x root root 4096 ./usr/share/mime/text
8938-rw-r--r-- root root 1172 ./usr/share/mime/text/cache-manifest.xml
8939-rw-r--r-- root root 3178 ./usr/share/mime/text/calendar.xml
8940-rw-r--r-- root root 3113 ./usr/share/mime/text/css.xml
8941-rw-r--r-- root root 2266 ./usr/share/mime/text/csv-schema.xml
8942-rw-r--r-- root root 3027 ./usr/share/mime/text/csv.xml
8943-rw-r--r-- root root 3801 ./usr/share/mime/text/enriched.xml
8944-rw-r--r-- root root 3017 ./usr/share/mime/text/htmlh.xml
8945-rw-r--r-- root root 2991 ./usr/share/mime/text/html.xml
8946-rw-r--r-- root root 2600 ./usr/share/mime/text/markdown.xml
8947-rw-r--r-- root root 3420 ./usr/share/mime/text/plain.xml
8948-rw-r--r-- root root 3291 ./usr/share/mime/text/rfc822-headers.xml
8949-rw-r--r-- root root 3602 ./usr/share/mime/text/richtext.xml
8950-rw-r--r-- root root 2164 ./usr/share/mime/text/rust.xml
8951-rw-r--r-- root root 3073 ./usr/share/mime/text/sgml.xml
8952-rw-r--r-- root root 3961 ./usr/share/mime/text/spreadsheet.xml
8953-rw-r--r-- root root 2849 ./usr/share/mime/text/tab-separated-values.xml
8954-rw-r--r-- root root 3191 ./usr/share/mime/text/troff.xml
8955-rw-r--r-- root root 2106 ./usr/share/mime/text/turtle.xml
8956-rw-r--r-- root root 3618 ./usr/share/mime/text/vcard.xml
8957-rw-r--r-- root root 2914 ./usr/share/mime/text/vnd.graphviz.xml
8958-rw-r--r-- root root 3253 ./usr/share/mime/text/vnd.qt.linguist.xml
8959-rw-r--r-- root root 3050 ./usr/share/mime/text/vnd.rn-realtext.xml
8960-rw-r--r-- root root 1636 ./usr/share/mime/text/vnd.senx.warpscript.xml
8961-rw-r--r-- root root 2876 ./usr/share/mime/text/vnd.sun.j2me.app-descriptor.xml
8962-rw-r--r-- root root 3020 ./usr/share/mime/text/vnd.wap.wmlscript.xml
8963-rw-r--r-- root root 3039 ./usr/share/mime/text/vnd.wap.wml.xml
8964-rw-r--r-- root root 2632 ./usr/share/mime/text/vtt.xml
8965-rw-r--r-- root root 3143 ./usr/share/mime/text/x-adasrc.xml
8966-rw-r--r-- root root 2961 ./usr/share/mime/text/x-authors.xml
8967-rw-r--r-- root root 3040 ./usr/share/mime/text/x-bibtex.xml
8968-rw-r--r-- root root 3310 ./usr/share/mime/text/x-changelog.xml
8969-rw-r--r-- root root 3007 ./usr/share/mime/text/x-c++hdr.xml
8970-rw-r--r-- root root 2803 ./usr/share/mime/text/x-chdr.xml
8971-rw-r--r-- root root 3188 ./usr/share/mime/text/x-cmake.xml
8972-rw-r--r-- root root 1168 ./usr/share/mime/text/x-cobol.xml
8973-rw-r--r-- root root 3113 ./usr/share/mime/text/x-copying.xml
8974-rw-r--r-- root root 3127 ./usr/share/mime/text/x-credits.xml
8975-rw-r--r-- root root 3074 ./usr/share/mime/text/x-csharp.xml
8976-rw-r--r-- root root 3250 ./usr/share/mime/text/x-c++src.xml
8977-rw-r--r-- root root 3064 ./usr/share/mime/text/x-csrc.xml
8978-rw-r--r-- root root 1989 ./usr/share/mime/text/x-dbus-service.xml
8979-rw-r--r-- root root 3032 ./usr/share/mime/text/x-dcl.xml
8980-rw-r--r-- root root 3236 ./usr/share/mime/text/x-dsl.xml
8981-rw-r--r-- root root 2994 ./usr/share/mime/text/x-dsrc.xml
8982-rw-r--r-- root root 3254 ./usr/share/mime/text/x-eiffel.xml
8983-rw-r--r-- root root 3617 ./usr/share/mime/text/x-emacs-lisp.xml
8984-rw-r--r-- root root 3221 ./usr/share/mime/text/x-erlang.xml
8985-rw-r--r-- root root 3527 ./usr/share/mime/text/x-fortran.xml
8986-rw-r--r-- root root 1710 ./usr/share/mime/text/x.gcode.xml
8987-rw-r--r-- root root 2317 ./usr/share/mime/text/x-genie.xml
8988-rw-r--r-- root root 3320 ./usr/share/mime/text/x-gettext-translation-template.xml
8989-rw-r--r-- root root 3221 ./usr/share/mime/text/x-gettext-translation.xml
8990-rw-r--r-- root root 1013 ./usr/share/mime/text/x-gherkin.xml
8991-rw-r--r-- root root 1138 ./usr/share/mime/text/x-google-video-pointer.xml
8992-rw-r--r-- root root 2539 ./usr/share/mime/text/x-go.xml
8993-rw-r--r-- root root 1644 ./usr/share/mime/text/x-gradle.xml
8994-rw-r--r-- root root 1179 ./usr/share/mime/text/x-groovy.xml
8995-rw-r--r-- root root 3360 ./usr/share/mime/text/x-haskell.xml
8996-rw-r--r-- root root 3033 ./usr/share/mime/text/x-idl.xml
8997-rw-r--r-- root root 3023 ./usr/share/mime/text/x-imelody.xml
8998-rw-r--r-- root root 3418 ./usr/share/mime/text/x-install.xml
8999-rw-r--r-- root root 3599 ./usr/share/mime/text/x-iptables.xml
9000-rw-r--r-- root root 3086 ./usr/share/mime/text/x-java.xml
9001-rw-r--r-- root root 3167 ./usr/share/mime/text/x-ldif.xml
9002-rw-r--r-- root root 3110 ./usr/share/mime/text/x-lilypond.xml
9003-rw-r--r-- root root 3063 ./usr/share/mime/text/x-literate-haskell.xml
9004-rw-r--r-- root root 3190 ./usr/share/mime/text/x-log.xml
9005-rw-r--r-- root root 2802 ./usr/share/mime/text/x-lua.xml
9006-rw-r--r-- root root 1200 ./usr/share/mime/text/x-makefile.xml
9007-rw-r--r-- root root 985 ./usr/share/mime/text/x-matlab.xml
9008-rw-r--r-- root root 1881 ./usr/share/mime/text/x-maven+xml.xml
9009-rw-r--r-- root root 3157 ./usr/share/mime/text/xmcd.xml
9010-rw-r--r-- root root 2231 ./usr/share/mime/text/x-meson.xml
9011-rw-r--r-- root root 3177 ./usr/share/mime/text/x-microdvd.xml
9012-rw-r--r-- root root 2799 ./usr/share/mime/text/x-moc.xml
9013-rw-r--r-- root root 2267 ./usr/share/mime/text/x-modelica.xml
9014-rw-r--r-- root root 957 ./usr/share/mime/text/x-mof.xml
9015-rw-r--r-- root root 3100 ./usr/share/mime/text/x-mpsub.xml
9016-rw-r--r-- root root 3359 ./usr/share/mime/text/x-mrml.xml
9017-rw-r--r-- root root 3496 ./usr/share/mime/text/x-ms-regedit.xml
9018-rw-r--r-- root root 1114 ./usr/share/mime/text/x-mup.xml
9019-rw-r--r-- root root 2801 ./usr/share/mime/text/x-nfo.xml
9020-rw-r--r-- root root 3537 ./usr/share/mime/text/x-objcsrc.xml
9021-rw-r--r-- root root 3076 ./usr/share/mime/text/x-ocaml.xml
9022-rw-r--r-- root root 2703 ./usr/share/mime/text/x-ocl.xml
9023-rw-r--r-- root root 2654 ./usr/share/mime/text/x-ooc.xml
9024-rw-r--r-- root root 1909 ./usr/share/mime/text/x-opencl-src.xml
9025-rw-r--r-- root root 3116 ./usr/share/mime/text/x-opml+xml.xml
9026-rw-r--r-- root root 3227 ./usr/share/mime/text/x-pascal.xml
9027-rw-r--r-- root root 3558 ./usr/share/mime/text/x-patch.xml
9028-rw-r--r-- root root 1829 ./usr/share/mime/text/x-python3.xml
9029-rw-r--r-- root root 3116 ./usr/share/mime/text/x-python.xml
9030-rw-r--r-- root root 2865 ./usr/share/mime/text/x-qml.xml
9031-rw-r--r-- root root 3185 ./usr/share/mime/text/x-readme.xml
9032-rw-r--r-- root root 3144 ./usr/share/mime/text/x-reject.xml
9033-rw-r--r-- root root 3198 ./usr/share/mime/text/x-rpm-spec.xml
9034-rw-r--r-- root root 1880 ./usr/share/mime/text/x-rst.xml
9035-rw-r--r-- root root 2443 ./usr/share/mime/text/x-sass.xml
9036-rw-r--r-- root root 2616 ./usr/share/mime/text/x-scala.xml
9037-rw-r--r-- root root 3324 ./usr/share/mime/text/x-scheme.xml
9038-rw-r--r-- root root 2573 ./usr/share/mime/text/x-scons.xml
9039-rw-r--r-- root root 1132 ./usr/share/mime/text/x-scss.xml
9040-rw-r--r-- root root 3114 ./usr/share/mime/text/x-setext.xml
9041-rw-r--r-- root root 2929 ./usr/share/mime/text/x-ssa.xml
9042-rw-r--r-- root root 3142 ./usr/share/mime/text/x-subviewer.xml
9043-rw-r--r-- root root 2665 ./usr/share/mime/text/x-svhdr.xml
9044-rw-r--r-- root root 2853 ./usr/share/mime/text/x-svsrc.xml
9045-rw-r--r-- root root 2364 ./usr/share/mime/text/x-systemd-unit.xml
9046-rw-r--r-- root root 2818 ./usr/share/mime/text/x-tcl.xml
9047-rw-r--r-- root root 3204 ./usr/share/mime/text/x-texinfo.xml
9048-rw-r--r-- root root 3092 ./usr/share/mime/text/x-tex.xml
9049-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-me.xml
9050-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-mm.xml
9051-rw-r--r-- root root 3580 ./usr/share/mime/text/x-troff-ms.xml
9052-rw-r--r-- root root 1811 ./usr/share/mime/text/x-twig.xml
9053-rw-r--r-- root root 3150 ./usr/share/mime/text/x-txt2tags.xml
9054-rw-r--r-- root root 3074 ./usr/share/mime/text/x-uil.xml
9055-rw-r--r-- root root 3061 ./usr/share/mime/text/x-uri.xml
9056-rw-r--r-- root root 2586 ./usr/share/mime/text/x-uuencode.xml
9057-rw-r--r-- root root 3062 ./usr/share/mime/text/x-vala.xml
9058-rw-r--r-- root root 2676 ./usr/share/mime/text/x-verilog.xml
9059-rw-r--r-- root root 2711 ./usr/share/mime/text/x-vhdl.xml
9060-rw-r--r-- root root 2710 ./usr/share/mime/text/x-xmi.xml
9061-rw-r--r-- root root 2956 ./usr/share/mime/text/x-xslfo.xml
9062-rw-r--r-- root root 1140 ./usr/share/mime/treemagic
9063-rw-r--r-- root root 17478 ./usr/share/mime/types
9064-rw-r--r-- root root 5 ./usr/share/mime/version
9065drwxr-xr-x root root 4096 ./usr/share/mime/video
9066-rw-r--r-- root root 3285 ./usr/share/mime/video/3gpp2.xml
9067-rw-r--r-- root root 3885 ./usr/share/mime/video/3gpp.xml
9068-rw-r--r-- root root 1021 ./usr/share/mime/video/annodex.xml
9069-rw-r--r-- root root 2734 ./usr/share/mime/video/dv.xml
9070-rw-r--r-- root root 2779 ./usr/share/mime/video/isivideo.xml
9071-rw-r--r-- root root 1888 ./usr/share/mime/video/mj2.xml
9072-rw-r--r-- root root 3455 ./usr/share/mime/video/mp2t.xml
9073-rw-r--r-- root root 3007 ./usr/share/mime/video/mp4.xml
9074-rw-r--r-- root root 3190 ./usr/share/mime/video/mpeg.xml
9075-rw-r--r-- root root 979 ./usr/share/mime/video/ogg.xml
9076-rw-r--r-- root root 3114 ./usr/share/mime/video/quicktime.xml
9077-rw-r--r-- root root 2948 ./usr/share/mime/video/vnd.mpegurl.xml
9078-rw-r--r-- root root 3172 ./usr/share/mime/video/vnd.rn-realvideo.xml
9079-rw-r--r-- root root 2913 ./usr/share/mime/video/vnd.vivo.xml
9080-rw-r--r-- root root 3006 ./usr/share/mime/video/wavelet.xml
9081-rw-r--r-- root root 2461 ./usr/share/mime/video/webm.xml
9082-rw-r--r-- root root 3073 ./usr/share/mime/video/x-anim.xml
9083-rw-r--r-- root root 2944 ./usr/share/mime/video/x-flic.xml
9084-rw-r--r-- root root 2995 ./usr/share/mime/video/x-flv.xml
9085-rw-r--r-- root root 2533 ./usr/share/mime/video/x-javafx.xml
9086-rw-r--r-- root root 2381 ./usr/share/mime/video/x-matroska-3d.xml
9087-rw-r--r-- root root 3095 ./usr/share/mime/video/x-matroska.xml
9088-rw-r--r-- root root 1841 ./usr/share/mime/video/x-mjpeg.xml
9089-rw-r--r-- root root 2935 ./usr/share/mime/video/x-mng.xml
9090-rw-r--r-- root root 3153 ./usr/share/mime/video/x-msvideo.xml
9091-rw-r--r-- root root 3200 ./usr/share/mime/video/x-ms-wmv.xml
9092-rw-r--r-- root root 2934 ./usr/share/mime/video/x-nsv.xml
9093-rw-r--r-- root root 2782 ./usr/share/mime/video/x-ogm+ogg.xml
9094-rw-r--r-- root root 2811 ./usr/share/mime/video/x-sgi-movie.xml
9095-rw-r--r-- root root 3102 ./usr/share/mime/video/x-theora+ogg.xml
9096drwxr-xr-x root root 4096 ./usr/share/mime/x-content
9097-rw-r--r-- root root 2504 ./usr/share/mime/x-content/audio-cdda.xml
9098-rw-r--r-- root root 2531 ./usr/share/mime/x-content/audio-dvd.xml
9099-rw-r--r-- root root 3388 ./usr/share/mime/x-content/audio-player.xml
9100-rw-r--r-- root root 2971 ./usr/share/mime/x-content/blank-bd.xml
9101-rw-r--r-- root root 2700 ./usr/share/mime/x-content/blank-cd.xml
9102-rw-r--r-- root root 2732 ./usr/share/mime/x-content/blank-dvd.xml
9103-rw-r--r-- root root 2889 ./usr/share/mime/x-content/blank-hddvd.xml
9104-rw-r--r-- root root 2640 ./usr/share/mime/x-content/ebook-reader.xml
9105-rw-r--r-- root root 2917 ./usr/share/mime/x-content/image-dcf.xml
9106-rw-r--r-- root root 2565 ./usr/share/mime/x-content/image-picturecd.xml
9107-rw-r--r-- root root 1123 ./usr/share/mime/x-content/ostree-repository.xml
9108-rw-r--r-- root root 2645 ./usr/share/mime/x-content/software.xml
9109-rw-r--r-- root root 2645 ./usr/share/mime/x-content/unix-software.xml
9110-rw-r--r-- root root 3122 ./usr/share/mime/x-content/video-bluray.xml
9111-rw-r--r-- root root 2627 ./usr/share/mime/x-content/video-dvd.xml
9112-rw-r--r-- root root 2977 ./usr/share/mime/x-content/video-hddvd.xml
9113-rw-r--r-- root root 2791 ./usr/share/mime/x-content/video-svcd.xml
9114-rw-r--r-- root root 2509 ./usr/share/mime/x-content/video-vcd.xml
9115-rw-r--r-- root root 2773 ./usr/share/mime/x-content/win32-software.xml
9116drwxr-xr-x root root 4096 ./usr/share/mime/x-epoc
9117-rw-r--r-- root root 2878 ./usr/share/mime/x-epoc/x-sisx-app.xml
9118-rw-r--r-- root root 1631 ./usr/share/mime/XMLnamespaces
9119drwxr-xr-x root root 4096 ./usr/share/misc
9120drwxr-xr-x root root 4096 ./usr/share/pkgconfig
9121-rw-r--r-- root root 328 ./usr/share/pkgconfig/bash-completion.pc
9122-rw-r--r-- root root 120 ./usr/share/pkgconfig/shared-mime-info.pc
9123-rw-r--r-- root root 90 ./usr/share/pkgconfig/udev.pc
9124-rw-r--r-- root root 384 ./usr/share/pkgconfig/xorg-macros.pc
9125-rw-r--r-- root root 213 ./usr/share/pkgconfig/xtrans.pc
9126drwxr-xr-x root root 4096 ./usr/share/ss
9127-rw-r--r-- root root 1551 ./usr/share/ss/ct_c.awk
9128-rw-r--r-- root root 2290 ./usr/share/ss/ct_c.sed
9129drwxr-xr-x root root 4096 ./usr/share/tabset
9130-rw-r--r-- root root 135 ./usr/share/tabset/std
9131-rw-r--r-- root root 95 ./usr/share/tabset/stdcrt
9132-rw-r--r-- root root 160 ./usr/share/tabset/vt100
9133-rw-r--r-- root root 64 ./usr/share/tabset/vt300
9134drwxr-xr-x root root 4096 ./usr/share/udhcpc
9135-rwxr-xr-x root root 49 ./usr/share/udhcpc/default.script
9136drwxr-xr-x root root 4096 ./usr/share/wayland
9137-rw-r--r-- root root 1266 ./usr/share/wayland/wayland.dtd
9138-rw-r--r-- root root 292 ./usr/share/wayland/wayland-scanner.mk
9139-rw-r--r-- root root 131466 ./usr/share/wayland/wayland.xml
9140drwxr-xr-x root root 4096 ./usr/share/X11
9141-rw-r--r-- root root 1723 ./usr/share/X11/Xcms.txt
9142-rw-r--r-- root root 42077 ./usr/share/X11/XErrorDB
9143drwxr-xr-x root root 4096 ./usr/share/xcb
9144-rw-r--r-- root root 1705 ./usr/share/xcb/bigreq.xml
9145-rw-r--r-- root root 3473 ./usr/share/xcb/composite.xml
9146-rw-r--r-- root root 3299 ./usr/share/xcb/damage.xml
9147-rw-r--r-- root root 3155 ./usr/share/xcb/dpms.xml
9148-rw-r--r-- root root 9488 ./usr/share/xcb/dri2.xml
9149-rw-r--r-- root root 5638 ./usr/share/xcb/dri3.xml
9150-rw-r--r-- root root 1863 ./usr/share/xcb/ge.xml
9151-rw-r--r-- root root 45351 ./usr/share/xcb/glx.xml
9152-rw-r--r-- root root 7335 ./usr/share/xcb/present.xml
9153-rw-r--r-- root root 30366 ./usr/share/xcb/randr.xml
9154-rw-r--r-- root root 5924 ./usr/share/xcb/record.xml
9155-rw-r--r-- root root 23693 ./usr/share/xcb/render.xml
9156-rw-r--r-- root root 5912 ./usr/share/xcb/res.xml
9157-rw-r--r-- root root 6573 ./usr/share/xcb/screensaver.xml
9158-rw-r--r-- root root 6039 ./usr/share/xcb/shape.xml
9159-rw-r--r-- root root 4778 ./usr/share/xcb/shm.xml
9160-rw-r--r-- root root 8390 ./usr/share/xcb/sync.xml
9161-rw-r--r-- root root 16132 ./usr/share/xcb/xcb.xsd
9162-rw-r--r-- root root 1162 ./usr/share/xcb/xc_misc.xml
9163-rw-r--r-- root root 2958 ./usr/share/xcb/xevie.xml
9164-rw-r--r-- root root 5900 ./usr/share/xcb/xf86dri.xml
9165-rw-r--r-- root root 14673 ./usr/share/xcb/xf86vidmode.xml
9166-rw-r--r-- root root 12074 ./usr/share/xcb/xfixes.xml
9167-rw-r--r-- root root 3453 ./usr/share/xcb/xinerama.xml
9168-rw-r--r-- root root 103534 ./usr/share/xcb/xinput.xml
9169-rw-r--r-- root root 91919 ./usr/share/xcb/xkb.xml
9170-rw-r--r-- root root 11134 ./usr/share/xcb/xprint.xml
9171-rw-r--r-- root root 206253 ./usr/share/xcb/xproto.xml
9172-rw-r--r-- root root 8260 ./usr/share/xcb/xselinux.xml
9173-rw-r--r-- root root 3968 ./usr/share/xcb/xtest.xml
9174-rw-r--r-- root root 5363 ./usr/share/xcb/xvmc.xml
9175-rw-r--r-- root root 16061 ./usr/share/xcb/xv.xml
9176drwxr-xr-x root root 4096 ./usr/share/xml
9177drwxr-xr-x root root 4096 ./usr/share/xml/dbus-1
9178-rw-r--r-- root root 1907 ./usr/share/xml/dbus-1/busconfig.dtd
9179-rw-r--r-- root root 1226 ./usr/share/xml/dbus-1/introspect.dtd
9180drwxr-xr-x root root 4096 ./usr/share/xml/fontconfig
9181-rw-r--r-- root root 7250 ./usr/share/xml/fontconfig/fonts.dtd
9182drwxr-xr-x root root 4096 ./usr/src
9183drwxr-xr-x root root 4096 ./usr/x86_64-poky-linux
9184drwxr-xr-x root root 4096 ./usr/x86_64-poky-linux/bin
9185lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/ar -> ../../bin/x86_64-poky-linux-ar
9186lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/as -> ../../bin/x86_64-poky-linux-as
9187lrwxrwxrwx root root 34 ./usr/x86_64-poky-linux/bin/ld.bfd -> ../../bin/x86_64-poky-linux-ld.bfd
9188lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/ld -> ../../bin/x86_64-poky-linux-ld
9189lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/ld.gold -> ../../bin/x86_64-poky-linux-ld.gold
9190lrwxrwxrwx root root 30 ./usr/x86_64-poky-linux/bin/nm -> ../../bin/x86_64-poky-linux-nm
9191lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/objcopy -> ../../bin/x86_64-poky-linux-objcopy
9192lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/objdump -> ../../bin/x86_64-poky-linux-objdump
9193lrwxrwxrwx root root 34 ./usr/x86_64-poky-linux/bin/ranlib -> ../../bin/x86_64-poky-linux-ranlib
9194lrwxrwxrwx root root 35 ./usr/x86_64-poky-linux/bin/readelf -> ../../bin/x86_64-poky-linux-readelf
9195lrwxrwxrwx root root 33 ./usr/x86_64-poky-linux/bin/strip -> ../../bin/x86_64-poky-linux-strip
9196drwxr-xr-x root root 4096 ./var
9197drwxr-xr-x root root 4096 ./var/backups
9198drwxr-xr-x root root 4096 ./var/cache
9199drwxr-xr-x root root 4096 ./var/cache/fontconfig
9200drwx------ root root 4096 ./var/cache/ldconfig
9201-rw------- root root 9934 ./var/cache/ldconfig/aux-cache
9202drwxr-xr-x root root 4096 ./var/db
9203-rwxr-xr-x root root 4453 ./var/db/makedbs.sh
9204-rw-r--r-- root root 5351 ./var/db/Makefile
9205drwxr-xr-x root root 4096 ./var/lib
9206drwxr-xr-x root root 4096 ./var/lib/arpd
9207drwxr-xr-x messagebus messagebus 4096 ./var/lib/dbus
9208drwxr-xr-x root root 4096 ./var/lib/misc
9209drwxr-xr-x root root 4096 ./var/lib/urandom
9210drwxr-xr-x root root 4096 ./var/local
9211lrwxrwxrwx root root 11 ./var/lock -> ../run/lock
9212lrwxrwxrwx root root 12 ./var/log -> volatile/log
9213lrwxrwxrwx root root 6 ./var/run -> ../run
9214drwxr-xr-x root root 4096 ./var/spool
9215drwxrwxr-x root mail 4096 ./var/spool/mail
9216lrwxrwxrwx root root 12 ./var/tmp -> volatile/tmp
9217drwxr-xr-x root root 4096 ./var/volatile
diff --git a/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py b/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
index d4664bd0df..802a91a488 100644
--- a/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
+++ b/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
@@ -5,6 +5,7 @@
5import os 5import os
6from oeqa.selftest.case import OESelftestTestCase 6from oeqa.selftest.case import OESelftestTestCase
7import tempfile 7import tempfile
8import operator
8from oeqa.utils.commands import get_bb_var 9from oeqa.utils.commands import get_bb_var
9 10
10class TestBlobParsing(OESelftestTestCase): 11class TestBlobParsing(OESelftestTestCase):
@@ -97,3 +98,48 @@ class TestBlobParsing(OESelftestTestCase):
97 var_changes[x.fieldname] = (oldvalue, x.newvalue) 98 var_changes[x.fieldname] = (oldvalue, x.newvalue)
98 99
99 self.assertEqual(defaultmap, var_changes, "Defaults not set properly") 100 self.assertEqual(defaultmap, var_changes, "Defaults not set properly")
101
102class TestFileListCompare(OESelftestTestCase):
103
104 def test_compare_file_lists(self):
105 # Test that a directory tree that moves location such as /lib/modules/5.4.40-yocto-standard -> /lib/modules/5.4.43-yocto-standard
106 # is correctly identified as a move
107 from oe.buildhistory_analysis import compare_file_lists, FileChange
108
109 with open(self.tc.files_dir + "/buildhistory_filelist1.txt", "r") as f:
110 filelist1 = f.readlines()
111 with open(self.tc.files_dir + "/buildhistory_filelist2.txt", "r") as f:
112 filelist2 = f.readlines()
113
114 expectedResult = [
115 '/lib/libcap.so.2 changed symlink target from libcap.so.2.33 to libcap.so.2.34',
116 '/lib/libcap.so.2.33 moved to /lib/libcap.so.2.34',
117 '/lib/modules/5.4.40-yocto-standard moved to /lib/modules/5.4.43-yocto-standard',
118 '/lib/modules/5.4.43-yocto-standard/modules.builtin.alias.bin was added',
119 '/usr/bin/gawk-5.0.1 moved to /usr/bin/gawk-5.1.0',
120 '/usr/lib/libbtrfsutil.so changed symlink target from libbtrfsutil.so.1.1.1 to libbtrfsutil.so.1.2.0',
121 '/usr/lib/libbtrfsutil.so.1 changed symlink target from libbtrfsutil.so.1.1.1 to libbtrfsutil.so.1.2.0',
122 '/usr/lib/libbtrfsutil.so.1.1.1 moved to /usr/lib/libbtrfsutil.so.1.2.0',
123 '/usr/lib/libkmod.so changed symlink target from libkmod.so.2.3.4 to libkmod.so.2.3.5',
124 '/usr/lib/libkmod.so.2 changed symlink target from libkmod.so.2.3.4 to libkmod.so.2.3.5',
125 '/usr/lib/libkmod.so.2.3.4 moved to /usr/lib/libkmod.so.2.3.5',
126 '/usr/lib/libpixman-1.so.0 changed symlink target from libpixman-1.so.0.38.4 to libpixman-1.so.0.40.0',
127 '/usr/lib/libpixman-1.so.0.38.4 moved to /usr/lib/libpixman-1.so.0.40.0',
128 '/usr/lib/opkg/alternatives/rtcwake was added',
129 '/usr/lib/python3.8/site-packages/PyGObject-3.34.0.egg-info moved to /usr/lib/python3.8/site-packages/PyGObject-3.36.1.egg-info',
130 '/usr/lib/python3.8/site-packages/btrfsutil-1.1.1-py3.8.egg-info moved to /usr/lib/python3.8/site-packages/btrfsutil-1.2.0-py3.8.egg-info',
131 '/usr/lib/python3.8/site-packages/pycairo-1.19.0.egg-info moved to /usr/lib/python3.8/site-packages/pycairo-1.19.1.egg-info',
132 '/usr/sbin/rtcwake changed type from file to symlink',
133 '/usr/sbin/rtcwake changed permissions from rwxr-xr-x to rwxrwxrwx',
134 '/usr/sbin/rtcwake changed symlink target from None to /usr/sbin/rtcwake.util-linux',
135 '/usr/sbin/rtcwake.util-linux was added'
136 ]
137
138 result = compare_file_lists(filelist1, filelist2)
139 rendered = []
140 for entry in sorted(result, key=operator.attrgetter("path")):
141 rendered.append(str(entry))
142
143 self.maxDiff = None
144 self.assertCountEqual(rendered, expectedResult)
145