
    +h                     \   d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ dd	lm	Z	 dd
lm
Z
 ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ej.                  rddlmZ neZ G d de      Z G d de      Z G d de      ZeeeehZeeeeee
hZd Zd Z d  Z!e d!        Z"d" Z#d# Z$d$ Z%e%Z&d% Z'e'Z(e d&        Z)e d'        Z*e*Z+e d(        Z,e d)        Z-e-Z.d* Z/d+ Z0e ddd-       Z1e ddd.       Z2e2Z3e ddd/       Z4e ddd0       Z5e5Z6e ded1       Z7e ded2       Z8e8Z9e d3        Z:e d4        Z;e;Z<d5 Z=d6 Z>d7 Z?d8 Z@e dfd9       ZAe dfd:       ZBeBZCe dfd;       ZDe dfd<       ZEeEZFe dfd=       ZGe dfd>       ZHeHZIe d?        ZJe ddd@       ZKe dddA       ZLdddBZMe dC        ZNeNZOdD ZPdE ZQdF ZRdG ZSdH ZTdI ZUeUZVdJ ZWeWZXdK ZYdL ZZdM Z[dN Z\dO Z]dP Z^e	e%e'eefZ_dQ Z`eeee
eee
eiZadR Zbej                  eReeg      j                  eeg      ZedS Zfeej                  eeYeZg      Zg	  ej                  dTdUV      Zi ej                  dWdXV      Zj ej                  dYdZV      Zki e!d[e"d[e>d[e?d[ed[eYd[eZd[ed\ed\ed\ed\ed\ed]ed]eRd^eQd^eJd_i eNd_eKd_eLd_eMd_e4d_e5d_e1d_e2d_e:d_e;d_e,d_e-d_ed_ed_e)d_e*d_ed_i ed_ed_e
d_e7d_e8d_e=d_e	d_e%d_e'd_ed`edePdaeSd`eTd`e/dbe#dae$deidUejejekekiZldc Zmy,)gz*Defines operators used in SQL expressions.    )add)and_)contains)eq)ge)getitem)gt)inv)le)lshift)lt)mod)mul)ne)neg)or_)rshift)sub)truediv   )util)divc                   D    e Zd ZdZdZd Zd Zd Z	 ddZddZ	d	 Z
d
 Zy)	Operatorsa  Base of comparison and logical operators.

    Implements base methods
    :meth:`~sqlalchemy.sql.operators.Operators.operate` and
    :meth:`~sqlalchemy.sql.operators.Operators.reverse_operate`, as well as
    :meth:`~sqlalchemy.sql.operators.Operators.__and__`,
    :meth:`~sqlalchemy.sql.operators.Operators.__or__`,
    :meth:`~sqlalchemy.sql.operators.Operators.__invert__`.

    Usually is used via its most common subclass
    :class:`.ColumnOperators`.

     c                 .    | j                  t        |      S )a-  Implement the ``&`` operator.

        When used with SQL expressions, results in an
        AND operation, equivalent to
        :func:`_expression.and_`, that is::

            a & b

        is equivalent to::

            from sqlalchemy import and_
            and_(a, b)

        Care should be taken when using ``&`` regarding
        operator precedence; the ``&`` operator has the highest precedence.
        The operands should be enclosed in parenthesis if they contain
        further sub expressions::

            (a == 2) & (b == 4)

        )operater   selfothers     K/var/www/html/venv/lib/python3.12/site-packages/sqlalchemy/sql/operators.py__and__zOperators.__and__;   s    , ||D%((    c                 .    | j                  t        |      S )a)  Implement the ``|`` operator.

        When used with SQL expressions, results in an
        OR operation, equivalent to
        :func:`_expression.or_`, that is::

            a | b

        is equivalent to::

            from sqlalchemy import or_
            or_(a, b)

        Care should be taken when using ``|`` regarding
        operator precedence; the ``|`` operator has the highest precedence.
        The operands should be enclosed in parenthesis if they contain
        further sub expressions::

            (a == 2) | (b == 4)

        )r   r   r   s     r!   __or__zOperators.__or__S   s    , ||C''r#   c                 ,    | j                  t              S )a  Implement the ``~`` operator.

        When used with SQL expressions, results in a
        NOT operation, equivalent to
        :func:`_expression.not_`, that is::

            ~a

        is equivalent to::

            from sqlalchemy import not_
            not_(a)

        )r   r
   r   s    r!   
__invert__zOperators.__invert__k   s     ||C  r#   Nc                 2     t        ||||       fd}|S )a	  Produce a generic operator function.

        e.g.::

          somecolumn.op("*")(5)

        produces::

          somecolumn * 5

        This function can also be used to make bitwise operators explicit. For
        example::

          somecolumn.op('&')(0xff)

        is a bitwise AND of the value in ``somecolumn``.

        :param operator: a string which will be output as the infix operator
          between this element and the expression passed to the
          generated function.

        :param precedence: precedence which the database is expected to apply
         to the operator in SQL expressions. This integer value acts as a hint
         for the SQL compiler to know when explicit parenthesis should be
         rendered around a particular operation. A lower number will cause the
         expression to be parenthesized when applied against another operator
         with higher precedence. The default value of ``0`` is lower than all
         operators except for the comma (``,``) and ``AS`` operators. A value
         of 100 will be higher or equal to all operators, and -100 will be
         lower than or equal to all operators.

         .. seealso::

            :ref:`faq_sql_expression_op_parenthesis` - detailed description
            of how the SQLAlchemy SQL compiler renders parenthesis

        :param is_comparison: legacy; if True, the operator will be considered
         as a "comparison" operator, that is which evaluates to a boolean
         true/false value, like ``==``, ``>``, etc.  This flag is provided
         so that ORM relationships can establish that the operator is a
         comparison operator when used in a custom join condition.

         Using the ``is_comparison`` parameter is superseded by using the
         :meth:`.Operators.bool_op` method instead;  this more succinct
         operator sets this parameter automatically.  In SQLAlchemy 2.0 it
         will also provide for improved typing support.

        :param return_type: a :class:`.TypeEngine` class or object that will
          force the return type of an expression produced by this operator
          to be of that type.   By default, operators that specify
          :paramref:`.Operators.op.is_comparison` will resolve to
          :class:`.Boolean`, and those that do not will be of the same
          type as the left-hand operand.

        .. seealso::

            :meth:`.Operators.bool_op`

            :ref:`types_operators`

            :ref:`relationship_custom_operator`

        c                      |       S Nr   )r    operatorr   s    r!   againstzOperators.op.<locals>.against   s    D%((r#   )	custom_op)r   opstring
precedenceis_comparisonreturn_typer-   r,   s   `     @r!   opzOperators.op|   s"    D Xz=+N	) r#   c                 *    | j                  ||d      S )a  Return a custom boolean operator.

        This method is shorthand for calling
        :meth:`.Operators.op` and passing the
        :paramref:`.Operators.op.is_comparison`
        flag with True.    A key advantage to using :meth:`.Operators.bool_op`
        is that when using column constructs, the "boolean" nature of the
        returned expression will be present for :pep:`484` purposes.

        .. seealso::

            :meth:`.Operators.op`

        T)r0   r1   r3   )r   r/   r0   s      r!   bool_opzOperators.bool_op   s     wwxJdwKKr#   c                 *    t        t        |            )aG  Operate on an argument.

        This is the lowest level of operation, raises
        :class:`NotImplementedError` by default.

        Overriding this on a subclass can allow common
        behavior to be applied to all operations.
        For example, overriding :class:`.ColumnOperators`
        to apply ``func.lower()`` to the left and right
        side::

            class MyComparator(ColumnOperators):
                def operate(self, op, other, **kwargs):
                    return op(func.lower(self), func.lower(other), **kwargs)

        :param op:  Operator callable.
        :param \*other: the 'other' side of the operation. Will
         be a single scalar for most operations.
        :param \**kwargs: modifiers.  These may be passed by special
         operators such as :meth:`ColumnOperators.contains`.


        NotImplementedErrorstrr   r3   r    kwargss       r!   r   zOperators.operate   s    0 "#b'**r#   c                 *    t        t        |            )zXReverse operate on an argument.

        Usage is the same as :meth:`operate`.

        r8   r;   s       r!   reverse_operatezOperators.reverse_operate   s     "#b'**r#   )r   FN)r   )__name__
__module____qualname____doc__	__slots__r"   r%   r(   r3   r6   r   r>   r   r#   r!   r   r   *   s;     I)0(0!$ HLGRL"+4+r#   r   c                   >    e Zd ZdZd Z 	 	 	 	 	 ddZd Zd Zd Zd Zy)	r.   a  Represent a 'custom' operator.

    :class:`.custom_op` is normally instantiated when the
    :meth:`.Operators.op` or :meth:`.Operators.bool_op` methods
    are used to create a custom operator callable.  The class can also be
    used directly when programmatically constructing expressions.   E.g.
    to represent the "factorial" operation::

        from sqlalchemy.sql import UnaryExpression
        from sqlalchemy.sql import operators
        from sqlalchemy import Numeric

        unary = UnaryExpression(table.c.somecolumn,
                modifier=operators.custom_op("!"),
                type_=Numeric)


    .. seealso::

        :meth:`.Operators.op`

        :meth:`.Operators.bool_op`

    Nc                     || _         || _        || _        || _        || _        |r|j                  |      | _        y d | _        y r+   )r/   r0   r1   natural_self_precedenteager_grouping_to_instancer2   )r   r/   r0   r1   r2   rF   rG   s          r!   __init__zcustom_op.__init__  sM     !$*&<#,5@K$$[1 	FJ 	r#   c                 h    t        |t              xr! |j                         | j                         k(  S r+   )
isinstancer.   	_hash_keyr   s     r!   __eq__zcustom_op.__eq__'  s,    ui( 6!T^^%55	
r#   c                 4    t        | j                               S r+   )hashrL   r'   s    r!   __hash__zcustom_op.__hash__-  s    DNN$%%r#   c                     | j                   | j                  | j                  | j                  | j                  | j
                  | j                  r| j                  j                  fS d fS r+   )	__class__r/   r0   r1   rF   rG   r2   _static_cache_keyr'   s    r!   rL   zcustom_op._hash_key0  sd    NNMMOO''262B2BD..
 	
 IM
 	
r#   c                 *     |j                   | |fi |S r+   )r   )r   leftrightkws       r!   __call__zcustom_op.__call__;  s    t||D%.2..r#   )r   FNFF)	r?   r@   rA   rB   rI   rM   rP   rL   rX   r   r#   r!   r.   r.      s8    2 H
 $
$
&	
/r#   r.   c                      e Zd ZdZdZdZ	 d Zd Zej                  Z	d Z
d Zd Zd	 ZeZd
 Zd Zd Zd Zd Zd Zd Zd Zd Zd6dZd6dZd Zd ZeZd6dZeZd6dZeZ d Z!d Z"e"Z#d Z$d Z%d Z&d Z'd6dZ(d6d Z)d! Z*d" Z+d# Z,e,Z-d$ Z.e.Z/d% Z0d& Z1d' Z2d( Z3d) Z4d* Z5d7d+Z6d, Z7d- Z8d. Z9d/ Z:d0 Z;d1 Z<d2 Z=d3 Z>d4 Z?d5 Z@y)8ColumnOperatorsa"  Defines boolean, comparison, and other operators for
    :class:`_expression.ColumnElement` expressions.

    By default, all methods call down to
    :meth:`.operate` or :meth:`.reverse_operate`,
    passing in the appropriate operator function from the
    Python builtin ``operator`` module or
    a SQLAlchemy-specific operator function from
    :mod:`sqlalchemy.expression.operators`.   For example
    the ``__eq__`` function::

        def __eq__(self, other):
            return self.operate(operators.eq, other)

    Where ``operators.eq`` is essentially::

        def eq(a, b):
            return a == b

    The core column expression unit :class:`_expression.ColumnElement`
    overrides :meth:`.Operators.operate` and others
    to return further :class:`_expression.ColumnElement` constructs,
    so that the ``==`` operation above is replaced by a clause
    construct.

    .. seealso::

        :ref:`types_operators`

        :attr:`.TypeEngine.comparator_factory`

        :class:`.ColumnOperators`

        :class:`.PropComparator`

    r   Nc                 .    | j                  t        |      S )zdImplement the ``<`` operator.

        In a column context, produces the clause ``a < b``.

        )r   r   r   s     r!   __lt__zColumnOperators.__lt__j       ||B&&r#   c                 .    | j                  t        |      S )zfImplement the ``<=`` operator.

        In a column context, produces the clause ``a <= b``.

        )r   r   r   s     r!   __le__zColumnOperators.__le__r  r]   r#   c                 .    | j                  t        |      S )zImplement the ``==`` operator.

        In a column context, produces the clause ``a = b``.
        If the target is ``None``, produces ``a IS NULL``.

        )r   r   r   s     r!   rM   zColumnOperators.__eq__|       ||B&&r#   c                 .    | j                  t        |      S )zImplement the ``!=`` operator.

        In a column context, produces the clause ``a != b``.
        If the target is ``None``, produces ``a IS NOT NULL``.

        )r   r   r   s     r!   __ne__zColumnOperators.__ne__  ra   r#   c                 .    | j                  t        |      S )zImplement the ``IS DISTINCT FROM`` operator.

        Renders "a IS DISTINCT FROM b" on most platforms;
        on some such as SQLite may render "a IS NOT b".

        .. versionadded:: 1.1

        )r   is_distinct_fromr   s     r!   re   z ColumnOperators.is_distinct_from  s     ||,e44r#   c                 .    | j                  t        |      S )a  Implement the ``IS NOT DISTINCT FROM`` operator.

        Renders "a IS NOT DISTINCT FROM b" on most platforms;
        on some such as SQLite may render "a IS b".

        .. versionchanged:: 1.4 The ``is_not_distinct_from()`` operator is
           renamed from ``isnot_distinct_from()`` in previous releases.
           The previous name remains available for backwards compatibility.

        .. versionadded:: 1.1

        )r   is_not_distinct_fromr   s     r!   rg   z$ColumnOperators.is_not_distinct_from  s     ||0%88r#   c                 .    | j                  t        |      S )zdImplement the ``>`` operator.

        In a column context, produces the clause ``a > b``.

        )r   r	   r   s     r!   __gt__zColumnOperators.__gt__  r]   r#   c                 .    | j                  t        |      S )zfImplement the ``>=`` operator.

        In a column context, produces the clause ``a >= b``.

        )r   r   r   s     r!   __ge__zColumnOperators.__ge__  r]   r#   c                 ,    | j                  t              S )zaImplement the ``-`` operator.

        In a column context, produces the clause ``-a``.

        )r   r   r'   s    r!   __neg__zColumnOperators.__neg__  s     ||C  r#   c                 .    | j                  t        |      S r+   )r   r   r   s     r!   __contains__zColumnOperators.__contains__  s    ||He,,r#   c                 .    | j                  t        |      S )zImplement the [] operator.

        This can be used by some database-specific types
        such as PostgreSQL ARRAY and HSTORE.

        )r   r   )r   indexs     r!   __getitem__zColumnOperators.__getitem__  s     ||GU++r#   c                 .    | j                  t        |      S )zimplement the << operator.

        Not used by SQLAlchemy core, this is provided
        for custom operator systems which want to use
        << as an extension point.
        )r   r   r   s     r!   
__lshift__zColumnOperators.__lshift__       ||FE**r#   c                 .    | j                  t        |      S )zimplement the >> operator.

        Not used by SQLAlchemy core, this is provided
        for custom operator systems which want to use
        >> as an extension point.
        )r   r   r   s     r!   
__rshift__zColumnOperators.__rshift__  ru   r#   c                 .    | j                  t        |      S )zImplement the 'concat' operator.

        In a column context, produces the clause ``a || b``,
        or uses the ``concat()`` operator on MySQL.

        )r   	concat_opr   s     r!   concatzColumnOperators.concat  s     ||Iu--r#   c                 .    | j                  t        |      S )z|Implement an 'rconcat' operator.

        this is for internal use at the moment

        .. versionadded:: 1.4.40

        )r>   ry   r   s     r!   _rconcatzColumnOperators._rconcat  s     ##Iu55r#   c                 2    | j                  t        ||      S )a  Implement the ``like`` operator.

        In a column context, produces the expression::

            a LIKE other

        E.g.::

            stmt = select(sometable).\
                where(sometable.c.column.like("%foobar%"))

        :param other: expression to be compared
        :param escape: optional escape character, renders the ``ESCAPE``
          keyword, e.g.::

            somecolumn.like("foo/%bar", escape="/")

        .. seealso::

            :meth:`.ColumnOperators.ilike`

        escape)r   like_opr   r    r   s      r!   likezColumnOperators.like  s    . ||GU6|::r#   c                 2    | j                  t        ||      S )a  Implement the ``ilike`` operator, e.g. case insensitive LIKE.

        In a column context, produces an expression either of the form::

            lower(a) LIKE lower(other)

        Or on backends that support the ILIKE operator::

            a ILIKE other

        E.g.::

            stmt = select(sometable).\
                where(sometable.c.column.ilike("%foobar%"))

        :param other: expression to be compared
        :param escape: optional escape character, renders the ``ESCAPE``
          keyword, e.g.::

            somecolumn.ilike("foo/%bar", escape="/")

        .. seealso::

            :meth:`.ColumnOperators.like`

        r~   )r   ilike_opr   s      r!   ilikezColumnOperators.ilike  s    6 ||HeF|;;r#   c                 .    | j                  t        |      S )a  Implement the ``in`` operator.

        In a column context, produces the clause ``column IN <other>``.

        The given parameter ``other`` may be:

        * A list of literal values, e.g.::

            stmt.where(column.in_([1, 2, 3]))

          In this calling form, the list of items is converted to a set of
          bound parameters the same length as the list given::

            WHERE COL IN (?, ?, ?)

        * A list of tuples may be provided if the comparison is against a
          :func:`.tuple_` containing multiple expressions::

            from sqlalchemy import tuple_
            stmt.where(tuple_(col1, col2).in_([(1, 10), (2, 20), (3, 30)]))

        * An empty list, e.g.::

            stmt.where(column.in_([]))

          In this calling form, the expression renders an "empty set"
          expression.  These expressions are tailored to individual backends
          and are generally trying to get an empty SELECT statement as a
          subquery.  Such as on SQLite, the expression is::

            WHERE col IN (SELECT 1 FROM (SELECT 1) WHERE 1!=1)

          .. versionchanged:: 1.4  empty IN expressions now use an
             execution-time generated SELECT subquery in all cases.

        * A bound parameter, e.g. :func:`.bindparam`, may be used if it
          includes the :paramref:`.bindparam.expanding` flag::

            stmt.where(column.in_(bindparam('value', expanding=True)))

          In this calling form, the expression renders a special non-SQL
          placeholder expression that looks like::

            WHERE COL IN ([EXPANDING_value])

          This placeholder expression is intercepted at statement execution
          time to be converted into the variable number of bound parameter
          form illustrated earlier.   If the statement were executed as::

            connection.execute(stmt, {"value": [1, 2, 3]})

          The database would be passed a bound parameter for each value::

            WHERE COL IN (?, ?, ?)

          .. versionadded:: 1.2 added "expanding" bound parameters

          If an empty list is passed, a special "empty list" expression,
          which is specific to the database in use, is rendered.  On
          SQLite this would be::

            WHERE COL IN (SELECT 1 FROM (SELECT 1) WHERE 1!=1)

          .. versionadded:: 1.3 "expanding" bound parameters now support
             empty lists

        * a :func:`_expression.select` construct, which is usually a
          correlated scalar select::

            stmt.where(
                column.in_(
                    select(othertable.c.y).
                    where(table.c.x == othertable.c.x)
                )
            )

          In this calling form, :meth:`.ColumnOperators.in_` renders as given::

            WHERE COL IN (SELECT othertable.y
            FROM othertable WHERE othertable.x = table.x)

        :param other: a list of literals, a :func:`_expression.select`
         construct, or a :func:`.bindparam` construct that includes the
         :paramref:`.bindparam.expanding` flag set to True.

        )r   in_opr   s     r!   in_zColumnOperators.in_*  s    n ||E5))r#   c                 .    | j                  t        |      S )a  implement the ``NOT IN`` operator.

        This is equivalent to using negation with
        :meth:`.ColumnOperators.in_`, i.e. ``~x.in_(y)``.

        In the case that ``other`` is an empty sequence, the compiler
        produces an "empty not in" expression.   This defaults to the
        expression "1 = 1" to produce true in all cases.  The
        :paramref:`_sa.create_engine.empty_in_strategy` may be used to
        alter this behavior.

        .. versionchanged:: 1.4 The ``not_in()`` operator is renamed from
           ``notin_()`` in previous releases.  The previous name remains
           available for backwards compatibility.

        .. versionchanged:: 1.2  The :meth:`.ColumnOperators.in_` and
           :meth:`.ColumnOperators.not_in` operators
           now produce a "static" expression for an empty IN sequence
           by default.

        .. seealso::

            :meth:`.ColumnOperators.in_`

        )r   	not_in_opr   s     r!   not_inzColumnOperators.not_in  s    4 ||Iu--r#   c                 2    | j                  t        ||      S )a  implement the ``NOT LIKE`` operator.

        This is equivalent to using negation with
        :meth:`.ColumnOperators.like`, i.e. ``~x.like(y)``.

        .. versionchanged:: 1.4 The ``not_like()`` operator is renamed from
           ``notlike()`` in previous releases.  The previous name remains
           available for backwards compatibility.

        .. seealso::

            :meth:`.ColumnOperators.like`

        r~   )r   
notlike_opr   s      r!   not_likezColumnOperators.not_like  s     ||Jf|==r#   c                 2    | j                  t        ||      S )a  implement the ``NOT ILIKE`` operator.

        This is equivalent to using negation with
        :meth:`.ColumnOperators.ilike`, i.e. ``~x.ilike(y)``.

        .. versionchanged:: 1.4 The ``not_ilike()`` operator is renamed from
           ``notilike()`` in previous releases.  The previous name remains
           available for backwards compatibility.

        .. seealso::

            :meth:`.ColumnOperators.ilike`

        r~   )r   notilike_opr   s      r!   	not_ilikezColumnOperators.not_ilike  s     ||Kv|>>r#   c                 .    | j                  t        |      S )aW  Implement the ``IS`` operator.

        Normally, ``IS`` is generated automatically when comparing to a
        value of ``None``, which resolves to ``NULL``.  However, explicit
        usage of ``IS`` may be desirable if comparing to boolean values
        on certain platforms.

        .. seealso:: :meth:`.ColumnOperators.is_not`

        )r   is_r   s     r!   r   zColumnOperators.is_  s     ||C''r#   c                 .    | j                  t        |      S )a%  Implement the ``IS NOT`` operator.

        Normally, ``IS NOT`` is generated automatically when comparing to a
        value of ``None``, which resolves to ``NULL``.  However, explicit
        usage of ``IS NOT`` may be desirable if comparing to boolean values
        on certain platforms.

        .. versionchanged:: 1.4 The ``is_not()`` operator is renamed from
           ``isnot()`` in previous releases.  The previous name remains
           available for backwards compatibility.

        .. seealso:: :meth:`.ColumnOperators.is_`

        )r   is_notr   s     r!   r   zColumnOperators.is_not  s     ||FE**r#   c                 2     | j                   t        |fi |S )aS  Implement the ``startswith`` operator.

        Produces a LIKE expression that tests against a match for the start
        of a string value::

            column LIKE <other> || '%'

        E.g.::

            stmt = select(sometable).\
                where(sometable.c.column.startswith("foobar"))

        Since the operator uses ``LIKE``, wildcard characters
        ``"%"`` and ``"_"`` that are present inside the <other> expression
        will behave like wildcards as well.   For literal string
        values, the :paramref:`.ColumnOperators.startswith.autoescape` flag
        may be set to ``True`` to apply escaping to occurrences of these
        characters within the string value so that they match as themselves
        and not as wildcard characters.  Alternatively, the
        :paramref:`.ColumnOperators.startswith.escape` parameter will establish
        a given character as an escape character which can be of use when
        the target expression is not a literal string.

        :param other: expression to be compared.   This is usually a plain
          string value, but can also be an arbitrary SQL expression.  LIKE
          wildcard characters ``%`` and ``_`` are not escaped by default unless
          the :paramref:`.ColumnOperators.startswith.autoescape` flag is
          set to True.

        :param autoescape: boolean; when True, establishes an escape character
          within the LIKE expression, then applies it to all occurrences of
          ``"%"``, ``"_"`` and the escape character itself within the
          comparison value, which is assumed to be a literal string and not a
          SQL expression.

          An expression such as::

            somecolumn.startswith("foo%bar", autoescape=True)

          Will render as::

            somecolumn LIKE :param || '%' ESCAPE '/'

          With the value of ``:param`` as ``"foo/%bar"``.

        :param escape: a character which when given will render with the
          ``ESCAPE`` keyword to establish that character as the escape
          character.  This character can then be placed preceding occurrences
          of ``%`` and ``_`` to allow them to act as themselves and not
          wildcard characters.

          An expression such as::

            somecolumn.startswith("foo/%bar", escape="^")

          Will render as::

            somecolumn LIKE :param || '%' ESCAPE '^'

          The parameter may also be combined with
          :paramref:`.ColumnOperators.startswith.autoescape`::

            somecolumn.startswith("foo%bar^bat", escape="^", autoescape=True)

          Where above, the given literal parameter will be converted to
          ``"foo^%bar^^bat"`` before being passed to the database.

        .. seealso::

            :meth:`.ColumnOperators.endswith`

            :meth:`.ColumnOperators.contains`

            :meth:`.ColumnOperators.like`

        )r   startswith_opr   r    r<   s      r!   
startswithzColumnOperators.startswith  s    Z t||M5;F;;r#   c                 2     | j                   t        |fi |S )a?  Implement the 'endswith' operator.

        Produces a LIKE expression that tests against a match for the end
        of a string value::

            column LIKE '%' || <other>

        E.g.::

            stmt = select(sometable).\
                where(sometable.c.column.endswith("foobar"))

        Since the operator uses ``LIKE``, wildcard characters
        ``"%"`` and ``"_"`` that are present inside the <other> expression
        will behave like wildcards as well.   For literal string
        values, the :paramref:`.ColumnOperators.endswith.autoescape` flag
        may be set to ``True`` to apply escaping to occurrences of these
        characters within the string value so that they match as themselves
        and not as wildcard characters.  Alternatively, the
        :paramref:`.ColumnOperators.endswith.escape` parameter will establish
        a given character as an escape character which can be of use when
        the target expression is not a literal string.

        :param other: expression to be compared.   This is usually a plain
          string value, but can also be an arbitrary SQL expression.  LIKE
          wildcard characters ``%`` and ``_`` are not escaped by default unless
          the :paramref:`.ColumnOperators.endswith.autoescape` flag is
          set to True.

        :param autoescape: boolean; when True, establishes an escape character
          within the LIKE expression, then applies it to all occurrences of
          ``"%"``, ``"_"`` and the escape character itself within the
          comparison value, which is assumed to be a literal string and not a
          SQL expression.

          An expression such as::

            somecolumn.endswith("foo%bar", autoescape=True)

          Will render as::

            somecolumn LIKE '%' || :param ESCAPE '/'

          With the value of ``:param`` as ``"foo/%bar"``.

        :param escape: a character which when given will render with the
          ``ESCAPE`` keyword to establish that character as the escape
          character.  This character can then be placed preceding occurrences
          of ``%`` and ``_`` to allow them to act as themselves and not
          wildcard characters.

          An expression such as::

            somecolumn.endswith("foo/%bar", escape="^")

          Will render as::

            somecolumn LIKE '%' || :param ESCAPE '^'

          The parameter may also be combined with
          :paramref:`.ColumnOperators.endswith.autoescape`::

            somecolumn.endswith("foo%bar^bat", escape="^", autoescape=True)

          Where above, the given literal parameter will be converted to
          ``"foo^%bar^^bat"`` before being passed to the database.

        .. seealso::

            :meth:`.ColumnOperators.startswith`

            :meth:`.ColumnOperators.contains`

            :meth:`.ColumnOperators.like`

        )r   endswith_opr   s      r!   endswithzColumnOperators.endswith:  s    Z t||K9&99r#   c                 2     | j                   t        |fi |S )aX  Implement the 'contains' operator.

        Produces a LIKE expression that tests against a match for the middle
        of a string value::

            column LIKE '%' || <other> || '%'

        E.g.::

            stmt = select(sometable).\
                where(sometable.c.column.contains("foobar"))

        Since the operator uses ``LIKE``, wildcard characters
        ``"%"`` and ``"_"`` that are present inside the <other> expression
        will behave like wildcards as well.   For literal string
        values, the :paramref:`.ColumnOperators.contains.autoescape` flag
        may be set to ``True`` to apply escaping to occurrences of these
        characters within the string value so that they match as themselves
        and not as wildcard characters.  Alternatively, the
        :paramref:`.ColumnOperators.contains.escape` parameter will establish
        a given character as an escape character which can be of use when
        the target expression is not a literal string.

        :param other: expression to be compared.   This is usually a plain
          string value, but can also be an arbitrary SQL expression.  LIKE
          wildcard characters ``%`` and ``_`` are not escaped by default unless
          the :paramref:`.ColumnOperators.contains.autoescape` flag is
          set to True.

        :param autoescape: boolean; when True, establishes an escape character
          within the LIKE expression, then applies it to all occurrences of
          ``"%"``, ``"_"`` and the escape character itself within the
          comparison value, which is assumed to be a literal string and not a
          SQL expression.

          An expression such as::

            somecolumn.contains("foo%bar", autoescape=True)

          Will render as::

            somecolumn LIKE '%' || :param || '%' ESCAPE '/'

          With the value of ``:param`` as ``"foo/%bar"``.

        :param escape: a character which when given will render with the
          ``ESCAPE`` keyword to establish that character as the escape
          character.  This character can then be placed preceding occurrences
          of ``%`` and ``_`` to allow them to act as themselves and not
          wildcard characters.

          An expression such as::

            somecolumn.contains("foo/%bar", escape="^")

          Will render as::

            somecolumn LIKE '%' || :param || '%' ESCAPE '^'

          The parameter may also be combined with
          :paramref:`.ColumnOperators.contains.autoescape`::

            somecolumn.contains("foo%bar^bat", escape="^", autoescape=True)

          Where above, the given literal parameter will be converted to
          ``"foo^%bar^^bat"`` before being passed to the database.

        .. seealso::

            :meth:`.ColumnOperators.startswith`

            :meth:`.ColumnOperators.endswith`

            :meth:`.ColumnOperators.like`


        )r   contains_opr   s      r!   r   zColumnOperators.contains  s    \ t||K9&99r#   c                 2     | j                   t        |fi |S )a  Implements a database-specific 'match' operator.

        :meth:`_sql.ColumnOperators.match` attempts to resolve to
        a MATCH-like function or operator provided by the backend.
        Examples include:

        * PostgreSQL - renders ``x @@ to_tsquery(y)``
        * MySQL - renders ``MATCH (x) AGAINST (y IN BOOLEAN MODE)``

          .. seealso::

                :class:`_mysql.match` - MySQL specific construct with
                additional features.

        * Oracle - renders ``CONTAINS(x, y)``
        * other backends may provide special implementations.
        * Backends without any special implementation will emit
          the operator as "MATCH".  This is compatible with SQLite, for
          example.

        )r   match_opr   s      r!   matchzColumnOperators.match  s    , t||He6v66r#   c                 2    | j                  t        ||      S )a  Implements a database-specific 'regexp match' operator.

        E.g.::

            stmt = select(table.c.some_column).where(
                table.c.some_column.regexp_match('^(b|c)')
            )

        :meth:`_sql.ColumnOperators.regexp_match` attempts to resolve to
        a REGEXP-like function or operator provided by the backend, however
        the specific regular expression syntax and flags available are
        **not backend agnostic**.

        Examples include:

        * PostgreSQL - renders ``x ~ y`` or ``x !~ y`` when negated.
        * Oracle - renders ``REGEXP_LIKE(x, y)``
        * SQLite - uses SQLite's ``REGEXP`` placeholder operator and calls into
          the Python ``re.match()`` builtin.
        * other backends may provide special implementations.
        * Backends without any special implementation will emit
          the operator as "REGEXP" or "NOT REGEXP".  This is compatible with
          SQLite and MySQL, for example.

        Regular expression support is currently implemented for Oracle,
        PostgreSQL, MySQL and MariaDB.  Partial support is available for
        SQLite.  Support among third-party dialects may vary.

        :param pattern: The regular expression pattern string or column
          clause.
        :param flags: Any regular expression string flags to apply, passed as
          plain Python string only.  These flags are backend specific.
          Some backends, like PostgreSQL and MariaDB, may alternatively
          specify the flags as part of the pattern.
          When using the ignore case flag 'i' in PostgreSQL, the ignore case
          regexp match operator ``~*`` or ``!~*`` will be used.

        .. versionadded:: 1.4

        .. versionchanged:: 1.4.48, 2.0.18  Note that due to an implementation
           error, the "flags" parameter previously accepted SQL expression
           objects such as column expressions in addition to plain Python
           strings.   This implementation did not work correctly with caching
           and was removed; strings only should be passed for the "flags"
           parameter, as these flags are rendered as literal inline values
           within SQL expressions.

        .. seealso::

            :meth:`_sql.ColumnOperators.regexp_replace`


        flags)r   regexp_match_op)r   patternr   s      r!   regexp_matchzColumnOperators.regexp_match  s    l ||OWE|BBr#   c                 4    | j                  t        |||      S )a  Implements a database-specific 'regexp replace' operator.

        E.g.::

            stmt = select(
                table.c.some_column.regexp_replace(
                    'b(..)',
                    'XY',
                    flags='g'
                )
            )

        :meth:`_sql.ColumnOperators.regexp_replace` attempts to resolve to
        a REGEXP_REPLACE-like function provided by the backend, that
        usually emit the function ``REGEXP_REPLACE()``.  However,
        the specific regular expression syntax and flags available are
        **not backend agnostic**.

        Regular expression replacement support is currently implemented for
        Oracle, PostgreSQL, MySQL 8 or greater and MariaDB.  Support among
        third-party dialects may vary.

        :param pattern: The regular expression pattern string or column
          clause.
        :param pattern: The replacement string or column clause.
        :param flags: Any regular expression string flags to apply, passed as
          plain Python string only.  These flags are backend specific.
          Some backends, like PostgreSQL and MariaDB, may alternatively
          specify the flags as part of the pattern.

        .. versionadded:: 1.4

        .. versionchanged:: 1.4.48, 2.0.18  Note that due to an implementation
           error, the "flags" parameter previously accepted SQL expression
           objects such as column expressions in addition to plain Python
           strings.   This implementation did not work correctly with caching
           and was removed; strings only should be passed for the "flags"
           parameter, as these flags are rendered as literal inline values
           within SQL expressions.


        .. seealso::

            :meth:`_sql.ColumnOperators.regexp_match`

        replacementr   )r   regexp_replace_op)r   r   r   r   s       r!   regexp_replacezColumnOperators.regexp_replace)  s$    ^ ||wKu  
 	
r#   c                 ,    | j                  t              S )zLProduce a :func:`_expression.desc` clause against the
        parent object.)r   desc_opr'   s    r!   desczColumnOperators.desc\  s     ||G$$r#   c                 ,    | j                  t              S )zKProduce a :func:`_expression.asc` clause against the
        parent object.)r   asc_opr'   s    r!   asczColumnOperators.asca  s     ||F##r#   c                 ,    | j                  t              S )a*  Produce a :func:`_expression.nulls_first` clause against the
        parent object.

        .. versionchanged:: 1.4 The ``nulls_first()`` operator is
           renamed from ``nullsfirst()`` in previous releases.
           The previous name remains available for backwards compatibility.
        )r   nulls_first_opr'   s    r!   nulls_firstzColumnOperators.nulls_firstf  s     ||N++r#   c                 ,    | j                  t              S )a'  Produce a :func:`_expression.nulls_last` clause against the
        parent object.

        .. versionchanged:: 1.4 The ``nulls_last()`` operator is
           renamed from ``nullslast()`` in previous releases.
           The previous name remains available for backwards compatibility.
        )r   nulls_last_opr'   s    r!   
nulls_lastzColumnOperators.nulls_lasts  s     ||M**r#   c                 .    | j                  t        |      S )zProduce a :func:`_expression.collate` clause against
        the parent object, given the collation string.

        .. seealso::

            :func:`_expression.collate`

        )r   collate)r   	collations     r!   r   zColumnOperators.collate  s     ||GY//r#   c                 .    | j                  t        |      S )zaImplement the ``+`` operator in reverse.

        See :meth:`.ColumnOperators.__add__`.

        )r>   r   r   s     r!   __radd__zColumnOperators.__radd__       ##C//r#   c                 .    | j                  t        |      S )zaImplement the ``-`` operator in reverse.

        See :meth:`.ColumnOperators.__sub__`.

        )r>   r   r   s     r!   __rsub__zColumnOperators.__rsub__  r   r#   c                 .    | j                  t        |      S )zaImplement the ``*`` operator in reverse.

        See :meth:`.ColumnOperators.__mul__`.

        )r>   r   r   s     r!   __rmul__zColumnOperators.__rmul__  r   r#   c                 .    | j                  t        |      S )zaImplement the ``/`` operator in reverse.

        See :meth:`.ColumnOperators.__div__`.

        )r>   r   r   s     r!   __rdiv__zColumnOperators.__rdiv__  r   r#   c                 .    | j                  t        |      S )zaImplement the ``%`` operator in reverse.

        See :meth:`.ColumnOperators.__mod__`.

        )r>   r   r   s     r!   __rmod__zColumnOperators.__rmod__  r   r#   c                 4    | j                  t        |||      S )zzProduce a :func:`_expression.between` clause against
        the parent object, given the lower and upper range.

        	symmetric)r   
between_op)r   cleftcrightr   s       r!   betweenzColumnOperators.between  s    
 ||Jv|KKr#   c                 ,    | j                  t              S )zZProduce a :func:`_expression.distinct` clause against the
        parent object.

        )r   distinct_opr'   s    r!   distinctzColumnOperators.distinct  s    
 ||K((r#   c                 ,    | j                  t              S )a  Produce an :func:`_expression.any_` clause against the
        parent object.

        See the documentation for :func:`_sql.any_` for examples.

        .. note:: be sure to not confuse the newer
            :meth:`_sql.ColumnOperators.any_` method with its older
            :class:`_types.ARRAY`-specific counterpart, the
            :meth:`_types.ARRAY.Comparator.any` method, which a different
            calling syntax and usage pattern.

        .. versionadded:: 1.1

        )r   any_opr'   s    r!   any_zColumnOperators.any_  s     ||F##r#   c                 ,    | j                  t              S )a  Produce an :func:`_expression.all_` clause against the
        parent object.

        See the documentation for :func:`_sql.all_` for examples.

        .. note:: be sure to not confuse the newer
            :meth:`_sql.ColumnOperators.all_` method with its older
            :class:`_types.ARRAY`-specific counterpart, the
            :meth:`_types.ARRAY.Comparator.all` method, which a different
            calling syntax and usage pattern.


        .. versionadded:: 1.1

        )r   all_opr'   s    r!   all_zColumnOperators.all_  s      ||F##r#   c                 .    | j                  t        |      S )a4  Implement the ``+`` operator.

        In a column context, produces the clause ``a + b``
        if the parent object has non-string affinity.
        If the parent object has a string affinity,
        produces the concatenation operator, ``a || b`` -
        see :meth:`.ColumnOperators.concat`.

        )r   r   r   s     r!   __add__zColumnOperators.__add__  s     ||C''r#   c                 .    | j                  t        |      S )zdImplement the ``-`` operator.

        In a column context, produces the clause ``a - b``.

        )r   r   r   s     r!   __sub__zColumnOperators.__sub__       ||C''r#   c                 .    | j                  t        |      S )zdImplement the ``*`` operator.

        In a column context, produces the clause ``a * b``.

        )r   r   r   s     r!   __mul__zColumnOperators.__mul__  r   r#   c                 .    | j                  t        |      S )zdImplement the ``/`` operator.

        In a column context, produces the clause ``a / b``.

        )r   r   r   s     r!   __div__zColumnOperators.__div__   r   r#   c                 .    | j                  t        |      S )zdImplement the ``%`` operator.

        In a column context, produces the clause ``a % b``.

        )r   r   r   s     r!   __mod__zColumnOperators.__mod__  r   r#   c                 .    | j                  t        |      S )zeImplement the ``//`` operator.

        In a column context, produces the clause ``a / b``.

        )r   r   r   s     r!   __truediv__zColumnOperators.__truediv__  s     ||GU++r#   c                 .    | j                  t        |      S )zfImplement the ``//`` operator in reverse.

        See :meth:`.ColumnOperators.__truediv__`.

        )r>   r   r   s     r!   __rtruediv__zColumnOperators.__rtruediv__  s     ##GU33r#   r+   F)Ar?   r@   rA   rB   rC   	timetupler\   r_   r   rP   rM   rc   re   rg   isnot_distinct_fromri   rk   rm   ro   rr   rt   rw   rz   r|   r   r   r   r   notin_r   notliker   notiliker   r   isnotr   r   r   r   r   r   r   r   r   
nullsfirstr   	nullslastr   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r#   r!   rZ   rZ   ?  s\   #J IIB'' !!H''	59  /''!-,++.6;2<:W*r.: F>$ G?$ H(+$ EM<^M:^N:`706Cp1
f%
$
, J+ I	000000L)$"$$
(((((,4r#   rZ   c                 0    t         j                  |        | S r+   )_commutativer   fns    r!   commutative_opr   %  s    RIr#   c                 0    t         j                  |        | S r+   )_comparisonr   r   s    r!   comparison_opr   *  s    OOBIr#   c                      t               r+   r9   r   r#   r!   from_r   /      

r#   c                      t               r+   r   r   r#   r!   function_as_comparison_opr   3  s    

r#   c                      t               r+   r   r   r#   r!   as_r   8  r   r#   c                      t               r+   r   r   r#   r!   existsr   <  r   r#   c                     t               r+   r   as    r!   is_truer  @  r   r#   c                     t               r+   r   r  s    r!   is_falser  H  r   r#   c                 $    | j                  |      S r+   )re   r  bs     r!   re   re   P  s    a  r#   c                 $    | j                  |      S r+   )rg   r  s     r!   rg   rg   U  s    !!!$$r#   c                 $    | j                  |      S r+   )r   r  s     r!   r   r   ^      558Or#   c                 $    | j                  |      S r+   )r   r  s     r!   r   r   c      88A;r#   c                 $    | j                  |      S r+   )r   r  s     r!   r   r   l  s    99Q<r#   c                 0     | j                  |      |      S r+   r5   )r  r/   r	  s      r!   r3   r3   p  s    144>!r#   Nc                 (    | j                  ||      S Nr~   )r   r  r	  r   s      r!   r   r   t  s    66!F6##r#   c                 (    | j                  ||      S r  )r   r  s      r!   not_like_opr  y  s    99Qv9&&r#   c                 (    | j                  ||      S r  )r   r  s      r!   r   r     s    771V7$$r#   c                 (    | j                  ||      S r  )r   r  s      r!   not_ilike_opr    s    ;;q;((r#   c                 *    | j                  |||      S Nr   r   r  r	  cr   s       r!   r   r     s    99QY9//r#   c                 ,    | j                  |||       S r  r  r  s       r!   not_between_opr    s    IIaiI000r#   c                 $    | j                  |      S r+   )r   r  s     r!   r   r     r  r#   c                 $    | j                  |      S r+   )r   r  s     r!   r   r     r  r#   c                 "    | j                         S r+   )r   r  s    r!   r   r     s    ::<r#   c                 "    | j                         S r+   )r   r  s    r!   r   r         668Or#   c                 "    | j                         S r+   )r   r  s    r!   r   r     r$  r#   c                 4   |r|durt        j                  d       |d}t        |t         j                  j                        st        d      |dvr|j                  |||z         }|j                  d|dz         j                  d|dz         } | ||      S )	NTz;The autoescape parameter is now a simple boolean True/False/z*String value expected when autoescape=True)%_r(  r)  r~   )r   warnrK   compatstring_types	TypeErrorreplace)r   r    r   
autoescapes       r!   _escaped_like_implr0    s    T!IIM >F%!9!9:HII#MM&&6/:Ec6C<088fslKeF##r#   c                 2    t        | j                  |||      S r+   r0  r   r  r	  r   r/  s       r!   r   r     s    allAvzBBr#   c                 4    t        | j                  |||       S r+   r2  r3  s       r!   not_startswith_opr5    s    q||Q
CCCr#   c                 2    t        | j                  |||      S r+   r0  r   r3  s       r!   r   r         ajj!VZ@@r#   c                 4    t        | j                  |||       S r+   r7  r3  s       r!   not_endswith_opr:        qzz1fjAAAr#   c                 2    t        | j                  |||      S r+   r0  r   r3  s       r!   r   r     r8  r#   c                 4    t        | j                  |||       S r+   r=  r3  s       r!   not_contains_opr?    r;  r#   c                 (     | j                   |fi |S r+   r   r  r	  rW   s      r!   r   r     s    1771r#   c                 (    | j                  ||      S Nr   r   r  r	  r   s      r!   r   r     s    >>!5>))r#   c                 *    | j                  ||       S rD  rE  rF  s      r!   not_regexp_match_oprH     s    NN1EN***r#   c                 *    | j                  |||      S )Nr   )r   )r  r	  r   r   s       r!   r   r     s    A;eDDr#   c                 *     | j                   |fi | S r+   rA  rB  s      r!   not_match_oprK  	  s    AGGAr#   c                     t               r+   r   r  s     r!   comma_oprM    r   r#   c                     t               r+   r   r  s     r!   	filter_oprO    r   r#   c                 l    	 | j                   } ||      S # t        $ r |j                  |       cY S w xY wr+   )rz   AttributeErrorr|   )r  r	  rz   s      r!   ry   ry     s;     ay  zz!}s    33c                 "    | j                         S r+   )r   r  s    r!   r   r   #  r$  r#   c                 "    | j                         S r+   )r   r  s    r!   r   r   '  s    557Nr#   c                 "    | j                         S r+   )r   r  s    r!   r   r   +  s    ==?r#   c                 "    | j                         S r+   )r   r  s    r!   r   r   3  s    <<>r#   c                     t               r+   r   r  s     r!   json_getitem_oprW  ;  r   r#   c                     t               r+   r   r  s     r!   json_path_getitem_oprY  ?  r   r#   c                 R    | t         v xs t        | t              xr | j                  S r+   )r   rK   r.   r1   r5   s    r!   r1   r1   C  s$    N
2y 9 Nb>N>NNr#   c                     | t         v S r+   )r   r5   s    r!   is_commutativer\  G      r#   c                 2    | t         t        t        t        fv S r+   )r   r   r   r   r5   s    r!   is_ordering_modifierr_  K  s    &'>=AAAr#   c                 R    | t         v xs t        | t              xr | j                  S r+   )_natural_self_precedentrK   r.   rF   r5   s    r!   is_natural_self_precedentrb  O  s-    
%% 	&b)$ &%%r#   c                 ,    t        |       xs | t        v S r+   )r1   	_booleansr5   s    r!   
is_booleanre  Z  s    /i/r#   c                 .    t         j                  | |       S )z[rotate a comparison operator 180 degrees.

    Note this is not the same as negation.

    )_mirrorgetr5   s    r!   mirrorri  a  s     ;;r2r#   c                     | t         v S r+   )_associativer5   s    r!   is_associativerl  m  r]  r#   _asbooli)	canonical	_smallesti_largestd                        c           	          | |u rt        |       ryt        j                  | t        | dt                    t        j                  |t        |dt
                    k  S )NFr0   )rb  _PRECEDENCErh  getattrro  rp  )r,   r-   s     r!   is_precedentr}    sR    78Bghi@
__Wgg|X&NOP 	Pr#   r+   r   )NF)nrB   r,   r   r   r   r   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r   r    r   py2kr   objectr   r.   rZ   r   r   r   r   r   r   r   r   r  istruer  isfalsere   rg   r   r   r   r   r   r3   r   r  r   r   r  r   r   r  notbetween_opr   r   notin_opr   r   r   r0  r   r5  notstartswith_opr   r:  notendswith_opr   r?  notcontains_opr   r   rH  r   rK  notmatch_oprM  rO  ry   r   r   r   nullsfirst_opr   nullslast_oprW  rY  r1   r\  r_  rb  rd  re  rg  ri  union
differencerk  rl  ra  symbolrm  ro  rp  r{  r}  r   r#   r!   <module>r     s   1                     99
CL+ L+^C/ C/L_4i _4D BS!2r2r2&

        
 
 
  ! ! % %
 +     
 	 $ $ ' '
 
 % % ) )
  0 0 1 1
     
 $( C C D D
 %  A A B B
 ! A A B B
 !   * * + +E  
   
 
   OB '8T3/	0 r2r2r2r
* !!9dC"89DDb"XN ',,o34  $++i3
/DKKt4	4;;zS17	27r7 B7 B	7
 R7 R7 "7 7 Q7 7 7 7 7 7 q7  q!7" a#7$ !%7& Q'7( )7* q+7, a-7. !/70 Q172 374 
1576 q778 97: A;7< =7> ?7@ aA7B !C7D E7F G7H I7J K7L M7N AO7P Q7R S7T QU7V aW7X 	!Y7Z [7\ b]7^ Q_7` Aa7b Qc7d e7f Ag7h Syhm7tPr#   