%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python3/dist-packages/systemd/__pycache__/
Upload File :
Create Path :
Current File : //lib/python3/dist-packages/systemd/__pycache__/journal.cpython-312.pyc

�

���bTZ���ddlmZddlZddlZddlZddlZ	ddl
ZddlZ
ddlmZmZmZmZmZmZmZmZddlmZmZmZddlmZmZmZmZm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&ddl'm(Z)ejTdk\rdd	lm+Z+ne,Z+d
�Z-d�Z.	ejj_�ja�jbZ2d�Z4d
�Z5d�Z6ejTdk\rd�Z7nejpZ7ide7�de7�de7�de9�de9�de9�de9�de9�de9�de9�de9�de9�de9�de9�de9�de9�d e9�id!e9�d"e9�d#e9�d$e9�d%e5�d&e4�d'e.�d(e-�d)e6�d*e:�d+e9�d,e9�d-e9�d.e9�d/e9�d0e5��Z;e<d1�Z=d2�Z>Gd3�d4e�Z?d5�Z@d6�ZA		d<d7�ZBded8fd9�ZCGd:�d;e
j��ZEy#e3$rdZ2Y��wxYw)=�)�divisionN)�	LOG_EMERG�	LOG_ALERT�LOG_CRIT�LOG_ERR�LOG_WARNING�
LOG_NOTICE�LOG_INFO�	LOG_DEBUG�)�__version__�sendv�	stream_fd)�_Reader�NOP�APPEND�
INVALIDATE�
LOCAL_ONLY�RUNTIME_ONLY�SYSTEM�SYSTEM_ONLY�CURRENT_USER�OS_ROOT�_get_catalog)�id128��)�	Monotonicc�x�ttj|d��tj|d��f�S)Nr��microsecondsr)�bytes)r�	_datetime�	timedelta�_uuid�UUID)�ms �1/usr/lib/python3/dist-packages/systemd/journal.py�_convert_monotonicr).s5���i�)�)�q��t�<��j�j�q��t�,�.�/�/�c�@�tjt|���S)Nr )r#r$�int��ss r(�_convert_source_monotonicr/3s�����C��F�3�3r*c�P�tjj|dzt�S�N�@B)r#�datetime�
fromtimestamp�_LOCAL_TIMEZONE)�ts r(�_convert_realtimer7;s�����+�+�A��K��I�Ir*c�b�tjjt|�dzt�Sr1)r#r3r4r,r5r-s r(�_convert_timestampr9>s$�����+�+�C��F�W�,<�o�N�Nr*c��|S�N�)�xs r(�_convert_trivialr>Bs���Hr*c�H�tj|j��Sr;)r%r&�decoder-s r(�
_convert_uuidrAFs���z�z�!�(�(�*�%�%r*�
MESSAGE_ID�_MACHINE_ID�_BOOT_ID�PRIORITY�LEADER�
SESSION_ID�USERSPACE_USEC�INITRD_USEC�KERNEL_USEC�_UID�_GID�_PID�SYSLOG_FACILITY�
SYSLOG_PID�_AUDIT_SESSION�_AUDIT_LOGINUID�_SYSTEMD_SESSION�_SYSTEMD_OWNER_UID�	CODE_LINE�ERRNO�EXIT_STATUS�_SOURCE_REALTIME_TIMESTAMP�__REALTIME_TIMESTAMP�_SOURCE_MONOTONIC_TIMESTAMP�__MONOTONIC_TIMESTAMP�__CURSOR�COREDUMP�COREDUMP_PID�COREDUMP_UID�COREDUMP_GID�COREDUMP_SESSION�COREDUMP_SIGNAL�COREDUMP_TIMESTAMP�%ABCDEFGHIJKLMNOPQRTSUVWXYZ_0123456789c�(�t|�tz
Sr;)�set�_IDENT_CHARACTERr-s r(�_valid_field_namergrs���A��)�)�*�*r*c����eZdZdZd�fd�	Zd�Zd�Zd�Zd�Ze	jdkreZ�fd�Zd�fd	�	Z
dd
�Z�fd�Zd�fd�	Z�fd
�Z�fd�Z�fd�Zd�fd�	Zd�Zd�Zdd�Zdd�Z�xZS)�Readera�Access systemd journal entries.

    Entries are subject to filtering and limits, see `add_match`, `this_boot`,
    `this_machine` functions and the `data_treshold` attribute.

    Note that in order to access the system journal, a non-root user must have
    the necessary privileges, see journalctl(1) for details.  Unprivileged users
    can access only their own journal.

    Example usage to print out all informational or higher level messages for
    systemd-udevd for this boot:

    >>> from systemd import journal
    >>> j = journal.Reader()
    >>> j.this_boot()
    >>> j.log_level(journal.LOG_INFO)
    >>> j.add_match(_SYSTEMD_UNIT="systemd-udevd.service")
    >>> for entry in j:                                 # doctest: +SKIP
    ...    print(entry['MESSAGE'])
    starting version ...

    See systemd.journal-fields(7) for more info on typical fields found in the
    journal.

    c���|�
|�	|�t}nd}tt|�||||�tj�|_|�|jj|�yy)aCreate a new Reader.

        Argument `flags` defines the open flags of the journal, which can be one
        of, or ORed combination of constants: LOCAL_ONLY (default) opens journal
        on local machine only; RUNTIME_ONLY opens only volatile journal files;
        and SYSTEM_ONLY opens only journal files of system services and the kernel.

        Argument `path` is the directory of journal files, either a file system
        path or a file descriptor. Specify `namespace` to read from specific journal
        namespace. Note that `flags`, `path`, `files` and `namespace` are exclusive.

        Argument `converters` is a dictionary which updates the
        DEFAULT_CONVERTERS to convert journal field values. Field names are used
        as keys into this dictionary. The values must be single argument
        functions, which take a `bytes` object and return a converted
        value. When there's no entry for a field name, then the default UTF-8
        decoding will be attempted. If the conversion fails with a ValueError,
        unconverted bytes object will be returned. (Note that ValueEror is a
        superclass of UnicodeDecodeError).

        Reader implements the context manager protocol: the journal will be
        closed when exiting the block.
        Nr)r�superri�__init__�DEFAULT_CONVERTERS�copy�
converters�update)�self�flags�path�filesro�	namespace�	__class__s      �r(rlzReader.__init__�s_���0�=��|��
�"����
�f�d�$�U�D�%��C�,�1�1�3����!��O�O�"�"�:�.�"r*c��|jj|tj�}	||�S#t$r|cYSwxYw)a/Convert value using self.converters[key].

        If `key` is not present in self.converters, a standard unicode decoding
        will be attempted.  If the conversion (either key-specific or the
        default one) fails with a ValueError, the original bytes object will be
        returned.
        )ro�getr"r@�
ValueError)rq�key�value�converts    r(�_convert_fieldzReader._convert_field�sA���/�/�%�%�c�5�<�<�8��	��5�>�!���	��L�	�s�4�A�Ac���i}|j�D]N\}}t|t�r$|D�cgc]}|j||���c}||<�:|j||�||<�P|Scc}w)z6Convert entire journal entry utilising _convert_field.)�items�
isinstance�listr})rq�entry�resultrzr{�vals      r(�_convert_entryzReader._convert_entry�sn�����+�+�-�	>�J�C���%��&�HM�N��t�2�2�3��<�N��s��"�1�1�#�u�=��s��		>�
�
��Os�A&c��|S)z=Return self.

        Part of the iterator protocol.
        r<)rqs r(�__iter__zReader.__iter__�s	��
�r*c�>�|j�}|r|St��)z�Return the next entry in the journal.

        Returns self.get_next() or raises StopIteration.

        Part of the iterator protocol.
        )�get_next�
StopIteration)rq�anss  r(�__next__zReader.__next__�s���m�m�o����J��/�!r*rc���t|�}|jd�|j�D��|D]}tt|�|��y)aHAdd one or more matches to the filter journal log entries.

        All matches of different field are combined with logical AND, and
        matches of the same field are automatically combined with logical OR.
        Matches can be passed as strings of form "FIELD=value", or keyword
        arguments FIELD="value".
        c3�:K�|]\}}t||����y�wr;��
_make_line��.0rzr�s   r(�	<genexpr>z#Reader.add_match.<locals>.<genexpr>�s����H�X�S�#�J�s�C�(�H���N)r��extendrrkri�	add_match)rq�args�kwargs�argrvs    �r(r�zReader.add_match�sD����D�z�����H�����H�H��	/�C��&�$�)�#�.�	/r*c���tt|�|�r^tt|��}|rJ|j	�|d<|j�|d<|j
�|d<|j|�St�S)a�Return the next log entry as a dictionary.

        Entries will be processed with converters specified during Reader
        creation.

        Optional `skip` value will return the `skip`-th log entry.

        Currently a standard dictionary of fields is returned, but in the
        future this might be changed to a different mapping type, so the
        calling code should not make assumptions about a specific type.
        rXrZr[)	rkri�_next�_get_all�
_get_realtime�_get_monotonic�_get_cursorr��dict)rq�skipr�rvs   �r(r�zReader.get_next�sy������$�T�*��&�$�0�2�E��04�0B�0B�0D��,�-�15�1D�1D�1F��-�.�$(�$4�$4�$6��j�!��*�*�5�1�1��v�
r*c�&�|j|�S)a�Return the previous log entry.

        Equivalent to get_next(-skip).

        Optional `skip` value will return the -`skip`-th log entry.

        Entries will be processed with converters specified during Reader
        creation.

        Currently a standard dictionary of fields is returned, but in the
        future this might be changed to a different mapping type, so the
        calling code should not make assumptions about a specific type.
        )r�)rqr�s  r(�get_previouszReader.get_previouss���}�}�d�U�#�#r*c�T����t��fd�tt����D��S)z�Return a list of unique values appearing in the journal for the given
        `field`.

        Note this does not respect any journal matches.

        Entries will be processed with converters specified during
        Reader creation.
        c3�B�K�|]}�j�|����y�wr;)r})r�r{�fieldrqs  ��r(r�z&Reader.query_unique.<locals>.<genexpr>s(�����I���&�&�u�e�4�I�s�)rerkri�query_unique)rqr�rvs``�r(r�zReader.query_uniques/����I� %�f�d� @�� G�I�I�	Ir*c�N��|�dn
t|dz�}tt|�|�S)aEWait for a change in the journal.

        `timeout` is the maximum time in seconds to wait, or None which
        means to wait forever.

        Returns one of NOP (no change), APPEND (new entries have been added to
        the end of the journal), or INVALIDATE (journal files have been added or
        removed).
        ���r2)r,rkri�wait)rq�timeout�usrvs   �r(r�zReader.wait"s,����?�R��G�g�,=�(>���V�T�'��+�+r*c�(��t|tj�r8	|j�}tt
|jd��dz�}nt|t
�st|dz�}tt|�+|�S#t$rY�cwxYw)a(Seek to a matching journal entry nearest to `timestamp` time.

        Argument `realtime` must be either an integer UNIX timestamp (in
        microseconds since the beginning of the UNIX epoch), or an float UNIX
        timestamp (in seconds since the beginning of the UNIX epoch), or a
        datetime.datetime instance. The integer form is deprecated.

        >>> import time
        >>> from systemd import journal

        >>> yesterday = time.time() - 24 * 60**2
        >>> j = journal.Reader()
        >>> j.seek_realtime(yesterday)
        z%s.%fr2)r�r#r3�
astimezone�	TypeErrorr,�float�strftimerkri�
seek_realtime)rq�realtimervs  �r(r�zReader.seek_realtime/s�����h�	� 2� 2�3�
�#�.�.�0��
�5��!2�!2�7�!;�<�w�F�G�H��H�c�*��8�g�-�.�H��V�T�0��:�:���
��
�s�B�	B�Bc�>��tt|��}t|�Sr;)rkri�
_get_startr7)rq�startrvs  �r(�	get_startzReader.get_startJs����f�d�.�0�� ��'�'r*c�>��tt|��}t|�Sr;)rkri�_get_endr7)rq�endrvs  �r(�get_endzReader.get_endNs����F�D�*�,�� ��%�%r*c����t|tj�r|j�}t	|dz�}t|t
j�r|j}tt|�+||�S)aGSeek to a matching journal entry nearest to `monotonic` time.

        Argument `monotonic` is a timestamp from boot in either seconds or a
        datetime.timedelta instance. Argument `bootid` is a string or UUID
        representing which boot the monotonic time is reference to. Defaults to
        current bootid.
        r2)r�r#r$�
total_secondsr,r%r&�hexrkri�seek_monotonic)rq�	monotonic�bootidrvs   �r(r�zReader.seek_monotonicRs]����i��!4�!4�5�!�/�/�1�I��	�G�+�,�	��f�e�j�j�)��Z�Z�F��V�T�1�)�V�D�Dr*c��d|cxkrdkr6ntd��t|dz�D]}|jd|z���ytd��)zASet maximum log `level` by setting matches for PRIORITY.
        r�rz%d)rEz!Log level must be 0 <= level <= 7N)�ranger�ry)rq�level�is   r(�	log_levelzReader.log_levelasV��
��?��?��@�A�A��5��7�^�
2������q���1�
2��@�A�Ar*c�t�t|tj�r|j}|j	|��y)aAdd match for log entries with specified `messageid`.

        `messageid` can be string of hexadicimal digits or a UUID
        instance. Standard message IDs can be found in systemd.id128.

        Equivalent to add_match(MESSAGE_ID=`messageid`).
        )rBN)r�r%r&r�r�)rq�	messageids  r(�messageid_matchzReader.messageid_matchjs)���i����,�!�
�
�I����)��,r*c��|�tj�j}n
t|d|�}|j	|��y)z�Add match for _BOOT_ID for current boot or the specified boot ID.

        If specified, bootid should be either a UUID or a 32 digit hex number.

        Equivalent to add_match(_BOOT_ID='bootid').
        Nr�)rD)�_id128�get_bootr��getattrr�)rqr�s  r(�	this_bootzReader.this_bootvs7���>��_�_�&�*�*�F��V�U�F�3�F������'r*c��|�tj�j}n
t|d|�}|j	|��y)z�Add match for _MACHINE_ID equal to the ID of this machine.

        If specified, machineid should be either a UUID or a 32 digit hex
        number.

        Equivalent to add_match(_MACHINE_ID='machineid').
        Nr�)rC)r��get_machiner�r�r�)rq�	machineids  r(�this_machinezReader.this_machine�s:�����*�*�,�0�0�I��	�5�)�<�I����9��-r*)NNNNN)rr;)�__name__�
__module__�__qualname__�__doc__rlr}r�r�r��_sys�version_info�nextr�r�r�r�r�r�r�r�r�r�r�r�r��
__classcell__�rvs@r(ririvs{����2"/�H
���"����4����/��*$� 
I�,�;�6(�&�
E�B�
-�(�.r*ric�d�t|tj�r|j}t	|�S)zlReturn catalog entry for the specified ID.

    `mid` should be either a UUID or a 32 digit hex number.
    )r�r%r&r�r)�mids r(�get_catalogr��s&��
�#�u�z�z�"��g�g�����r*c��t|t�r|jd�dz|zSt|t�r|dz|zS|dzt|�zS)Nzutf-8�=�=)r�r"�encode�str)r�r{s  r(r�r��sQ���%����|�|�G�$�t�+�e�3�3�	�E�3�	��s�{�U�"�"��s�{�S��Z�'�'r*c��d|zg}|�!t|d|�}|jd|z�||cxur|cxur�#nn tjd��ddd\}}}|�|jd	|z�|� |jd
j	|��|�|jd|z�|jd�|j
�D��t|�S)
aASend a message to the journal.

    >>> from systemd import journal
    >>> journal.send('Hello world')
    >>> journal.send('Hello, again, world', FIELD2='Greetings!')
    >>> journal.send('Binary message', BINARY=b'\xde\xad\xbe\xef')

    Value of the MESSAGE argument will be used for the MESSAGE= field. MESSAGE
    must be a string and will be sent as UTF-8 to the journal.

    MESSAGE_ID can be given to uniquely identify the type of message. It must be
    a string or a uuid.UUID object.

    CODE_LINE, CODE_FILE, and CODE_FUNC can be specified to identify the caller.
    Unless at least on of the three is given, values are extracted from the
    stack frame of the caller of send(). CODE_FILE and CODE_FUNC must be
    strings, CODE_LINE must be an integer.

    Additional fields for the journal entry can only be specified as keyword
    arguments. The payload can be either a string or bytes. A string will be
    sent as UTF-8, and bytes will be sent as-is to the journal.

    Other useful fields include PRIORITY, SYSLOG_FACILITY, SYSLOG_IDENTIFIER,
    SYSLOG_PID.
    zMESSAGE=Nr�zMESSAGE_ID=�)�limitrrz
CODE_FILE=zCODE_LINE={:d}z
CODE_FUNC=c3�:K�|]\}}t||����y�wr;r�r�s   r(r�zsend.<locals>.<genexpr>�s����D���c�
�3��$�D�r�)r��append�
_traceback�
extract_stack�formatr�rr)�MESSAGErB�	CODE_FILErT�	CODE_FUNCr�r��ids        r(�sendr��s���:
�� �!�D���
�Z��
�
3�����M�B�&�'��I�2��2�*4�*B�*B��*K�A�*N�r�PQ�*R�'�	�9�i������L�9�,�-������$�+�+�I�6�7������L�9�,�-��K�K�D�V�\�\�^�D�D��$�<�r*Fc���|�Otjr)tjdrtjddk(rd}ntjd}t|||�}tj|dd�S)a�Return a file object wrapping a stream to journal.

    Log messages written to this file as simple newline sepearted text strings
    are written to the journal.

    The file will be line buffered, so messages are actually sent after a
    newline character is written.

    >>> from systemd import journal
    >>> stream = journal.stream('myapp')                       # doctest: +SKIP
    >>> res = stream.write('message...\n')                     # doctest: +SKIP

    will produce the following message in the journal::

      PRIORITY=7
      SYSLOG_IDENTIFIER=myapp
      MESSAGE=message...

    If identifier is None, a suitable default based on sys.argv[0] will be used.

    This interface can be used conveniently with the print function:

    >>> from __future__ import print_function
    >>> stream = journal.stream()                              # doctest: +SKIP
    >>> print('message...', file=stream)                       # doctest: +SKIP

    priority is the syslog priority, one of `LOG_EMERG`, `LOG_ALERT`,
    `LOG_CRIT`, `LOG_ERR`, `LOG_WARNING`, `LOG_NOTICE`, `LOG_INFO`, `LOG_DEBUG`.

    level_prefix is a boolean. If true, kernel-style log priority level prefixes
    (such as '<1>') are interpreted. See sd-daemon(3) for more information.
    rz-c�python�wr)r��argvr�_os�fdopen)�
identifier�priority�level_prefix�fds    r(�streamr��s^��D���y�y��	�	�!���	�	�!���0D�!�J����1��J�	�:�x��	6�B��:�:�b�#�q�!�!r*c�h��eZdZdZej
ef�fd�	Zedd��Z	d�Z
ed��ZeZ
�xZS)�JournalHandlera�Journal handler class for the Python logging framework.

    Please see the Python logging module documentation for an overview:
    http://docs.python.org/library/logging.html.

    To create a custom logger whose messages go only to journal:

    >>> import logging
    >>> log = logging.getLogger('custom_logger_name')
    >>> log.propagate = False
    >>> log.addHandler(JournalHandler())
    >>> log.warning("Some message: %s", 'detail')

    Note that by default, message levels `INFO` and `DEBUG` are ignored by the
    logging framework. To enable those log levels:

    >>> log.setLevel(logging.DEBUG)

    To redirect all logging messages to journal regardless of where they come
    from, attach it to the root logger:

    >>> logging.root.addHandler(JournalHandler())

    For more complex configurations when using `dictConfig` or `fileConfig`,
    specify `systemd.journal.JournalHandler` as the handler class.  Only
    standard handler configuration options are supported: `level`, `formatter`,
    `filters`.

    To attach journal MESSAGE_ID, an extra field is supported:

    >>> import uuid
    >>> mid = uuid.UUID('0123456789ABCDEF0123456789ABCDEF')
    >>> log.warning("Message with ID", extra={'MESSAGE_ID': mid})

    Fields to be attached to all messages sent through this handler can be
    specified as keyword arguments. This probably makes sense only for
    SYSLOG_IDENTIFIER and similar fields which are constant for the whole
    program:

    >>> JournalHandler(SYSLOG_IDENTIFIER='my-cool-app')
    <...JournalHandler ...>

    The following journal fields will be sent: `MESSAGE`, `PRIORITY`,
    `THREAD_NAME`, `CODE_FILE`, `CODE_LINE`, `CODE_FUNC`, `LOGGER` (name as
    supplied to getLogger call), `MESSAGE_ID` (optional, see above),
    `SYSLOG_IDENTIFIER` (defaults to sys.argv[0]).

    The function used to actually send messages can be overridden using
    the `sender_function` parameter.
    c���tt|�|�|D]}t|�r�t	d|z��d|vrt
jd|d<||_||_y)NzInvalid field name: �SYSLOG_IDENTIFIERr)	rkr�rlrgryr�r�r��_extra)rqr��sender_functionr��namervs     �r(rlzJournalHandler.__init__5sg���
�n�d�,�U�3��	@�D�$�T�*� �!7�$�!>�?�?�	@��f�,�*.�)�)�A�,�F�&�'�#��	���r*c��|di|xsi��S)a�Create a JournalHandler with a configuration dictionary

        This creates a JournalHandler instance, but accepts the parameters through
        a dictionary that can be specified as a positional argument. This is useful
        in contexts like logging.config.fileConfig, where the syntax does not allow
        for positional arguments.

        >>> JournalHandler.with_args({'SYSLOG_IDENTIFIER':'my-cool-app'})
        <...JournalHandler ...>
        r<r<)�cls�configs  r(�	with_argszJournalHandler.with_argsAs���$�f�l��$�$r*c�|�	|j|�}|j|j�}|jj	�}|j
r|j
|d<|jr|j|d<|jrt|j�|d<|j|j�|j|ft|�|j|j|j|j|j |j"d�|��y#t$$r|j'|�YywxYw)aWrite `record` as a journal event.

        MESSAGE is taken from the message provided by the user, and PRIORITY,
        LOGGER, THREAD_NAME, CODE_{FILE,LINE,FUNC} fields are appended
        automatically. In addition, record.MESSAGE_ID will be used if present.
        �EXCEPTION_TEXT�EXCEPTION_INFO�	CODE_ARGS)rE�LOGGER�THREAD_NAME�PROCESS_NAMEr�rTr�N)r��map_priority�levelnorrn�exc_text�exc_infor�r�rp�__dict__r�r�
threadName�processName�pathname�lineno�funcName�	Exception�handleError)rq�record�msg�pri�extrass     r(�emitzJournalHandler.emitOs��	%��+�+�f�%�C��#�#�F�N�N�3�C��[�[�%�%�'�F����+1�?�?��'�(����+1�?�?��'�(��{�{�&)�&�+�+�&6��{�#�
�M�M�&�/�/�*��D�I�I�c�
 �%�c�{�#�[�[�"(�"3�"3�#)�#5�#5� &��� &�
�
� &���
 ��
 ���	%����V�$�	%�s�DD�D;�:D;c��|tjkrtS|tjkrtS|tj
krtS|tjkrtS|tjkrtStS)z�Map logging levels to journald priorities.

        Since Python log level numbers are "sparse", we have to map numbers in
        between the standard levels too.
        )�_logging�DEBUGr�INFOr
�WARNINGr�ERRORr�CRITICALrr)rs r(rzJournalHandler.map_priorityuse���h�n�n�$���
��
�
�
%��O�
��(�(�
(���
����
&��N�
��)�)�
)��O��r*r;)r�r�r�r�r!�NOTSETr�rl�classmethodrr�staticmethodr�mapPriorityr�r�s@r(r�r�sN���1�f&�_�_�d�
��%��%�$%�L����&�Kr*r�)NNNN)F�
__future__r�sysr�r3r#�uuidr%�	tracebackr��osr��loggingr!�syslogrrrrrr	r
r�_journalr
rr�_readerrrrrrrrrrrr�rr�r�r�tupler)r/�nowr��tzinfor5r�r7r9r>rAr&r,r"rmrerfrgrir�r�r�r��Handlerr�r<r*r(�<module>r9s���* �������B�B�B�4�3�$�$�$�$�
������"��I�/�
4���(�(�,�,�.�9�9�;�B�B�O�J�O�
������&��J�J�M�"��-�"��=�"��
�"���	"�

�c�"��#�
"��c�"��3�"��3�"��C�"��C�"��C�"��s�"��#�"��c�"� �s�!"�"��#"�$�#�%"�&��'"�(�S�)"�*�3�+"�,!�"4�-"�.�-�/"�0"�#<�1"�2�/�3"�4� �5"�6��7"�8�C�9"�:�C�;"�<�C�="�>��?"�@�s�A"�B�,�C"��H�>�?��+�Y.�W�Y.�x�(�"�37�-�`�X�E�)"�XH�X�%�%�H��S���O��s�<2E<�<F�F

Zerion Mini Shell 1.0