PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: symtable.py Size: 10.13 KB
//opt/alt/python311/lib64/python3.11/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

__all__ = ["symtable", "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 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 values returned are 'class', 'module' and
        'function'.
        """
        if self._table.type == _symtable.TYPE_MODULE:
            return "module"
        if self._table.type == _symtable.TYPE_FUNCTION:
            return "function"
        if self._table.type == _symtable.TYPE_CLASS:
            return "class"
        assert self._table.type in (1, 2, 3), \
               "unexpected type: {0}".format(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 = {}
            for st in self._table.children:
                d[st.name] = 1
            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):
        return "<symbol {0!r}>".format(self.__name)

    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]

if __name__ == "__main__":
    import os, sys
    with open(sys.argv[0]) as f:
        src = f.read()
    mod = symtable(src, os.path.split(sys.argv[0])[1], "exec")
    for ident in mod.get_identifiers():
        info = mod.lookup(ident)
        print(info, info.is_local(), info.is_namespace())

Directory Contents

Dirs: 32 × Files: 169

Name Size Perms Modified Actions
asyncio DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
ctypes DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
curses DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
dbm DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
distutils DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
email DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
encodings DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
ensurepip DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
html DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
http DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
importlib DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
json DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
lib2to3 DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
logging DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
re DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
sqlite3 DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
tomllib DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
unittest DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
urllib DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
venv DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
wsgiref DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
xml DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
xmlrpc DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
zoneinfo DIR
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
- drwxr-xr-x 2025-04-06 18:15:10
Edit Download
6.38 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
33.41 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
500 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
97.93 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
60.00 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.30 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
19.83 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
20.55 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
31.70 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
3.06 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.57 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
24.15 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
33.63 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
12.13 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.37 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
14.52 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.37 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
36.28 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.77 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
3.97 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
19.78 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
54.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
26.77 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
129 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
8.48 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.50 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
6.21 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
3.82 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
15.65 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
57.10 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
89.68 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
320 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
81.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
28.23 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
103.81 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
77.72 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
9.94 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
15.35 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.86 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
28.00 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
34.98 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
37.51 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
4.86 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.31 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.85 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
20.82 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
8.53 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
9.43 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
23.51 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.49 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
22.48 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.54 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
53.58 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
3.86 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
120.53 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
4.22 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
73.32 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
1.04 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
13.61 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.52 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
77.24 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
12.97 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
76.98 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
9.15 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
22.42 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
23.14 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
6.77 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
40.12 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
29.51 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
2.82 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.11 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.20 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.71 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
58.95 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
38.60 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
47.43 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
62.68 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
63.61 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
91.66 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
8.77 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
24.06 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
41.30 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
27.69 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
14.84 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
16.61 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
24.01 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
22.36 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
28.67 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
6.17 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.13 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
110.02 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
7.65 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.23 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.11 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
31.41 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.31 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.64 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
12.85 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
6.20 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
1.98 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
19.21 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
8.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
13.18 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
55.19 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
2.44 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
22.45 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
30.44 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
44.37 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
7.27 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
36.46 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
26.94 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
231 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
232 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
229 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
53.03 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
46.59 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.51 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
12.61 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
257 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
86.65 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
18.05 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
10.13 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
29.60 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
11.05 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
103.86 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
22.75 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
31.13 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
19.26 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
1003 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
56.87 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
13.21 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
2.33 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
25.72 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
28.51 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
39.60 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
17.62 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
879 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download
9.83 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
118.12 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.17 KB lrw-r--r-- 2024-04-17 18:53:50
Edit Download
26.95 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
20.62 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
21.31 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
21.01 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
24.56 KB lrwxr-xr-x 2024-04-02 08:25:04
Edit Download
5.84 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
7.36 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
91.46 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
30.17 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
3.31 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
2.61 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
29.49 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
8.56 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.55 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
14.31 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
21.51 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
223.83 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
91.99 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
6.04 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
3.05 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
24.58 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
56.44 KB lrw-r--r-- 2024-04-17 18:33:53
Edit Download
57.20 KB lrw-r--r-- 2024-04-17 18:53:00
Edit Download
7.05 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.75 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
5.10 KB lrw-r--r-- 2024-04-02 08:25:04
Edit Download
227 B lrw-r--r-- 2024-04-02 08:25:04
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI