PHP 8.2.30
Preview: symtable.py Size: 13.87 KB
//opt/alt/python313/lib64/python3.13/symtable.py

"""Interface to the compiler's internal symbol tables"""

import _symtable
from _symtable import (USE, DEF_GLOBAL, DEF_NONLOCAL, DEF_LOCAL, DEF_PARAM,
     DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF, SCOPE_MASK, FREE,
     LOCAL, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL)

import weakref
from enum import StrEnum

__all__ = ["symtable", "SymbolTableType", "SymbolTable", "Class", "Function", "Symbol"]

def symtable(code, filename, compile_type):
    """ Return the toplevel *SymbolTable* for the source code.

    *filename* is the name of the file with the code
    and *compile_type* is the *compile()* mode argument.
    """
    top = _symtable.symtable(code, filename, compile_type)
    return _newSymbolTable(top, filename)

class SymbolTableFactory:
    def __init__(self):
        self.__memo = weakref.WeakValueDictionary()

    def new(self, table, filename):
        if table.type == _symtable.TYPE_FUNCTION:
            return Function(table, filename)
        if table.type == _symtable.TYPE_CLASS:
            return Class(table, filename)
        return SymbolTable(table, filename)

    def __call__(self, table, filename):
        key = table, filename
        obj = self.__memo.get(key, None)
        if obj is None:
            obj = self.__memo[key] = self.new(table, filename)
        return obj

_newSymbolTable = SymbolTableFactory()


class SymbolTableType(StrEnum):
    MODULE = "module"
    FUNCTION = "function"
    CLASS = "class"
    ANNOTATION = "annotation"
    TYPE_ALIAS = "type alias"
    TYPE_PARAMETERS = "type parameters"
    TYPE_VARIABLE = "type variable"


class SymbolTable:

    def __init__(self, raw_table, filename):
        self._table = raw_table
        self._filename = filename
        self._symbols = {}

    def __repr__(self):
        if self.__class__ == SymbolTable:
            kind = ""
        else:
            kind = "%s " % self.__class__.__name__

        if self._table.name == "top":
            return "<{0}SymbolTable for module {1}>".format(kind, self._filename)
        else:
            return "<{0}SymbolTable for {1} in {2}>".format(kind,
                                                            self._table.name,
                                                            self._filename)

    def get_type(self):
        """Return the type of the symbol table.

        The value returned is one of the values in
        the ``SymbolTableType`` enumeration.
        """
        if self._table.type == _symtable.TYPE_MODULE:
            return SymbolTableType.MODULE
        if self._table.type == _symtable.TYPE_FUNCTION:
            return SymbolTableType.FUNCTION
        if self._table.type == _symtable.TYPE_CLASS:
            return SymbolTableType.CLASS
        if self._table.type == _symtable.TYPE_ANNOTATION:
            return SymbolTableType.ANNOTATION
        if self._table.type == _symtable.TYPE_TYPE_ALIAS:
            return SymbolTableType.TYPE_ALIAS
        if self._table.type == _symtable.TYPE_TYPE_PARAMETERS:
            return SymbolTableType.TYPE_PARAMETERS
        if self._table.type == _symtable.TYPE_TYPE_VARIABLE:
            return SymbolTableType.TYPE_VARIABLE
        assert False, f"unexpected type: {self._table.type}"

    def get_id(self):
        """Return an identifier for the table.
        """
        return self._table.id

    def get_name(self):
        """Return the table's name.

        This corresponds to the name of the class, function
        or 'top' if the table is for a class, function or
        global respectively.
        """
        return self._table.name

    def get_lineno(self):
        """Return the number of the first line in the
        block for the table.
        """
        return self._table.lineno

    def is_optimized(self):
        """Return *True* if the locals in the table
        are optimizable.
        """
        return bool(self._table.type == _symtable.TYPE_FUNCTION)

    def is_nested(self):
        """Return *True* if the block is a nested class
        or function."""
        return bool(self._table.nested)

    def has_children(self):
        """Return *True* if the block has nested namespaces.
        """
        return bool(self._table.children)

    def get_identifiers(self):
        """Return a view object containing the names of symbols in the table.
        """
        return self._table.symbols.keys()

    def lookup(self, name):
        """Lookup a *name* in the table.

        Returns a *Symbol* instance.
        """
        sym = self._symbols.get(name)
        if sym is None:
            flags = self._table.symbols[name]
            namespaces = self.__check_children(name)
            module_scope = (self._table.name == "top")
            sym = self._symbols[name] = Symbol(name, flags, namespaces,
                                               module_scope=module_scope)
        return sym

    def get_symbols(self):
        """Return a list of *Symbol* instances for
        names in the table.
        """
        return [self.lookup(ident) for ident in self.get_identifiers()]

    def __check_children(self, name):
        return [_newSymbolTable(st, self._filename)
                for st in self._table.children
                if st.name == name]

    def get_children(self):
        """Return a list of the nested symbol tables.
        """
        return [_newSymbolTable(st, self._filename)
                for st in self._table.children]


class Function(SymbolTable):

    # Default values for instance variables
    __params = None
    __locals = None
    __frees = None
    __globals = None
    __nonlocals = None

    def __idents_matching(self, test_func):
        return tuple(ident for ident in self.get_identifiers()
                     if test_func(self._table.symbols[ident]))

    def get_parameters(self):
        """Return a tuple of parameters to the function.
        """
        if self.__params is None:
            self.__params = self.__idents_matching(lambda x:x & DEF_PARAM)
        return self.__params

    def get_locals(self):
        """Return a tuple of locals in the function.
        """
        if self.__locals is None:
            locs = (LOCAL, CELL)
            test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs
            self.__locals = self.__idents_matching(test)
        return self.__locals

    def get_globals(self):
        """Return a tuple of globals in the function.
        """
        if self.__globals is None:
            glob = (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
            test = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) in glob
            self.__globals = self.__idents_matching(test)
        return self.__globals

    def get_nonlocals(self):
        """Return a tuple of nonlocals in the function.
        """
        if self.__nonlocals is None:
            self.__nonlocals = self.__idents_matching(lambda x:x & DEF_NONLOCAL)
        return self.__nonlocals

    def get_frees(self):
        """Return a tuple of free variables in the function.
        """
        if self.__frees is None:
            is_free = lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) == FREE
            self.__frees = self.__idents_matching(is_free)
        return self.__frees


class Class(SymbolTable):

    __methods = None

    def get_methods(self):
        """Return a tuple of methods declared in the class.
        """
        if self.__methods is None:
            d = {}

            def is_local_symbol(ident):
                flags = self._table.symbols.get(ident, 0)
                return ((flags >> SCOPE_OFF) & SCOPE_MASK) == LOCAL

            for st in self._table.children:
                # pick the function-like symbols that are local identifiers
                if is_local_symbol(st.name):
                    match st.type:
                        case _symtable.TYPE_FUNCTION:
                            # generators are of type TYPE_FUNCTION with a ".0"
                            # parameter as a first parameter (which makes them
                            # distinguishable from a function named 'genexpr')
                            if st.name == 'genexpr' and '.0' in st.varnames:
                                continue
                            d[st.name] = 1
                        case _symtable.TYPE_TYPE_PARAMETERS:
                            # Get the function-def block in the annotation
                            # scope 'st' with the same identifier, if any.
                            scope_name = st.name
                            for c in st.children:
                                if c.name == scope_name and c.type == _symtable.TYPE_FUNCTION:
                                    # A generic generator of type TYPE_FUNCTION
                                    # cannot be a direct child of 'st' (but it
                                    # can be a descendant), e.g.:
                                    #
                                    # class A:
                                    #   type genexpr[genexpr] = (x for x in [])
                                    assert scope_name != 'genexpr' or '.0' not in c.varnames
                                    d[scope_name] = 1
                                    break
            self.__methods = tuple(d)
        return self.__methods


class Symbol:

    def __init__(self, name, flags, namespaces=None, *, module_scope=False):
        self.__name = name
        self.__flags = flags
        self.__scope = (flags >> SCOPE_OFF) & SCOPE_MASK # like PyST_GetScope()
        self.__namespaces = namespaces or ()
        self.__module_scope = module_scope

    def __repr__(self):
        flags_str = '|'.join(self._flags_str())
        return f'<symbol {self.__name!r}: {self._scope_str()}, {flags_str}>'

    def _scope_str(self):
        return _scopes_value_to_name.get(self.__scope) or str(self.__scope)

    def _flags_str(self):
        for flagname, flagvalue in _flags:
            if self.__flags & flagvalue == flagvalue:
                yield flagname

    def get_name(self):
        """Return a name of a symbol.
        """
        return self.__name

    def is_referenced(self):
        """Return *True* if the symbol is used in
        its block.
        """
        return bool(self.__flags & _symtable.USE)

    def is_parameter(self):
        """Return *True* if the symbol is a parameter.
        """
        return bool(self.__flags & DEF_PARAM)

    def is_global(self):
        """Return *True* if the symbol is global.
        """
        return bool(self.__scope in (GLOBAL_IMPLICIT, GLOBAL_EXPLICIT)
                    or (self.__module_scope and self.__flags & DEF_BOUND))

    def is_nonlocal(self):
        """Return *True* if the symbol is nonlocal."""
        return bool(self.__flags & DEF_NONLOCAL)

    def is_declared_global(self):
        """Return *True* if the symbol is declared global
        with a global statement."""
        return bool(self.__scope == GLOBAL_EXPLICIT)

    def is_local(self):
        """Return *True* if the symbol is local.
        """
        return bool(self.__scope in (LOCAL, CELL)
                    or (self.__module_scope and self.__flags & DEF_BOUND))

    def is_annotated(self):
        """Return *True* if the symbol is annotated.
        """
        return bool(self.__flags & DEF_ANNOT)

    def is_free(self):
        """Return *True* if a referenced symbol is
        not assigned to.
        """
        return bool(self.__scope == FREE)

    def is_imported(self):
        """Return *True* if the symbol is created from
        an import statement.
        """
        return bool(self.__flags & DEF_IMPORT)

    def is_assigned(self):
        """Return *True* if a symbol is assigned to."""
        return bool(self.__flags & DEF_LOCAL)

    def is_namespace(self):
        """Returns *True* if name binding introduces new namespace.

        If the name is used as the target of a function or class
        statement, this will be true.

        Note that a single name can be bound to multiple objects.  If
        is_namespace() is true, the name may also be bound to other
        objects, like an int or list, that does not introduce a new
        namespace.
        """
        return bool(self.__namespaces)

    def get_namespaces(self):
        """Return a list of namespaces bound to this name"""
        return self.__namespaces

    def get_namespace(self):
        """Return the single namespace bound to this name.

        Raises ValueError if the name is bound to multiple namespaces
        or no namespace.
        """
        if len(self.__namespaces) == 0:
            raise ValueError("name is not bound to any namespaces")
        elif len(self.__namespaces) > 1:
            raise ValueError("name is bound to multiple namespaces")
        else:
            return self.__namespaces[0]


_flags = [('USE', USE)]
_flags.extend(kv for kv in globals().items() if kv[0].startswith('DEF_'))
_scopes_names = ('FREE', 'LOCAL', 'GLOBAL_IMPLICIT', 'GLOBAL_EXPLICIT', 'CELL')
_scopes_value_to_name = {globals()[n]: n for n in _scopes_names}


def main(args):
    import sys
    def print_symbols(table, level=0):
        indent = '    ' * level
        nested = "nested " if table.is_nested() else ""
        if table.get_type() == 'module':
            what = f'from file {table._filename!r}'
        else:
            what = f'{table.get_name()!r}'
        print(f'{indent}symbol table for {nested}{table.get_type()} {what}:')
        for ident in table.get_identifiers():
            symbol = table.lookup(ident)
            flags = ', '.join(symbol._flags_str()).lower()
            print(f'    {indent}{symbol._scope_str().lower()} symbol {symbol.get_name()!r}: {flags}')
        print()

        for table2 in table.get_children():
            print_symbols(table2, level + 1)

    for filename in args or ['-']:
        if filename == '-':
            src = sys.stdin.read()
            filename = '<stdin>'
        else:
            with open(filename, 'rb') as f:
                src = f.read()
        mod = symtable(src, filename, 'exec')
        print_symbols(mod)


if __name__ == "__main__":
    import sys
    main(sys.argv[1:])

Directory Contents

Dirs: 34 × Files: 154

Name Size Perms Modified Actions
asyncio DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:09:23
Edit Download
ctypes DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
curses DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
dbm DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
email DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
encodings DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
ensurepip DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
html DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
http DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
importlib DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
json DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
logging DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
pathlib DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
re DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
sqlite3 DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
sysconfig DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
tomllib DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
unittest DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
urllib DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
venv DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
wsgiref DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
xml DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
xmlrpc DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
zipfile DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
zoneinfo DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
_pyrepl DIR
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
- drwxr-xr-x 2026-02-10 08:06:26
Edit Download
6.38 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
500 B lrw-r--r-- 2026-01-10 10:38:56
Edit Download
99.28 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
63.81 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
21.54 KB lrwxr-xr-x 2026-01-10 10:38:56
Edit Download
35.25 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
3.34 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
11.69 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
25.47 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
14.96 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
12.86 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
36.11 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
5.69 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
3.97 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
20.18 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
52.57 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
27.15 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
129 B lrw-r--r-- 2026-01-10 10:39:00
Edit Download
8.76 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
7.44 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
6.48 KB lrwxr-xr-x 2026-01-10 10:38:55
Edit Download
18.73 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
63.03 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
268 B lrw-r--r-- 2026-01-10 10:39:01
Edit Download
2.73 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
81.41 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
40.00 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
106.85 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
83.59 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
10.40 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
15.35 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
6.04 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
39.15 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
33.92 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
38.15 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
6.10 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
7.31 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
6.09 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
21.03 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
19.44 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
9.42 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
24.06 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
9.22 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
22.48 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
7.54 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
53.07 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
125.63 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
3.50 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
79.74 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
1.05 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
13.49 KB lrw-r--r-- 2025-12-05 16:06:33
Edit Download
7.11 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
77.18 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
13.08 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
79.73 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
23.29 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
23.23 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
6.87 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
30.16 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
2.32 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
11.49 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
2.76 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
10.72 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
58.95 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
40.65 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
89.84 KB lrwxr-xr-x 2026-01-10 10:38:56
Edit Download
65.39 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
91.85 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
17.85 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
46.25 KB lrwxr-xr-x 2026-01-10 10:38:56
Edit Download
29.33 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
14.26 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
17.81 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
23.59 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
22.61 KB lrwxr-xr-x 2026-01-10 10:38:56
Edit Download
28.61 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
5.99 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
11.13 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
107.58 KB lrwxr-xr-x 2026-01-10 10:38:56
Edit Download
7.65 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
13.14 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
7.03 KB lrwxr-xr-x 2026-01-10 10:39:00
Edit Download
36.14 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
7.88 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
7.73 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
12.58 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
6.20 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
1.94 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
19.00 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
8.60 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
13.04 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
56.12 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
2.44 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
24.96 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
42.90 KB lrwxr-xr-x 2026-01-10 10:38:55
Edit Download
36.87 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
27.41 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
231 B lrw-r--r-- 2026-01-10 10:38:55
Edit Download
232 B lrw-r--r-- 2026-01-10 10:38:55
Edit Download
229 B lrw-r--r-- 2026-01-10 10:38:56
Edit Download
51.47 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
6.00 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
60.72 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
11.51 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
12.61 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
257 B lrw-r--r-- 2026-01-10 10:38:56
Edit Download
88.70 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
13.87 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
11.27 KB lrwxr-xr-x 2026-01-10 10:39:00
Edit Download
111.74 KB lrwxr-xr-x 2026-01-10 10:38:55
Edit Download
31.65 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
19.49 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
1003 B lrw-r--r-- 2026-01-10 10:38:56
Edit Download
54.05 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
13.16 KB lrwxr-xr-x 2026-01-10 10:38:55
Edit Download
2.43 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
21.06 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
29.03 KB lrwxr-xr-x 2026-01-10 10:38:55
Edit Download
65.00 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
17.62 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
1.99 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
10.94 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
130.14 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
28.77 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
26.44 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
22.71 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
21.01 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
23.73 KB lrwxr-xr-x 2026-01-10 10:39:00
Edit Download
8.42 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
32.12 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
3.93 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
6.90 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
2.20 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
31.85 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
3.00 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
8.53 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
5.55 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
2.61 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
14.31 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
9.05 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
21.51 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
89.83 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
222.19 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
91.61 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
11.55 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
6.04 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
3.05 KB lrw-r--r-- 2026-01-10 10:38:56
Edit Download
33.92 KB lrw-r--r-- 2026-01-10 10:39:00
Edit Download
65.88 KB lrw-r--r-- 2026-01-10 10:39:50
Edit Download
65.90 KB lrw-r--r-- 2026-01-10 10:43:38
Edit Download
4.26 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
5.75 KB lrw-r--r-- 2026-01-10 10:38:55
Edit Download
5.10 KB lrw-r--r-- 2026-01-10 10:39:01
Edit Download
227 B lrw-r--r-- 2026-01-10 10:39:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).