L iwNddlmZddlZddlmZddlmZddlmZddlmZddlmZddlm Z dd lm Z dd lm Z d d l m Zd dl mZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dlmZd dl m!Z!d dl m"Z"e rd dlm#Z#d dlm$Z$d dlm%Z%e de Z&e d!e ed"f Z'Gd#d$eeZ(Gd%d&ee(ee'Z)Gd'd(e(eZ*Gd)d*ee(eZ+Gd+d,e(eejXZ-e d-d. Z.d0d/Z/y)1) annotationsN)Any) AsyncIterator)Optional)overload)Sequence)Tuple) TYPE_CHECKING)TypeVar)exc)util)Result)_NO_ROW)_R) _WithKeys) FilterResult) FrozenResult)ResultMetaData)Row) RowMapping) _generative)greenlet_spawn)Literal)Self) CursorResult) _KeyIndexType)_UniqueFilterType_T)bound_TP.c@eZdZUdZded<ded<d dZed dZy) AsyncCommon Result[Any] _real_resultr _metadatac^Kt|jjd{y7w)zClose this result.N)rr'closeselfs c/mnt/ssd/data/python-lab/Trading/venv/lib/python3.12/site-packages/sqlalchemy/ext/asyncio/result.pyr*zAsyncCommon.close2s"T..44555s #-+-c.|jjS)zproxies the .closed attribute of the underlying result object, if any, else raises ``AttributeError``. .. versionadded:: 2.0.0b3 )r'closedr+s r-r/zAsyncCommon.closed7s  '''N)returnNone)r1bool)__name__ __module__ __qualname__ __slots____annotations__r*propertyr/r%r0r-r$r$,s,I6 ((r0r$ceZdZUdZdZded<d$dZed%dZd%dZ e d&d'd Z d(d Z d& d)d Z d*d Zd+d Z d& d,dZd*dZd-dZd.dZd+dZd+dZed/dZed0dZd0dZe d1dZed2dZd2dZd.dZed1dZed0dZd0dZd3dZe d4dZed5d Zed6d7d!Zd6d7d"Zd8d#Zy)9 AsyncResultalAn asyncio wrapper around a :class:`_result.Result` object. The :class:`_asyncio.AsyncResult` only applies to statement executions that use a server-side cursor. It is returned only from the :meth:`_asyncio.AsyncConnection.stream` and :meth:`_asyncio.AsyncSession.stream` methods. .. note:: As is the case with :class:`_engine.Result`, this object is used for ORM results returned by :meth:`_asyncio.AsyncSession.execute`, which can yield instances of ORM mapped objects either individually or within tuple-like rows. Note that these result objects do not deduplicate instances or rows automatically as is the case with the legacy :class:`_orm.Query` object. For in-Python de-duplication of instances or rows, use the :meth:`_asyncio.AsyncResult.unique` modifier method. .. versionadded:: 1.4 r% Result[_TP]r'c||_|j|_|j|_|j|_d|_d|j vr |j d|j dyy)N _row_getter)r'r(_unique_filter_state_source_supports_scalars_post_creational_filter__dict___set_memoized_attribute)r, real_results r-__init__zAsyncResult.__init__[sn'$..$/$D$D!(3(L(L%'+$ K00 0  ( ({33MB  1r0c|S)zApply a "typed tuple" typing filter to returned rows. The :attr:`_asyncio.AsyncResult.t` attribute is a synonym for calling the :meth:`_asyncio.AsyncResult.tuples` method. .. versionadded:: 2.0 r%r+s r-tz AsyncResult.tjs  r0c|S)aBApply a "typed tuple" typing filter to returned rows. This method returns the same :class:`_asyncio.AsyncResult` object at runtime, however annotates as returning a :class:`_asyncio.AsyncTupleResult` object that will indicate to :pep:`484` typing tools that plain typed ``Tuple`` instances are returned rather than rows. This allows tuple unpacking and ``__getitem__`` access of :class:`_engine.Row` objects to by typed, for those cases where the statement invoked itself included typing information. .. versionadded:: 2.0 :return: the :class:`_result.AsyncTupleResult` type at typing time. .. seealso:: :attr:`_asyncio.AsyncResult.t` - shorter synonym :attr:`_engine.Row.t` - :class:`_engine.Row` version r%r+s r-tupleszAsyncResult.tuplesvs 0 r0Nc(t|f|_|S)zApply unique filtering to the objects returned by this :class:`_asyncio.AsyncResult`. Refer to :meth:`_engine.Result.unique` in the synchronous SQLAlchemy API for a complete behavioral description. setr?r,strategys r-uniquezAsyncResult.uniques&)UH$5! r0c$|j|S)zEstablish the columns that should be returned in each row. Refer to :meth:`_engine.Result.columns` in the synchronous SQLAlchemy API for a complete behavioral description. _column_slicesr,col_expressionss r-columnszAsyncResult.columnss""?33r0cfK|j} t|||d{}|r|ny7w)aIterate through sub-lists of rows of the size given. An async iterator is returned:: async def scroll_results(connection): result = await connection.stream(select(users_table)) async for partition in result.partitions(100): print("list of rows: %s" % partition) Refer to :meth:`_engine.Result.partitions` in the synchronous SQLAlchemy API for a complete behavioral description. N_manyrow_getterrr,sizegetter partitions r- partitionszAsyncResult.partitionss:$%%,VT4@@I @ 1/1cHKt|jd{S7w)zcA synonym for the :meth:`_asyncio.AsyncResult.all` method. .. versionadded:: 2.0 Nr_allrowsr+s r-fetchallzAsyncResult.fetchalls$DMM2222 " "c`Kt|j|d{}|tury|S7w)aFetch one row. When all rows are exhausted, returns None. This method is provided for backwards compatibility with SQLAlchemy 1.x.x. To fetch the first row of a result only, use the :meth:`_asyncio.AsyncResult.first` method. To iterate through all rows, iterate the :class:`_asyncio.AsyncResult` object directly. :return: a :class:`_engine.Row` object if no filters are applied, or ``None`` if no rows remain. Nr_onerow_getterrr,rows r-fetchonezAsyncResult.fetchones1 #4#6#6== '>J > .,.cLKt|j||d{S7w)aFetch many rows. When all rows are exhausted, returns an empty list. This method is provided for backwards compatibility with SQLAlchemy 1.x.x. To fetch rows in groups, use the :meth:`._asyncio.AsyncResult.partitions` method. :return: a list of :class:`_engine.Row` objects. .. seealso:: :meth:`_asyncio.AsyncResult.partitions` NrrXr,rZs r- fetchmanyzAsyncResult.fetchmanys#*$D$8$8$EEEE $"$cHKt|jd{S7w)zReturn all rows in a list. Closes the result set after invocation. Subsequent invocations will return an empty list. :return: a list of :class:`_engine.Row` objects. Nr`r+s r-allzAsyncResult.alls$DMM2222rcc|SNr%r+s r- __aiter__zAsyncResult.__aiter__ r0crKt|j|d{}|tur t|S7wrsrrfrStopAsyncIterationrgs r- __anext__zAsyncResult.__anext__5"4#6#6== '>$& &J > 757cNKt|jdddd{S7w)aFetch the first row or ``None`` if no row is present. Closes the result set and discards remaining rows. .. note:: This method returns one **row**, e.g. tuple, by default. To return exactly one single scalar value, that is, the first column of the first row, use the :meth:`_asyncio.AsyncResult.scalar` method, or combine :meth:`_asyncio.AsyncResult.scalars` and :meth:`_asyncio.AsyncResult.first`. Additionally, in contrast to the behavior of the legacy ORM :meth:`_orm.Query.first` method, **no limit is applied** to the SQL query which was invoked to produce this :class:`_asyncio.AsyncResult`; for a DBAPI driver that buffers results in memory before yielding rows, all rows will be sent to the Python process and all but the first row will be discarded. .. seealso:: :ref:`migration_20_unify_select` :return: a :class:`_engine.Row` object, or None if no rows remain. .. seealso:: :meth:`_asyncio.AsyncResult.scalar` :meth:`_asyncio.AsyncResult.one` FNr _only_one_rowr+s r-firstzAsyncResult.first s&D$D$6$6ueLLLL %#%cNKt|jdddd{S7w)aReturn at most one result or raise an exception. Returns ``None`` if the result has no rows. Raises :class:`.MultipleResultsFound` if multiple rows are returned. .. versionadded:: 1.4 :return: The first :class:`_engine.Row` or ``None`` if no row is available. :raises: :class:`.MultipleResultsFound` .. seealso:: :meth:`_asyncio.AsyncResult.first` :meth:`_asyncio.AsyncResult.one` TFNr}r+s r- one_or_nonezAsyncResult.one_or_none0s%*$D$6$6eUKKKKrc Kywrsr%r+s r- scalar_onezAsyncResult.scalar_oneGs >Ac Kywrsr%r+s r-rzAsyncResult.scalar_oneJ '*rcNKt|jdddd{S7w)aBReturn exactly one scalar result or raise an exception. This is equivalent to calling :meth:`_asyncio.AsyncResult.scalars` and then :meth:`_asyncio.AsyncScalarResult.one`. .. seealso:: :meth:`_asyncio.AsyncScalarResult.one` :meth:`_asyncio.AsyncResult.scalars` TNr}r+s r-rzAsyncResult.scalar_oneMs%$D$6$6dDIIIIrc Kywrsr%r+s r-scalar_one_or_nonezAsyncResult.scalar_one_or_none\s rc Kywrsr%r+s r-rzAsyncResult.scalar_one_or_noneas 9Ktt|d{S7w)aReturn a callable object that will produce copies of this :class:`_asyncio.AsyncResult` when invoked. The callable object returned is an instance of :class:`_engine.FrozenResult`. This is used for result set caching. The method must be called on the result when it has been unconsumed, and calling the method will consume the result fully. When the :class:`_engine.FrozenResult` is retrieved from a cache, it can be called any number of times where it will produce a new :class:`_engine.Result` object each time against its stored set of rows. .. seealso:: :ref:`do_orm_execute_re_executing` - example usage within the ORM to implement a result-set cache. N)rrr+s r-freezezAsyncResult.freezes*$L$7777s cyrsr%r,indexs r-scalarszAsyncResult.scalarss!$r0cyrsr%r+s r-rzAsyncResult.scalarssHKr0cyrsr%rs r-rzAsyncResult.scalarssKNr0c.t|j|S)a>Return an :class:`_asyncio.AsyncScalarResult` filtering object which will return single elements rather than :class:`_row.Row` objects. Refer to :meth:`_result.Result.scalars` in the synchronous SQLAlchemy API for a complete behavioral description. :param index: integer or row key indicating the column to be fetched from each row, defaults to ``0`` indicating the first column. :return: a new :class:`_asyncio.AsyncScalarResult` filtering object referring to this :class:`_asyncio.AsyncResult` object. )AsyncScalarResultr'rs r-rzAsyncResult.scalarss!!2!2E::r0c,t|jS)aApply a mappings filter to returned rows, returning an instance of :class:`_asyncio.AsyncMappingResult`. When this filter is applied, fetching rows will return :class:`_engine.RowMapping` objects instead of :class:`_engine.Row` objects. :return: a new :class:`_asyncio.AsyncMappingResult` filtering object referring to the underlying :class:`_result.Result` object. )AsyncMappingResultr'r+s r-mappingszAsyncResult.mappingss"$"3"344r0)rDr<)r1zAsyncTupleResult[_TP]rsrNzOptional[_UniqueFilterType]r1rrTrr1r)rZ Optional[int]r1z!AsyncIterator[Sequence[Row[_TP]]])r1Sequence[Row[_TP]])r1zOptional[Row[_TP]])rZrr1r)r1zAsyncResult[_TP])r1zRow[_TP])r,AsyncResult[Tuple[_T]]r1r r1r)r,rr1 Optional[_T]r1z Optional[Any])r1zFrozenResult[_TP])r,rrz Literal[0]r1AsyncScalarResult[_T])r,rr1r)r)rrr1zAsyncScalarResult[Any]r1r)r4r5r6__doc__r7r8rEr9rGrIrrOrUr]rbrirnrqrtryrrrrrrrrrrr%r0r-r;r;Bs(I   4  4%)! *63.%)F!F F. 3"MHL.AA ** J$ << KK>GG &&L 8.$$$-7$ $$KK NN; 5r0r;ceZdZdZdZdZddZ d ddZ d ddZddZ ddd Z dd Z dd Z dd Z dd ZddZddZy)raA wrapper for a :class:`_asyncio.AsyncResult` that returns scalar values rather than :class:`_row.Row` values. The :class:`_asyncio.AsyncScalarResult` object is acquired by calling the :meth:`_asyncio.AsyncResult.scalars` method. Refer to the :class:`_result.ScalarResult` object in the synchronous SQLAlchemy API for a complete behavioral description. .. versionadded:: 1.4 r%Fc||_|jr|j|_d|_n;|jj |g|_t j d|_|j|_yNr)r'r@r(rA_reduceoperator itemgetterr?)r,rDrs r-rEzAsyncScalarResult.__init__sc'  / /(22DN+/D ((22::E7CDN+3+>+>q+AD ($/$D$D!r0Nc(t|f|_|S)zApply unique filtering to the objects returned by this :class:`_asyncio.AsyncScalarResult`. See :meth:`_asyncio.AsyncResult.unique` for usage details. rKrMs r-rOzAsyncScalarResult.unique&)UH$5! r0cfK|j} t|||d{}|r|ny7w)zIterate through sub-lists of elements of the size given. Equivalent to :meth:`_asyncio.AsyncResult.partitions` except that scalar values, rather than :class:`_engine.Row` objects, are returned. NrWrYs r-r]zAsyncScalarResult.partitions:%%,VT4@@I @r^cHKt|jd{S7w)z@A synonym for the :meth:`_asyncio.AsyncScalarResult.all` method.Nr`r+s r-rbzAsyncScalarResult.fetchall)$DMM2222rccLKt|j||d{S7w)zFetch many objects. Equivalent to :meth:`_asyncio.AsyncResult.fetchmany` except that scalar values, rather than :class:`_engine.Row` objects, are returned. Nrlrms r-rnzAsyncScalarResult.fetchmany.s#$D$8$8$EEEErocHKt|jd{S7w)zReturn all scalar values in a list. Equivalent to :meth:`_asyncio.AsyncResult.all` except that scalar values, rather than :class:`_engine.Row` objects, are returned. Nr`r+s r-rqzAsyncScalarResult.all8s$DMM2222rcc|Srsr%r+s r-rtzAsyncScalarResult.__aiter__Brur0crKt|j|d{}|tur t|S7wrsrwrgs r-ryzAsyncScalarResult.__anext__Erzr{cNKt|jdddd{S7w)zFetch the first object or ``None`` if no object is present. Equivalent to :meth:`_asyncio.AsyncResult.first` except that scalar values, rather than :class:`_engine.Row` objects, are returned. FNr}r+s r-rzAsyncScalarResult.firstL%$D$6$6ueLLLLrcNKt|jdddd{S7w)zReturn at most one object or raise an exception. Equivalent to :meth:`_asyncio.AsyncResult.one_or_none` except that scalar values, rather than :class:`_engine.Row` objects, are returned. TFNr}r+s r-rzAsyncScalarResult.one_or_noneV%$D$6$6eUKKKKrcNKt|jdddd{S7w)zReturn exactly one object or raise an exception. Equivalent to :meth:`_asyncio.AsyncResult.one` except that scalar values, rather than :class:`_engine.Row` objects, are returned. TFNr}r+s r-rzAsyncScalarResult.one`%$D$6$6dEJJJJr)rDr&rrrsrrZrr1zAsyncIterator[Sequence[_R]]r1 Sequence[_R]rZrr1r)r1zAsyncScalarResult[_R]r1rr1z Optional[_R])r4r5r6rr7_generate_rowsrErOr]rbrnrqrtryrrrr%r0r-rrs{ IN E15 -   %)! $(3 F3MLKr0rceZdZdZdZdZejdZddZ d ddZ ddZ d dd Z dd Z dd Z d dd Zdd ZddZddZddZddZddZy)raA wrapper for a :class:`_asyncio.AsyncResult` that returns dictionary values rather than :class:`_engine.Row` values. The :class:`_asyncio.AsyncMappingResult` object is acquired by calling the :meth:`_asyncio.AsyncResult.mappings` method. Refer to the :class:`_result.MappingResult` object in the synchronous SQLAlchemy API for a complete behavioral description. .. versionadded:: 1.4 r%T_mappingc||_|j|_|j|_|jr"|jj dg|_yyr)r'r?r(r@r)r,results r-rEzAsyncMappingResult.__init__sK"$*$?$?!))  * *!^^33QC8DN +r0Nc(t|f|_|S)zApply unique filtering to the objects returned by this :class:`_asyncio.AsyncMappingResult`. See :meth:`_asyncio.AsyncResult.unique` for usage details. rKrMs r-rOzAsyncMappingResult.uniquerr0c$|j|S)z:Establish the columns that should be returned in each row.rQrSs r-rUzAsyncMappingResult.columnss""?33r0cfK|j} t|||d{}|r|ny7w)zIterate through sub-lists of elements of the size given. Equivalent to :meth:`_asyncio.AsyncResult.partitions` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. NrWrYs r-r]zAsyncMappingResult.partitionsrr^cHKt|jd{S7w)zAA synonym for the :meth:`_asyncio.AsyncMappingResult.all` method.Nr`r+s r-rbzAsyncMappingResult.fetchallrrcc`Kt|j|d{}|tury|S7w)zFetch one object. Equivalent to :meth:`_asyncio.AsyncResult.fetchone` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. Nrergs r-rizAsyncMappingResult.fetchones1#4#6#6== '>J >rjcLKt|j||d{S7w)zFetch many rows. Equivalent to :meth:`_asyncio.AsyncResult.fetchmany` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. Nrlrms r-rnzAsyncMappingResult.fetchmanys#$D$8$8$EEEErocHKt|jd{S7w)zReturn all rows in a list. Equivalent to :meth:`_asyncio.AsyncResult.all` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. Nr`r+s r-rqzAsyncMappingResult.alls$DMM2222rcc|Srsr%r+s r-rtzAsyncMappingResult.__aiter__rur0crKt|j|d{}|tur t|S7wrsrwrgs r-ryzAsyncMappingResult.__anext__rzr{cNKt|jdddd{S7w)zFetch the first object or ``None`` if no object is present. Equivalent to :meth:`_asyncio.AsyncResult.first` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. FNr}r+s r-rzAsyncMappingResult.firstrrcNKt|jdddd{S7w)zReturn at most one object or raise an exception. Equivalent to :meth:`_asyncio.AsyncResult.one_or_none` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. TFNr}r+s r-rzAsyncMappingResult.one_or_nonerrcNKt|jdddd{S7w)zReturn exactly one object or raise an exception. Equivalent to :meth:`_asyncio.AsyncResult.one` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned. TFNr}r+s r-rzAsyncMappingResult.onerr)rr&rsrr)rZrr1z#AsyncIterator[Sequence[RowMapping]])r1Sequence[RowMapping])r1zOptional[RowMapping])rZrr1rr)r1r)r4r5r6rr7rr attrgetterrArErOrUr]rbrirnrqrtryrrrr%r0r-rrks IN1h11*=915 -   4 %)! ,(3  %) F! F  F 3MLKr0rc eZdZdZdZery d ddZddZddZdddZ ddZ dd Z dd Z dd Z dd Zdd ZeddZeddZddZe d dZed!dZd!dZe d dZeddZddZyy)"AsyncTupleResultaA :class:`_asyncio.AsyncResult` that's typed as returning plain Python tuples instead of rows. Since :class:`_engine.Row` acts like a tuple in every way already, this class is a typing only class, regular :class:`_asyncio.AsyncResult` is still used at runtime. r%Nc Kyw)zIterate through sub-lists of elements of the size given. Equivalent to :meth:`_result.Result.partitions` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%rms r-r]zAsyncTupleResult.partitionss  rc Kyw)zFetch one tuple. Equivalent to :meth:`_result.Result.fetchone` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%r+s r-rizAsyncTupleResult.fetchone  rc Kyw)z:A synonym for the :meth:`_engine.ScalarResult.all` method.Nr%r+s r-rbzAsyncTupleResult.fetchall$s rc Kyw)zFetch many objects. Equivalent to :meth:`_result.Result.fetchmany` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%rms r-rnzAsyncTupleResult.fetchmany(rrc Kyw)zReturn all scalar values in a list. Equivalent to :meth:`_result.Result.all` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%r+s r-rqzAsyncTupleResult.all2rrcyrsr%r+s r-rtzAsyncTupleResult.__aiter__<sr0c Kywrsr%r+s r-ryzAsyncTupleResult.__anext__>src Kyw)zFetch the first object or ``None`` if no object is present. Equivalent to :meth:`_result.Result.first` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%r+s r-rzAsyncTupleResult.first@s  rc Kyw)zReturn at most one object or raise an exception. Equivalent to :meth:`_result.Result.one_or_none` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%r+s r-rzAsyncTupleResult.one_or_noneKrrc Kyw)zReturn exactly one object or raise an exception. Equivalent to :meth:`_result.Result.one` except that tuple values, rather than :class:`_engine.Row` objects, are returned. Nr%r+s r-rzAsyncTupleResult.oneUrrc Kywrsr%r+s r-rzAsyncTupleResult.scalar_one_s GJrc Kywrsr%r+s r-rzAsyncTupleResult.scalar_onebs +.rc Kyw)aLReturn exactly one scalar result or raise an exception. This is equivalent to calling :meth:`_engine.Result.scalars` and then :meth:`_engine.AsyncScalarResult.one`. .. seealso:: :meth:`_engine.AsyncScalarResult.one` :meth:`_engine.Result.scalars` Nr%r+s r-rzAsyncTupleResult.scalar_onee  rc Kywrsr%r+s r-rz#AsyncTupleResult.scalar_one_or_nonet rc Kywrsr%r+s r-rz#AsyncTupleResult.scalar_one_or_noneys =@rc Kyw)aLReturn exactly one or no scalar result. This is equivalent to calling :meth:`_engine.Result.scalars` and then :meth:`_engine.AsyncScalarResult.one_or_none`. .. seealso:: :meth:`_engine.AsyncScalarResult.one_or_none` :meth:`_engine.Result.scalars` Nr%r+s r-rz#AsyncTupleResult.scalar_one_or_none|rrc Kywrsr%r+s r-rzAsyncTupleResult.scalarrrc Kywrsr%r+s r-rzAsyncTupleResult.scalarrrc Kyw)aFetch the first column of the first row, and close the result set. Returns ``None`` if there are no rows to fetch. No validation is performed to test if additional rows remain. After calling this method, the object is fully closed, e.g. the :meth:`_engine.CursorResult.close` method will have been called. :return: a Python scalar value , or ``None`` if no rows remain. Nr%r+s r-rzAsyncTupleResult.scalars  rrsrrrr)r1zAsyncIterator[_R]r)r,AsyncTupleResult[Tuple[_T]]r1r r)r,rr1rr)r4r5r6rr7r r]rirbrnrqrtryrrrrrrrr%r0r-rrsI)- %  (      6,    J J . .   -      @ @   -      * * Or0r_RTr&c  K |j}|st|dd}n|}|r|jjrt |j d{tjd|jjjd|jd|jjjd|r.|j"|jjd{|S#t$r|cYSwxYw77w)NrawzCan't use the .z-() method with a server-side cursor. Use the z3.stream() method for an async streaming result set.) _is_cursorAttributeErrorgetattrcontext_is_server_siderr* async_excAsyncMethodRequired__self__ __class__r4cursor_async_soft_close)rcalling_method is_cursor cursor_results r-_ensure_sync_resultrs%% t4  ..>>]00111++ ''11::''''11::   ]))5""44666 M1   2 7sGD C.ADC?BD'D(D. C<9D;C<<DD)rrrrr1r)0 __future__rrtypingrrrrrr r r r rrenginer engine.resultrrrrrr engine.rowrrsql.baserutil.concurrencyr util.typingrrrrrr r"r$r;rr TypingOnlyrrrr%r0r-rs#  $&))+$#."&.2 T e5c?+(,r"(,e5)[S2e5P ~K B~KBRKK $;RKjb{2bJe=)r0