
    F-PhY                       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 d dlmZ d dlm	Z	 d d	lm
Z
 d dlZd dl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 d dlmZ d dl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 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rddl)m*Z* dZ+ G d dej,                  Z-e-j.        Z/dTd"Z0dUd(Z1 G d) d*e          Z2e ej3        d+,           G d- d.                                  Z4 ed/eed0e5f         e6f         1          Z7ej3         G d2 d'                      Z8d+d3dVd8Z9dWd<Z:dd=dXdBZ;erT G dC dDe8          Z< G dE dFe8          Z= G dG dHe8          Z> G dI dJe8          Z? G dK dLe8          Z@ G dM dNe8          ZAe G dO dP                      ZB eBd+Q          ZCe G dR dSe	eDef                               ZEdS )Y    )annotationsN)Callable)
Collection)Iterable)Iterator)Mapping)MutableMapping)Sequence)Any)final)
NamedTuple)overload)TYPE_CHECKING)TypeVar)Union   )getfslineno)NOTSET)
NotSetType)Config)check_ispytest)MARKED_FIXTURE)fail)AbstractRaises)
_ScopeName)PytestUnknownMarkWarning)Nodeempty_parameter_set_markc                      e Zd ZdZdS )_HiddenParamr   N)__name__
__module____qualname__token     W/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/_pytest/mark/structures.pyr    r    -   s        EEEr&   r    returnboolc                J    t          |           ot          | dd          dk    S )Nr!   z<lambda>)callablegetattr)funcs    r'   
istestfuncr.   5   s$    D>>QgdJ
CCzQQr&   configr   argnamesSequence[str]MarkDecoratorc                   ddl m} d                    |          }t          |          \  }}d| d}|                     t
                    }|dv rt                              |          }	n[|dk    rt                              |d	
          }	n8|dk    r#|	                    d|j
         d|dz              t          |          |	S )Nr   )	Collectorz, zgot empty parameter set for ()) NskipreasonxfailF)r9   runfail_at_collectzEmpty parameter set in 'z
' at line    )nodesr4   joinr   getiniEMPTY_PARAMETERSET_OPTIONMARK_GENr7   r:   CollectErrorr!   LookupError)
r/   r0   r-   r4   argslistingfslinenor9   requested_markmarks
             r'   get_empty_parameterset_markrJ   9   s     "!!!!!))H%%KT""JB;[;;;F]]#<==N+++}}F}++	7	"	"~~V~77	,	,	,$$Lt}LL
LL
 
 	
 .)))Kr&   c                      e Zd ZU dZded<   ded<   ded<   edd	d
d#d            Ze	 d$d%d            Zed&d            Z	ed'd            Z
ed(d"            Zd	S ))ParameterSetav  A set of values for a set of parameters along with associated marks and
    an optional ID for the set.

    Examples::

        pytest.param(1, 2, 3)
        # ParameterSet(values=(1, 2, 3), marks=(), id=None)

        pytest.param("hello", id="greeting")
        # ParameterSet(values=("hello",), marks=(), id="greeting")

        # Parameter set with marks
        pytest.param(42, marks=pytest.mark.xfail)
        # ParameterSet(values=(42,), marks=(MarkDecorator(...),), id=None)

        # From parametrize mark (parameter names + list of parameter sets)
        pytest.mark.parametrize(
            ("a", "b", "expected"),
            [
                (1, 2, 3),
                pytest.param(40, 2, 42, id="everything"),
            ],
        )
        # ParameterSet(values=(1, 2, 3), marks=(), id=None)
        # ParameterSet(values=(2, 2, 3), marks=(), id="everything")
    zSequence[object | NotSetType]valuesz Collection[MarkDecorator | Mark]marksstr | _HiddenParam | Noneidr%   NrN   rP   object0MarkDecorator | Collection[MarkDecorator | Mark]r(   c               d   t          |t                    r|f}n!t          |t          j        j                  sJ t          d |D                       rt          d          |@t          |t                    s+|t          ur"t          dt          |           d|           | |||          S )Nc              3  ,   K   | ]}|j         d k    V  dS )usefixturesNname).0is     r'   	<genexpr>z%ParameterSet.param.<locals>.<genexpr>{   s)      661qv&666666r&   z|pytest.param cannot add pytest.mark.usefixtures; see https://docs.pytest.org/en/stable/reference/reference.html#pytest-paramzDExpected id to be a string or a `pytest.HIDDEN_PARAM` sentinel, got z: )
isinstancer2   collectionsabcr   any
ValueErrorstrHIDDEN_PARAM	TypeErrortype)clsrN   rP   rM   s       r'   paramzParameterSet.paramp   s     e]++ 	AHEEe[_%?@@@@@6666666 	Z  
 >b#&& 2\+A+A.88. .'). .   s65"%%%r&   Fparameterset(ParameterSet | Sequence[object] | objectforce_tupler)   c                p    t          ||           r|S |r|                     |          S  | |g d          S )aj  Extract from an object or objects.

        :param parameterset:
            A legacy style parameterset that may or may not be a tuple,
            and may or may not be wrapped into a mess of mark objects.

        :param force_tuple:
            Enforce tuple wrapping so single argument tuple values
            don't get decomposed and break tests.
        NrQ   )r\   rf   )re   rg   ri   s      r'   extract_fromzParameterSet.extract_from   sO      lC(( 	  	899\*** 3|2$7777r&   r0   str | Sequence[str]	argvalues2Iterable[ParameterSet | Sequence[object] | object]tuple[Sequence[str], bool]c                    t          | t                    r3d |                     d          D             } t          |           dk    }nd}| |fS )Nc                ^    g | ]*}|                                 |                                 +S r%   )striprY   xs     r'   
<listcomp>z8ParameterSet._parse_parametrize_args.<locals>.<listcomp>   s-    LLLa!''))L		LLLr&   ,r=   F)r\   ra   splitlen)r0   rm   argskwargsri   s        r'   _parse_parametrize_argsz$ParameterSet._parse_parametrize_args   sW     h$$ 	 LL8>>#+>+>LLLHh--1,KKK$$r&   list[ParameterSet]c                     fd| D             S )Nc                H    g | ]}t                               |           S ))ri   )rL   rk   )rY   rt   ri   s     r'   ru   z>ParameterSet._parse_parametrize_parameters.<locals>.<listcomp>   s9     
 
 
FGL%%a[%AA
 
 
r&   r%   )rm   ri   s    `r'   _parse_parametrize_parametersz*ParameterSet._parse_parametrize_parameters   s.    

 
 
 
KT
 
 
 	
r&   r/   r   nodeidra   (tuple[Sequence[str], list[ParameterSet]]c                   |                      ||          \  }}|                     ||          }~|rz|D ]v}t          |j                  t          |          k    rOd}	t	          |	                    ||j        |t          |          t          |j                            d           wnMt          |||          }
|                    t          t          ft          |          z  |
gd                     ||fS )Nz{nodeid}: in "parametrize" the number of names ({names_len}):
  {names}
must be equal to the number of values ({values_len}):
  {values})r   rM   names	names_len
values_lenFpytracer   )rM   rN   rP   )
r{   r   rx   rM   r   formatrJ   appendrL   r   )re   r0   rm   r-   r/   r   ri   
parametersrf   msgrI   s              r'   _for_parametrizezParameterSet._for_parametrize   s-    !$ ; ;Hi P P+66y+NN
 	#  u|$$H55%  

#)#(<"*&)(mm'*5<'8'8 #   !&	 	 	 	* /vxFFD"9s8}}4TFx    
 ##r&   )rM   rR   rN   rS   rP   rO   r(   rL   F)rg   rh   ri   r)   r(   rL   )r0   rl   rm   rn   r(   ro   )rm   rn   ri   r)   r(   r|   )
r0   rl   rm   rn   r/   r   r   ra   r(   r   )r!   r"   r#   __doc____annotations__classmethodrf   rk   staticmethodr{   r   r   r%   r&   r'   rL   rL   P   s         6 *)))++++!!!! CE(,	& & & & & [&0  "8 8 8 8 [86 % % % \% 
 
 
 \
 )$ )$ )$ [)$ )$ )$r&   rL   T)frozenc                      e Zd ZU dZded<   ded<   ded<    ej        dd	
          Zded<    ej        dd	
          Zded<   	 	 dd	dddZ	ddZ
ddZdS )MarkzA pytest mark.ra   rX   tuple[Any, ...]ry   Mapping[str, Any]rz   NF)defaultreprMark | None_param_ids_fromSequence[str] | None_param_ids_generated	_ispytestparam_ids_fromparam_ids_generatedr   r)   r(   Nonec               <   t          |           t                              | d|           t                              | d|           t                              | d|           t                              | d|           t                              | d|           dS ):meta private:rX   ry   rz   r   r   N)r   rR   __setattr__)selfrX   ry   rz   r   r   r   s          r'   __init__zMark.__init__   s     	y!!!4...4...462224!2NCCC4!79LMMMMMr&   c                D    d| j         v pt          | j                  dk    S )Nids   )rz   rx   ry   r   s    r'   _has_param_idszMark._has_param_ids  s!    #:s49~~'::r&   otherc           	        | j         |j         k    sJ d}| j         dk    r-|                                r|}n|                                 r| }t          | j         | j        |j        z   t	          | j        fi |j        |d          S )zReturn a new Mark which is a combination of this
        Mark and another Mark.

        Combines by appending args and merging kwargs.

        :param Mark other: The mark to combine with.
        :rtype: Mark
        NparametrizeT)r   r   )rX   r   r   ry   dictrz   )r   r   r   s      r'   combined_withzMark.combined_with  s     yEJ&&&& '+9%%##%% &!&$$&& &!%II
"----)
 
 
 	
r&   )NN)rX   ra   ry   r   rz   r   r   r   r   r   r   r)   r(   r   r(   r)   )r   r   r(   r   )r!   r"   r#   r   r   dataclassesfieldr   r   r   r   r   r%   r&   r'   r   r      s           III $5;#4T#N#N#NONNNN1B1B52 2 2     '+48N  N N N N N N&; ; ; ;
 
 
 
 
 
r&   r   Markable.)boundc                      e Zd ZU dZded<   dddd
Zedd            Zedd            Zedd            Z	edd            Z
d dZed!d            Zed d            Zd"dZdS )#r2   aW  A decorator for applying a mark on test functions and classes.

    ``MarkDecorators`` are created with ``pytest.mark``::

        mark1 = pytest.mark.NAME  # Simple MarkDecorator
        mark2 = pytest.mark.NAME(name1=value)  # Parametrized MarkDecorator

    and can then be applied as decorators to test functions::

        @mark2
        def test_function():
            pass

    When a ``MarkDecorator`` is called, it does the following:

    1. If called with a single class as its only positional argument and no
       additional keyword arguments, it attaches the mark to the class so it
       gets applied automatically to all test cases found in that class.

    2. If called with a single function as its only positional argument and
       no additional keyword arguments, it attaches the mark to the function,
       containing all the arguments already stored internally in the
       ``MarkDecorator``.

    3. When called in any other case, it returns a new ``MarkDecorator``
       instance with the original ``MarkDecorator``'s content updated with
       the arguments passed to this call.

    Note: The rules above prevent a ``MarkDecorator`` from storing only a
    single function or class reference as its positional argument with no
    additional keyword or positional arguments. You can work around this by
    using `with_args()`.
    r   rI   Fr   r   r)   r(   r   c               2    t          |           || _        dS )r   N)r   rI   )r   rI   r   s      r'   r   zMarkDecorator.__init__Z  s    y!!!			r&   ra   c                    | j         j        S )zAlias for mark.name.)rI   rX   r   s    r'   rX   zMarkDecorator.name_       y~r&   r   c                    | j         j        S )zAlias for mark.args.)rI   ry   r   s    r'   ry   zMarkDecorator.argsd  r   r&   r   c                    | j         j        S )zAlias for mark.kwargs.)rI   rz   r   s    r'   rz   zMarkDecorator.kwargsi  s     yr&   c                    | j         S )r   rW   r   s    r'   marknamezMarkDecorator.marknamen  s     yr&   ry   rR   rz   c                    t          | j        ||d          }t          | j                            |          d          S )zReturn a MarkDecorator with extra arguments added.

        Unlike calling the MarkDecorator, with_args() can be used even
        if the sole argument is a callable/class.
        Tr   )r   rX   r2   rI   r   )r   ry   rz   rI   s       r'   	with_argszMarkDecorator.with_argss  s?     DItVt<<<TY44T::dKKKKr&   argr   c                    d S Nr%   r   r   s     r'   __call__zMarkDecorator.__call__      r&   c                    d S r   r%   )r   ry   rz   s      r'   r   zMarkDecorator.__call__  r   r&   c                    |r|s~|d         }t          j        |          }|}t          |t          t          f          r|j        }t          |          dk    r*t          |          s|rt          || j	        d           |S  | j
        |i |S )zCall the MarkDecorator.r   r=      
stacklevel)inspectisclassr\   r   r   __func__rx   r.   
store_markrI   r   )r   ry   rz   r-   is_classunwrapped_funcs         r'   r   zMarkDecorator.__call__  s     
	 
	7Dt,,H "N${ ;<< /!%4yyA~~:n#=#=~~>49CCCCt~t.v...r&   N)rI   r   r   r)   r(   r   r(   ra   )r(   r   )r(   r   )ry   rR   rz   rR   r(   r2   r   r   r(   r   )ry   rR   rz   rR   )r!   r"   r#   r   r   r   propertyrX   ry   rz   r   r   r   r   r%   r&   r'   r2   r2   4  s9           D JJJ8=      
    X    X       X     XL L L L    X    X/ / / / / /r&   consider_mroobjobject | typer   
list[Mark]c                  t          | t                    r|s| j                            dg           g}nd t	          | j                  D             }g }|D ]B}t          |t                    r|                    |           -|                    |           Cn,t          | dg           }t          |t                    r|}n|g}t          t          |                    S )a  Obtain the unpacked marks that are stored on an object.

    If obj is a class and consider_mro is true, return marks applied to
    this class and all of its super-classes in MRO order. If consider_mro
    is false, only return marks applied directly to this class.
    
pytestmarkc                D    g | ]}|j                             d g           S )r   )__dict__getrs   s     r'   ru   z&get_unpacked_marks.<locals>.<listcomp>  s5       56
|R00  r&   )r\   rd   r   r   reversed__mro__listextendr   r,   normalize_mark_list)r   r   
mark_lists	mark_listitemmark_attributes         r'   get_unpacked_marksr     s    #t ) 	,**<<<=JJ :B3;:O:O  J 	 	' 	'D$%% '  &&&&  &&&&		' !lB77nd++ 	)&II'(I#I..///r&   r   Iterable[Mark | MarkDecorator]Iterable[Mark]c              #     K   | D ]?}t          |d|          }t          |t                    st          d|d          |V  @dS )z
    Normalize an iterable of Mark or MarkDecorator objects into a list of marks
    by retrieving the `mark` attribute on MarkDecorator instances.

    :param mark_list: marks to normalize
    :returns: A new list of the extracted Mark objects
    rI   zgot z instead of MarkN)r,   r\   r   rc   )r   rI   mark_objs      r'   r   r     sj         4..(D)) 	A?8???@@@	 r&   r   rI   r   intr   c                   t          |t                    s
J |            ddlm}  ||           t	          j        t          |           g t          | d          || _        dS )zjStore a Mark on an object.

    This is used to implement the Mark declarations/decorators correctly.
    r   )getfixturemarkerNr   Fr   )	r\   r   fixturesr   warningswarnr   r   r   )r   rI   r   r   s       r'   r   r     s    
 dD!!''4'''++++++(n<<<< J)#EBBBIDICNNNr&   c                  @    e Zd Zedd            Zeddd	            Zd
S )_SkipMarkDecoratorr   r   r(   c                    d S r   r%   r   s     r'   r   z_SkipMarkDecorator.__call__      7:sr&   .r9   ra   r2   c                    d S r   r%   )r   r9   s     r'   r   z_SkipMarkDecorator.__call__  s    @Cr&   Nr   .)r9   ra   r(   r2   r!   r"   r#   r   r   r%   r&   r'   r   r     s?        	::: 
:	CCCC 
CCCr&   r   c                       e Zd Z	 ddddd
ZdS )_SkipifMarkDecorator.r8   	condition
str | bool
conditionsr9   ra   r(   r2   c                   d S r   r%   )r   r   r9   r   s       r'   r   z_SkipifMarkDecorator.__call__  s	    
  Cr&   Nr   )r   r   r   r   r9   ra   r(   r2   r!   r"   r#   r   r%   r&   r'   r   r     sA         %(	  		  	  	  	  	  	  	  	 r&   r   c                  N    e Zd Zedd            Ze	 dddddddd            ZdS )_XfailMarkDecoratorr   r   r(   c                    d S r   r%   r   s     r'   r   z_XfailMarkDecorator.__call__  r   r&   F.)r9   r;   raisesstrictr   r   r   r9   ra   r;   r)   r  \None | type[BaseException] | tuple[type[BaseException], ...] | AbstractRaises[BaseException]r  r2   c                   d S r   r%   )r   r   r9   r;   r  r  r   s          r'   r   z_XfailMarkDecorator.__call__  s	      Cr&   Nr   r   )r   r   r   r   r9   ra   r;   r)   r  r  r  r)   r(   r2   r   r%   r&   r'   r  r    sl        	::: 
:	 %*	   /2	  	  	  	  	  
	  	  	 r&   r  c                       e Zd ZddddddZdS )_ParametrizeMarkDecorator.)indirectr   scoper0   rl   rm   rn   r	  bool | Sequence[str]r   QIterable[None | str | float | int | bool] | Callable[[Any], object | None] | Noner
  _ScopeName | Noner(   r2   c                   d S r   r%   )r   r0   rm   r	  r   r
  s         r'   r   z"_ParametrizeMarkDecorator.__call__   s	      Cr&   N)r0   rl   rm   rn   r	  r  r   r  r
  r  r(   r2   r   r%   r&   r'   r  r    s?         .1 '*
	  
	  
	  
	  
	  
	  
	  
	 r&   r  c                      e Zd ZddZdS )_UsefixturesMarkDecoratorr   ra   r(   r2   c                    d S r   r%   )r   r   s     r'   r   z"_UsefixturesMarkDecorator.__call__      Cr&   N)r   ra   r(   r2   r   r%   r&   r'   r  r    (        	 	 	 	 	 	r&   r  c                      e Zd ZddZdS )_FilterwarningsMarkDecoratorfiltersra   r(   r2   c                    d S r   r%   )r   r  s     r'   r   z%_FilterwarningsMarkDecorator.__call__  r  r&   N)r  ra   r(   r2   r   r%   r&   r'   r  r    r  r&   r  c                  j    e Zd ZU dZerded<   ded<   ded<   ded	<   d
ed<   ded<   ddddZddZdS )MarkGeneratora  Factory for :class:`MarkDecorator` objects - exposed as
    a ``pytest.mark`` singleton instance.

    Example::

         import pytest


         @pytest.mark.slowtest
         def test_function():
             pass

    applies a 'slowtest' :class:`Mark` on ``test_function``.
    r   r7   r   skipifr  r:   r  r   r  rV   r  filterwarningsFr   r   r)   r(   r   c               X    t          |           d | _        t                      | _        d S r   )r   _configset_markers)r   r   s     r'   r   zMarkGenerator.__init__/  s&    y!!!&*"%%%r&   rX   ra   r2   c                   |d         dk    rt          d          | j        || j        vr}| j                            d          D ]b}|                    d          d                             d          d                                         }| j                            |           c|| j        vrn| j        j        j        s| j        j        j	        rt          |dd	
           |dv rd}t          d| d           t          j        d| dt          d           t          t          |di d          d          S )z:Generate a new :class:`MarkDecorator` with the given name.r   _z*Marker name must NOT start with underscoreNmarkers:(z, not found in `markers` configuration optionFr   )parameterizeparametriseparameteriseTz	Unknown 'z#' mark, did you mean 'parametrize'?zUnknown pytest.mark.z - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.htmlr   r%   r   )AttributeErrorr  r  r@   rw   rr   addoptionstrict_markersr  r   r   r   r   r2   r   )r   rX   linemarker__tracebackhide__s        r'   __getattr__zMarkGenerator.__getattr__4  s   7c>> !MNNN<# 4=(( L//	:: . .D "ZZ__Q/55c::1=CCEEFM%%f---- 4=((<&5 9L9S OOO %    JJJ(,%NTNNNOOOI4 I I I -   T$B$???4PPPPr&   N)r   r)   r(   r   )rX   ra   r(   r2   )r!   r"   r#   r   r   r   r   r/  r%   r&   r'   r  r    s             5    $$$$""""........4444,1 ( ( ( ( ( (
'Q 'Q 'Q 'Q 'Q 'Qr&   r  r   c                  ^    e Zd ZdZddZdd
ZddZddZ	 d d!dZd"dZ	d#dZ
d$dZd%dZdS )&NodeKeywords)r  nodeparentr2  r   r(   r   c                H    || _         |j        | _        |j        di| _        d S )NT)r2  r3  rX   r  )r   r2  s     r'   r   zNodeKeywords.__init__e  s$    	kD)r&   keyra   r   c                r    	 | j         |         S # t          $ r | j         | j        j        |         cY S w xY wr   )r  KeyErrorr3  keywordsr   r5  s     r'   __getitem__zNodeKeywords.__getitem__j  sP    	-=%% 	- 	- 	-{";',,,,	-s    $66valuec                    || j         |<   d S r   )r  )r   r5  r;  s      r'   __setitem__zNodeKeywords.__setitem__r  s    "cr&   rR   r)   c                B    || j         v p| j        d uo|| j        j        v S r   r  r3  r8  r9  s     r'   __contains__zNodeKeywords.__contains__x  s/    dm# 
Kt#Ct{/C(C	
r&   r%   r   -Mapping[str, Any] | Iterable[tuple[str, Any]]kwdsc                n    | j                             |           | j                             |           d S r   )r  update)r   r   rB  s      r'   rD  zNodeKeywords.update}  s6    
 	U###T"""""r&   c                     t          d          )Nz"cannot delete key in keywords dict)r`   r9  s     r'   __delitem__zNodeKeywords.__delitem__  s    =>>>r&   Iterator[str]c              #  n   K   | j         E d {V  | j        | j        j        D ]}|| j         vr|V  d S d S r   r?  )r   keywords     r'   __iter__zNodeKeywords.__iter__  se      =       ;";/ " "$-//!MMM	 #"" "r&   r   c                4    t          d | D                       S )Nc              3     K   | ]}d V  dS )r=   Nr%   )rY   rI  s     r'   r[   z'NodeKeywords.__len__.<locals>.<genexpr>  s"      ))1))))))r&   )sumr   s    r'   __len__zNodeKeywords.__len__  s    ))D))))))r&   c                    d| j          dS )Nz<NodeKeywords for node >)r2  r   s    r'   __repr__zNodeKeywords.__repr__  s    55555r&   N)r2  r   r(   r   )r5  ra   r(   r   )r5  ra   r;  r   r(   r   )r5  rR   r(   r)   )r%   )r   rA  rB  r   r(   r   )r5  ra   r(   r   )r(   rG  )r(   r   r   )r!   r"   r#   	__slots__r   r:  r=  r@  rD  rF  rJ  rN  rQ  r%   r&   r'   r1  r1  a  s        .I* * * *
- - - -# # # #
 
 
 
 @B# # # # #? ? ? ?" " " "* * * *6 6 6 6 6 6r&   r1  r   )r/   r   r0   r1   r(   r2   )r   r   r   r)   r(   r   )r   r   r(   r   )rI   r   r   r   r(   r   )F
__future__r   collections.abcr]   r   r   r   r   r   r	   r
   r   enumr   typingr   r   r   r   r   r   r   r   _coder   compatr   r   _pytest.configr   _pytest.deprecatedr   r   _pytest.outcomesr   _pytest.raisesr   _pytest.scoper   _pytest.warning_typesr   r>   r   rA   Enumr    r$   rb   r.   rJ   rL   	dataclassr   rR   rd   r   r2   r   r   r   r   r   r  r  r  r  r  rB   ra   r1  r%   r&   r'   <module>ra     s   " " " " " "     $ $ $ $ $ $ & & & & & & $ $ $ $ $ $ $ $ $ $ $ $ # # # # # # * * * * * * $ $ $ $ $ $                                                                          ! ! ! ! ! ! - - - - - - - - - - - - ! ! ! ! ! ! ) ) ) ) ) ) $ $ $ $ $ $ : : : : : :   7 
    49   
 !R R R R   .V$ V$ V$ V$ V$: V$ V$ V$r d###@
 @
 @
 @
 @
 @
 @
 $# @
L 7:U8CK+@$+F%GHHH _/ _/ _/ _/ _/ _/ _/ _/J 0 0 0 0 0 0B   " 67 J J J J J J&  6D D D D D] D D D         }               m      $         M          M       }   
 EQ EQ EQ EQ EQ EQ EQ EQP =4((( 46 46 46 46 46>#s(+ 46 46 46 46 46r&   