
    5in                    b   U d Z ddlmZ ddlZddlZddlmZmZmZm	Z	m
Z
mZmZmZ ddlmZ ddlZddlmZ ddlmZ ddlmZ dd	lmZmZ dd
lmZ ddlmZmZmZm Z m!Z!m"Z" ddl#m$Z$m%Z%m&Z& ddl'm(Z(m)Z)m*Z*m+Z+m,Z, ddl-m.Z. ddl/m0Z0 ddl1m2Z2 ddl3m4Z4m5Z5m6Z6m7Z7 ddl8m9Z9 erddl:m;Z;m<Z< ddl=m>Z> ddl?m@Z@  eeA      ZBdeCd<    e$ej                        ZEe	d   dz  ZFdeCd<    ed      ZG ed      ZH G d deeGeHf         ZI G d d e6      ZJ eJ       ZKd'd!ZLd(d"ZM G d# d$      ZN G d% d&eeH         ZOy))z%@st.cache_data: pickle-based caching.    )annotationsN)TYPE_CHECKINGAnyFinalLiteral	TypeAliasTypeVarcastoverload)	ParamSpec)runtime)StreamlitAPIException)
get_logger)
CacheErrorCacheKeyNotFoundError)	CacheType)Cache
CachedFuncCachedFuncInfo
CacheScopeget_session_id_or_throwmake_cached_func_wrapper)CachedMessageReplayContextCachedResultMsgData)CacheStorageCacheStorageContextCacheStorageErrorCacheStorageKeyNotFoundErrorCacheStorageManager)InvalidCacheStorageContextError)MemoryCacheStorageManager)gather_metrics)CACHE_MEMORY_FAMILY	CacheStatStatsProvidergroup_cache_stats)time_to_seconds)CallableSequence)	timedelta)HashFuncsDictr   _LOGGERdiskr   CachePersistTypePRc                       e Zd ZU dZded<   ded<   ded<   	 	 	 d	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 d fdZedd	       Zedd
       Zedd       Z	ddZ
ddZ xZS )CachedDataFuncInfoz;Implements the CachedFuncInfo interface for @st.cache_data.r/   persist
int | Nonemax_entriesfloat | timedelta | str | Nonettlc	                x    t         	|   |||||       || _        || _        || _        | j                          y )N)
hash_funcsshow_spinner	show_timescope)super__init__r4   r6   r8   validate_params)
selffuncr4   r6   r8   r;   r<   r:   r=   	__class__s
            r/home/obispo/Crisostomo_bridge/mision_env/lib/python3.12/site-packages/streamlit/runtime/caching/cache_data_api.pyr?   zCachedDataFuncInfo.__init__d   sJ     	!% 	 	
 &    c                "    t         j                  S N)r   DATArA   s    rD   
cache_typezCachedDataFuncInfo.cache_type|   s    ~~rE   c                    t         S rG   )CACHE_DATA_MESSAGE_REPLAY_CTXrI   s    rD   cached_message_replay_ctxz,CachedDataFuncInfo.cached_message_replay_ctx   s    ,,rE   c                `    | j                   j                   d| j                   j                   S )z.A human-readable name for the cached function..)rB   
__module____qualname__rI   s    rD   display_namezCachedDataFuncInfo.display_name   s+     ))&&'q)?)?(@AArE   c                    t         j                  || j                  | j                  | j                  | j
                  | j                        S )N)keyr4   r6   r8   rR   r=   )_data_caches	get_cacher4   r6   r8   rR   r=   )rA   function_keys     rD   get_function_cachez%CachedDataFuncInfo.get_function_cache   sD    %%LL((**** & 
 	
rE   c                    t         j                  | j                  j                  | j                  | j
                  | j                         y)z
        Validate the params passed to @st.cache_data are compatible with cache storage.

        When called, this method could log warnings if cache params are invalid
        for current storage.
        )function_namer4   r6   r8   N)rU   validate_cache_paramsrB   __name__r4   r6   r8   rI   s    rD   r@   z"CachedDataFuncInfo.validate_params   s;     	**)),,LL((	 	+ 	
rE   )FNglobal)rB   Callable[P, R]r4   r/   r6   r5   r8   r7   r;   
bool | strr<   boolr:   HashFuncsDict | Noner=   r   returnNone)rb   r   )rb   r   )rb   str)rW   rd   rb   zCache[R]rb   rc   )r\   rP   rQ   __doc____annotations__r?   propertyrJ   rM   rR   rX   r@   __classcell__rC   s   @rD   r3   r3   ]   s    E	''  +/$ "  	
 , !  )  
0   - - B B

rE   r3   c                      e Zd ZdZddZedd       Z	 d	 	 	 	 	 	 	 	 	 	 	 	 	 ddZddZddZ		 d	 	 	 ddZ
	 	 	 	 	 	 	 	 	 	 dd	Z	 	 	 	 	 	 	 	 	 	 	 	 dd
ZddZy)
DataCachesz Manages all DataCache instances.c                D    t        j                         | _        i | _        y rG   )	threadingLock_caches_lock_function_cachesrI   s    rD   r?   zDataCaches.__init__   s    %NN,MOrE   c                    t         fS rG   )r$   rI   s    rD   stats_familieszDataCaches.stats_families   s    #%%rE   c           	        t        |d      }|dk(  rd}n
t               }| j                  5  | j                  j	                  |      }	|	i x}	| j                  |<   |	j	                  |      }
|
8|
j
                  |k(  r)|
j                  |k(  r|
j                  |k(  r|
cddd       S |
3t        j                  d||||       |
j                  j                          t        j                  d||||       | j                  |||||      }| j                         }|j                  |      }t        ||||||      }
|
| j                  |   |<   |
cddd       S # 1 sw Y   yxY w)	a  Return the mem cache for the given key.

        If it doesn't exist, create a new one with the given params.

        Raises
        ------
        StreamlitAPIException
            Raised when ``scope`` is ``"session"`` and there is no thread-local run
            context.
        Fcoerce_none_to_infr]   Nz}Closing existing DataCache storage (key=%s, persist=%s, max_entries=%s, ttl=%s) before creating new one with different paramszCCreating new DataCache (key=%s, persist=%s, max_entries=%s, ttl=%s)rW   rZ   ttl_secondsr6   r4   )rT   storager4   r6   rx   rR   )r(   r   rp   rq   getrx   r6   r4   r-   debugry   closecreate_cache_storage_contextget_storage_managercreate	DataCache)rA   rT   r4   r6   r8   rR   r=   rx   
session_idsession_cachescachecache_contextcache_storage_managerry   s                 rD   rV   zDataCaches.get_cache   s   ( &ceD
 HJ02J  7	!2266zBN%EGG!6!6z!B"&&s+E!%%4%%4MMW,7	 7	  D  ##% MMU !== *'' > M %)$<$<$>!+22=AG'')E 6;D!!*-c2o7	 7	 7	s   A0E&B)EE"c                   | j                   5  | j                  j                  |      }|| j                  |= ddd       @|j                         D ],  }|j	                          |j
                  j                          . yy# 1 sw Y   LxY wz+Clears all caches for the given session ID.N)rp   rq   rz   valuesclearry   r|   )rA   r   r   r   s       rD   clear_sessionzDataCaches.clear_session  s      	6!2266zBN)))*5	6
 %'..0 &##%& &	6 	6s   +BBc                l   | j                   5  	 | j                         j                          i | _        ddd       y# t        $ ra | j                  j                         D ]A  }|j                         D ],  }|j                          |j                  j                          . C Y yw xY w# 1 sw Y   yxY w)z'Clear all in-memory and on-disk caches.N)	rp   r~   	clear_allNotImplementedErrorrq   r   r   ry   r|   )rA   data_caches
data_caches      rD   r   zDataCaches.clear_all  s     	'
3
 ((*446 %'D!	' 	' ' 3#'#8#8#?#?#A 3K&1&8&8&: 3
"((*"**002333	' 	's,   B*=B*A'B'$B*&B''B**B3Nc                t   | j                   5  | j                  j                         D cg c]  }|j                         D ]  }|  }}}d d d        g }D ]8  }|j                         }|j                         D ]  }|j	                  |        : |si S t
        t        |      iS c c}}w # 1 sw Y   cxY wrG   )rp   rq   r   	get_statsextendr$   r'   )rA   _family_namescachesr   function_cachesstatscache_statsfamily_statss           rD   r   zDataCaches.get_stats$  s      	
 #33::<#]]_  O 	 "$$ 	+E//+K + 2 2 4 +\*+	+ I $%6u%=>>!	 	s   B.B(	B.(B..B7c                    t        |d      }| j                  d||||      }	 | j                         j                  |       y# t        $ r t
        j                  d|        w xY w)zValidate that the cache params are valid for given storage.

        Raises
        ------
        InvalidCacheStorageContext
            Raised if the cache storage manager is not able to work with provided
            CacheStorageContext.
        Fru   	DUMMY_KEYrw   zQCache params for function %s are incompatible with current cache storage manager.N)r(   r}   r~   check_contextr!   r-   	exception)rA   rZ   r4   r6   r8   rx   r   s          rD   r[   z DataCaches.validate_cache_params<  sz      &ceD99$'## : 
	$$&44]C. 	)
 	s   A !A&c                "    t        |||||      S )N)rW   function_display_namerx   r6   r4   )r   )rA   rW   rZ   r4   rx   r6   s         rD   r}   z'DataCaches.create_cache_storage_context_  s      #%"/##
 	
rE   c                    t        j                         rt        j                         j                  S t        j                  d       t               S )Nz1No runtime found, using MemoryCacheStorageManager)r   existsget_instancer   r-   warningr"   rI   s    rD   r~   zDataCaches.get_storage_managero  s9    >>'')??? 	KL(**rE   re   )rb   zSequence[str])r]   )rT   rd   r4   r/   r6   r5   r8   $int | float | timedelta | str | NonerR   rd   r=   r   rb   zDataCache[Any]r   rd   rb   rc   rG   r   zSequence[str] | Nonerb   dict[str, list[CacheStat]])
rZ   rd   r4   r/   r6   r5   r8   r   rb   rc   )rW   rd   rZ   rd   r4   r/   rx   float | Noner6   r5   rb   r   )rb   r    )r\   rP   rQ   rf   r?   rh   rs   rV   r   r   r   r[   r}   r~    rE   rD   rl   rl      s   *P
 & & %WW "W  	W
 2W W W 
Wr&'" 59?1?	#?0!! "!  	!
 2! 
!F

 
 "	

 "
  
 

 +rE   rl   c                .    t         j                  |        yr   )rU   r   )r   s    rD   clear_session_cacher   |  s    z*rE   c                     t         S )z:Return the StatsProvider for all @st.cache_data functions.)rU   r   rE   rD   get_data_cache_stats_providerr     s    rE   c            	         e Zd ZdZddZedd       Zedddddddd	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 dd	       Z	 ddddddddd	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 dd
Z	 ddddd	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 ddZ ed      dd       Z	y)CacheDataAPIzjImplements the public st.cache_data API: the @st.cache_data decorator, and
    st.cache_data.clear().
    c                :    t        || j                        | _        y)zCreate a CacheDataAPI instance.

        Parameters
        ----------
        decorator_metric_name
            The metric name to record for decorator usage.
        N)r#   
_decorator)rA   decorator_metric_names     rD   r?   zCacheDataAPI.__init__  s     )!4??
rE   c                     y rG   r   )rA   rB   s     rD   __call__zCacheDataAPI.__call__  s    BErE   NTFr]   )r8   r6   r;   r<   r4   r:   r=   c                    y rG   r   )rA   r8   r6   r;   r<   r4   r:   r=   s           rD   r   zCacheDataAPI.__call__  s     8;rE   c          
     4    | j                  ||||||||      S )N)r8   r6   r4   r;   r<   r:   r=   )r   )	rA   rB   r8   r6   r;   r<   r4   r:   r=   s	            rD   r   zCacheDataAPI.__call__  s2     #%!  	
 		
rE   )r<   r:   r=   c                  
 |du rd
n	|du rd
n|

dvrt        d| d      dvrt        d	 d
      d
fd}	||	S t        t        |
            S )a]!  Decorator to cache functions that return data (e.g. dataframe transforms, database queries, ML inference).

        Cached objects can be global or session-scoped. Global cached data is
        available across all users, sessions, and reruns. Session-scoped cached
        data is only available in the current session and removed when the
        session disconnects.

        Cached objects are stored in "pickled" form, which means that the return
        value of a cached function must be pickleable. Each caller of the cached
        function gets its own copy of the cached data.

        You can clear a function's cache with ``func.clear()`` or clear the entire
        cache with ``st.cache_data.clear()``.

        A function's arguments must be hashable to cache it. Streamlit makes a
        best effort to hash a variety of objects, but the fallback hashing method
        requires that the argument be pickleable, also. If you have an unhashable
        argument (like a database connection) or an argument you want to exclude
        from caching, use an underscore prefix in the argument name. In this case,
        Streamlit will return a cached value when all other arguments match a
        previous function call. Alternatively, you can declare custom hashing
        functions with ``hash_funcs``.

        Objects cached by ``st.cache_data`` are returned as copies. To cache a
        shared resource or something you want to mutate in place, use
        ``st.cache_resource`` instead. To learn more about caching, see
        `Caching overview
        <https://docs.streamlit.io/develop/concepts/architecture/caching>`_.

        .. note::
            Caching async functions is not supported. To upvote this feature,
            see GitHub issue `#8308
            <https://github.com/streamlit/streamlit/issues/8308>`_.

        Parameters
        ----------
        func : callable
            The function to cache. Streamlit hashes the function's source code.

        ttl : float, timedelta, str, or None
            The maximum time to keep an entry in the cache. Can be one of:

            - ``None`` if cache entries should never expire (default).
            - A number specifying the time in seconds.
            - A string specifying the time in a format supported by `Pandas's
              Timedelta constructor <https://pandas.pydata.org/docs/reference/api/pandas.Timedelta.html>`_,
              e.g. ``"1d"``, ``"1.5 days"``, or ``"1h23s"``.
            - A ``timedelta`` object from `Python's built-in datetime library
              <https://docs.python.org/3/library/datetime.html#timedelta-objects>`_,
              e.g. ``timedelta(days=1)``.

            Note that ``ttl`` will be ignored if ``persist="disk"`` or ``persist=True``.

        max_entries : int or None
            The maximum number of entries to keep in the cache, or None
            for an unbounded cache. When a new entry is added to a full cache,
            the oldest cached entry will be removed. Defaults to None.

        show_spinner : bool or str
            Enable the spinner. Default is True to show a spinner when there is
            a "cache miss" and the cached data is being created. If string,
            value of show_spinner param will be used for spinner text.

        show_time : bool
            Whether to show the elapsed time next to the spinner text. If this is
            ``False`` (default), no time is displayed. If this is ``True``,
            elapsed time is displayed with a precision of 0.1 seconds. The time
            format is not configurable.

        persist : "disk", bool, or None
            Optional location to persist cached data to. Passing "disk" (or True)
            will persist the cached data to the local disk. None (or False) will disable
            persistence. The default is None.

        hash_funcs : dict or None
            Mapping of types or fully qualified names to hash functions.
            This is used to override the behavior of the hasher inside Streamlit's
            caching mechanism: when the hasher encounters an object, it will first
            check to see if its type matches a key in this dict and, if so, will use
            the provided function to generate a hash for it. See below for an example
            of how this can be used.

        scope : "global" or "session"
            The scope for the data cache. If this is ``"global"`` (default),
            the data is cached globally. If this is ``"session"``, the data is
            removed from the cache when the session disconnects.

            Because a session-scoped cache is cleared when a session disconnects,
            an unstable network connection can cause the cache to populate
            multiple times in a single session. If this is a problem, you might
            consider adjusting the ``server.websocketPingInterval``
            configuration option.

        Example
        -------
        >>> import streamlit as st
        >>>
        >>> @st.cache_data
        ... def fetch_and_clean_data(url):
        ...     # Fetch data from URL here, and then clean it up.
        ...     return data
        >>>
        >>> d1 = fetch_and_clean_data(DATA_URL_1)
        >>> # Actually executes the function, since this is the first time it was
        >>> # encountered.
        >>>
        >>> d2 = fetch_and_clean_data(DATA_URL_1)
        >>> # Does not execute the function. Instead, returns its previously computed
        >>> # value. This means that now the data in d1 is the same as in d2.
        >>>
        >>> d3 = fetch_and_clean_data(DATA_URL_2)
        >>> # This is a different URL, so the function executes.

        To set the ``persist`` parameter, use this command as follows:

        >>> import streamlit as st
        >>>
        >>> @st.cache_data(persist="disk")
        ... def fetch_and_clean_data(url):
        ...     # Fetch data from URL here, and then clean it up.
        ...     return data

        By default, all parameters to a cached function must be hashable.
        Any parameter whose name begins with ``_`` will not be hashed. You can use
        this as an "escape hatch" for parameters that are not hashable:

        >>> import streamlit as st
        >>>
        >>> @st.cache_data
        ... def fetch_and_clean_data(_db_connection, num_rows):
        ...     # Fetch data from _db_connection here, and then clean it up.
        ...     return data
        >>>
        >>> connection = make_database_connection()
        >>> d1 = fetch_and_clean_data(connection, num_rows=10)
        >>> # Actually executes the function, since this is the first time it was
        >>> # encountered.
        >>>
        >>> another_connection = make_database_connection()
        >>> d2 = fetch_and_clean_data(another_connection, num_rows=10)
        >>> # Does not execute the function. Instead, returns its previously computed
        >>> # value - even though the _database_connection parameter was different
        >>> # in both calls.

        A cached function's cache can be procedurally cleared:

        >>> import streamlit as st
        >>>
        >>> @st.cache_data
        ... def fetch_and_clean_data(_db_connection, num_rows):
        ...     # Fetch data from _db_connection here, and then clean it up.
        ...     return data
        >>>
        >>> fetch_and_clean_data.clear(_db_connection, 50)
        >>> # Clear the cached entry for the arguments provided.
        >>>
        >>> fetch_and_clean_data.clear()
        >>> # Clear all cached entries for this function.

        To override the default hashing behavior, pass a custom hash function.
        You can do that by mapping a type (e.g. ``datetime.datetime``) to a hash
        function (``lambda dt: dt.isoformat()``) like this:

        >>> import streamlit as st
        >>> import datetime
        >>>
        >>> @st.cache_data(hash_funcs={datetime.datetime: lambda dt: dt.isoformat()})
        ... def convert_to_utc(dt: datetime.datetime):
        ...     return dt.astimezone(datetime.timezone.utc)

        Alternatively, you can map the type's fully-qualified name
        (e.g. ``"datetime.datetime"``) to the hash function instead:

        >>> import streamlit as st
        >>> import datetime
        >>>
        >>> @st.cache_data(hash_funcs={"datetime.datetime": lambda dt: dt.isoformat()})
        ... def convert_to_utc(dt: datetime.datetime):
        ...     return dt.astimezone(datetime.timezone.utc)

        Tr.   FN)Nr.   zUnsupported persist option 'z#'. Valid values are 'disk' or None.)r]   sessionzUnsupported scope option 'z*'. Valid values are 'global' or 'session'.c                <    t        t        |             S )NrB   r4   r;   r<   r6   r8   r:   r=   )r   r3   )fr:   r6   persist_stringr=   r;   r<   r8   s    rD   wrapperz(CacheDataAPI._decorator.<locals>.wrapper  s0    +"*!-' +)	 rE   r   )r   r^   rb   CachedFunc[P, R])r   r   r3   )rA   rB   r8   r6   r;   r<   r4   r:   r=   r   r   s     ```` `` @rD   r   zCacheDataAPI._decorator  s    H d?#N!N$N/'.wi7Z[  --',UG3]^ 	 	 <N'&)#'%	
 	
rE   clear_data_cachesc                ,    t         j                          y)z,Clear all in-memory and on-disk data caches.N)rU   r   rI   s    rD   r   zCacheDataAPI.clear  s     	 rE   )r   rd   rb   rc   )rB   r^   rb   r   )r8   r7   r6   r5   r;   r_   r<   r`   r4   CachePersistType | boolr:   ra   r=   r   rb   z,Callable[[Callable[P, R]], CachedFunc[P, R]]rG   )rB   zCallable[P, R] | Noner8   r7   r6   r5   r;   r_   r<   r`   r4   r   r:   ra   r=   r   rb   z?CachedFunc[P, R] | Callable[[Callable[P, R]], CachedFunc[P, R]]re   )
r\   rP   rQ   rf   r?   r   r   r   r#   r   r   rE   rD   r   r     s   
& E E  /3"&#'+/+/$
; ,
;  	
;
 !
; 
; )
; )
; 
; 
6
; 
; '+
 /3"&#'+/+/$
#
 ,	

  
 !
 
 )
 )
 
 
I
2 '+r
  +/$r
#r
 ,	r

  r
 !r
 r
 )r
 )r
 r
 
Ir
h '(! )!rE   r   c                       e Zd ZdZ	 	 	 	 	 	 	 	 	 	 	 	 	 	 d fdZ	 d		 	 	 d
dZddZ ed      dd       Zd	ddZ	 xZ
S )r   z:Manages cached values for a single st.cache_data function.c                v    t         |           || _        || _        || _        || _        || _        || _        y rG   )r>   r?   rT   rR   ry   rx   r6   r4   )rA   rT   ry   r4   r6   rx   rR   rC   s          rD   r?   zDataCache.__init__  s=     	(&&rE   c                    t        | j                  t              r$t        d| j                  j	                               S i S )Nr   )
isinstancery   r&   r
   r   )rA   r   s     rD   r   zDataCache.get_stats  s2     dllM24dll6L6L6NOO	rE   c                   	 | j                   j                  |      }	 t        j                  |      }t        |t              s%| j                   j                  |       t               |S # t        $ r}t        t	        |            |d}~wt
        $ r}t        t	        |            |d}~ww xY w# t        j                  $ r}t        d|       |d}~ww xY w)zRead a value and messages from the cache. Raise `CacheKeyNotFoundError`
        if the value doesn't exist, and `CacheError` if the value exists but can't
        be unpickled.
        NzFailed to unpickle )ry   rz   r   r   rd   r   r   pickleloadsr   r   deleteUnpicklingError)rA   rT   pickled_entryeentryexcs         rD   read_resultzDataCache.read_result  s    
	, LL,,S1M		CLL/Ee\2 ##C(+--L , 	7'A/Q6  	,SV$!+	, %% 	C23%89sB	Cs;   A* AB1 *	B.3BB.B))B.1CCC_cache_data_objectc                L   	 t         j                  j                  }t         j                  j                  }t	        ||||      }t        j                  |      }| j                  j                  ||       y# t
        j                  t        f$ r}t        d|       |d}~ww xY w)zbWrite a value and associated messages to the cache.
        The value must be pickleable.
        zFailed to pickle N)st_mainidsidebarr   r   dumpsPicklingError	TypeErrorr   ry   set)	rA   rT   valuemessagesmain_id
sidebar_idr   r   r   s	            rD   write_resultzDataCache.write_result  s    
	AhhkkGJ ':FE"LL/M 	m, $$i0 	A067S@	As   AA6 6B#BB#c                t    |s| j                   j                          y | j                   j                  |       y rG   )ry   r   r   )rA   rT   s     rD   _clearzDataCache._clear  s'    LL LL$rE   )rT   rd   ry   r   r4   r/   r6   r5   rx   r   rR   rd   rb   rc   rG   r   )rT   rd   rb   zCachedResult[R])rT   rd   r   r1   r   zlist[MsgData]rb   rc   )rT   z
str | Nonerb   rc   )r\   rP   rQ   rf   r?   r   r   r#   r   r   ri   rj   s   @rD   r   r     s    D  "	
   "  
$ 591	#C. ()- *-% %rE   r   r   )rb   r&   )Prf   
__future__r   r   rn   typingr   r   r   r   r   r	   r
   r   typing_extensionsr   	streamlitr   r   streamlit.errorsr   streamlit.loggerr   &streamlit.runtime.caching.cache_errorsr   r   $streamlit.runtime.caching.cache_typer   %streamlit.runtime.caching.cache_utilsr   r   r   r   r   r   /streamlit.runtime.caching.cached_message_replayr   r   r   !streamlit.runtime.caching.storager   r   r   r   r    8streamlit.runtime.caching.storage.cache_storage_protocolr!   5streamlit.runtime.caching.storage.dummy_cache_storager"   streamlit.runtime.metrics_utilr#   streamlit.runtime.statsr$   r%   r&   r'   streamlit.time_utilr(   collections.abcr)   r*   datetimer+   !streamlit.runtime.caching.hashingr,   r\   r-   rg   rH   rL   r/   r0   r1   r3   rl   rU   r   r   r   r   r   rE   rD   <module>r      s"   , "  	 	 	 (   2 ' T :  
  :  02"?H% % :9>> J  &fo4 ) 4 cNCLB
1- B
JS+ S+n |+

w! w!t	G%a G%rE   