관리-도구
편집 파일: models.cpython-39.opt-1.pyc
a �������g�����������������������@���s���d�Z�ddlZddlZddlZddlmZ�ddlmZ�ddl m Z �ddlmZm Z mZmZ�ddlmZ�dd lmZ�dd lmZ�ddlmZ�ddlmZmZmZ�dd lmZmZmZm Z m!Z!m"Z"m#Z#�ddl$m%Z%m&Z&�ddl'm(Z(m)Z)m*Z*m+Z+m,Z,m-Z-m.Z.m/Z/m0Z0m1Z1�ddl2m3Z3m4Z4m5Z5m6Z6m7Z7m8Z8m9Z9m:Z:m;Z;m<Z<m=Z=m>Z>�ddl2m?Z@�ddlAmBZB�eBjCeBjDeBjEeBjFeBjGfZHdZIdZJdZKG�dd��deL�ZMG�dd��deL�ZNG�dd��deN�ZOG�dd��deMeN�ZPG�dd��deL�ZQdS�) z` requests.models ~~~~~~~~~~~~~~~ This module contains the primary objects that power Requests. �����N)�RequestField)�encode_multipart_formdata)� parse_url)�DecodeError�ReadTimeoutError� ProtocolError�LocationParseError)�UnsupportedOperation����)� default_hooks)�CaseInsensitiveDict)� HTTPBasicAuth)�cookiejar_from_dict�get_cookie_header�_copy_cookie_jar)� HTTPError� MissingSchema� InvalidURL�ChunkedEncodingError�ContentDecodingError�ConnectionError�StreamConsumedError)�to_native_string�unicode_is_ascii) �guess_filename�get_auth_from_url�requote_uri�stream_decode_response_unicode�to_key_val_list�parse_header_links�iter_slices�guess_json_utf� super_len�check_header_validity)�Callable�Mapping� cookielib� urlunparse�urlsplit� urlencode�str�bytes�is_py2�chardet�builtin_str� basestring)�json)�codes����i�(��i���c�������������������@���s0���e�Zd�Zedd���Zedd���Zedd���ZdS�)�RequestEncodingMixinc�����������������C���sN���g�}t�|�j�}|j}|sd}|�|��|j}|rD|�d��|�|��d�|�S�)zBuild the path URL to use.�/�?��)r(����url�path�append�query�join)�selfr7����pr8���r:�����r>����3/usr/lib/python3.9/site-packages/requests/models.py�path_url=���s���� zRequestEncodingMixin.path_urlc�����������������C���s����t�|�ttf�r|�S�t|�d�r |�S�t|�d�r�g�}t|��D�]j\}}t�|t�sRt|d�sX|g}|D�]B}|dur\|�t�|t�r�|�d�n|t�|t�r�|�d�n|f��q\q6t|dd�S�|�S�dS�)z�Encode parameters in a piece of data. Will successfully encode parameters when passed as a dict or a list of 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary if parameters are supplied as a dict. �read�__iter__N�utf-8T)�doseq) � isinstancer*���r+����hasattrr���r/���r9����encoder)���)�data�result�kZvs�vr>���r>���r?����_encode_paramsR���s$���� ��z#RequestEncodingMixin._encode_paramsc�����������������C���s���|�st�d��nt|t�r t�d��g�}t|p,i��}t|�p8i��}�|D�]|\}}t|t�s\t|d�sb|g}|D�]T}|durft|t�s�t|�}|�t|t�r�|�d�n|t|t�r�|� d�n|f��qfq@|�D�]�\}}d}d} t|t tf��r t|�dkr�|\} }n&t|�dk�r|\} }}n|\} }}} nt |��p,|} |}t|tttf��rJ|}n(t|d��r`|���}n|du��rnq�n|}t||| | d �} | j|d ��|�| ��q�t|�\}}||fS�)a���Build the body for a multipart/form-data request. Will successfully encode files when passed as a dict or a list of tuples. Order is retained if data is a list of tuples but arbitrary if parameters are supplied as a dict. The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) or 4-tuples (filename, fileobj, contentype, custom_headers). zFiles must be provided.zData must not be a string.rB���NrC�����������rA���)�namerH����filename�headers)�content_type)� ValueErrorrE���r/���r���rF���r+���r*���r9����decoderG����tuple�list�lenr���� bytearrayrA���r���Zmake_multipartr���)�filesrH���Z new_fields�fieldsZfield�valrK���rJ���ZftZfh�fn�fpZfdataZrf�bodyrR���r>���r>���r?���� _encode_filesm���sT���� �� z"RequestEncodingMixin._encode_filesN)�__name__� __module__�__qualname__�propertyr@����staticmethodrL���r_���r>���r>���r>���r?���r3���<���s��� r3���c�������������������@���s���e�Zd�Zdd��Zdd��ZdS�)�RequestHooksMixinc�����������������C���sZ���||�j�vrtd|���t|t�r2|�j�|��|��n$t|d�rV|�j�|��dd��|D����dS�)zProperly register a hook.z1Unsupported event specified, with event name "%s"rB���c�����������������s���s���|�]}t�|t�r|V��qd�S��N)rE���r$���)�.0�hr>���r>���r?���� <genexpr>���������z2RequestHooksMixin.register_hook.<locals>.<genexpr>N)�hooksrS���rE���r$���r9���rF����extend�r<����event�hookr>���r>���r?���� register_hook����s���� zRequestHooksMixin.register_hookc�����������������C���s0���z|�j�|��|��W�dS��ty*���Y�dS�0�dS�)ziDeregister a previously registered hook. Returns True if the hook existed, False if not. TFN)rk����removerS���rm���r>���r>���r?����deregister_hook����s ����z!RequestHooksMixin.deregister_hookN)r`���ra���rb���rp���rr���r>���r>���r>���r?���re�������s���re���c���������������� ���@���s*���e�Zd�ZdZd dd�Zdd��Zdd��ZdS�) �Requesta{��A user-created :class:`Request <Request>` object. Used to prepare a :class:`PreparedRequest <PreparedRequest>`, which is sent to the server. :param method: HTTP method to use. :param url: URL to send. :param headers: dictionary of headers to send. :param files: dictionary of {filename: fileobject} files to multipart upload. :param data: the body to attach to the request. If a dictionary or list of tuples ``[(key, value)]`` is provided, form-encoding will take place. :param json: json for the body to attach to the request (if files or data is not specified). :param params: URL parameters to append to the URL. If a dictionary or list of tuples ``[(key, value)]`` is provided, form-encoding will take place. :param auth: Auth handler or (user, pass) tuple. :param cookies: dictionary or CookieJar of cookies to attach to this request. :param hooks: dictionary of callback hooks, for internal usage. Usage:: >>> import requests >>> req = requests.Request('GET', 'https://httpbin.org/get') >>> req.prepare() <PreparedRequest [GET]> Nc����������� ������C���s����|d�u�rg�n|}|d�u�rg�n|}|d�u�r,i�n|}|d�u�r<i�n|}| d�u�rLi�n| } t���|�_t| ����D�]\}}|�j||d��qd||�_||�_||�_||�_||�_ | |�_ ||�_||�_||�_ d�S�)N)rn���ro���)r���rk���rV����itemsrp����methodr7���rQ���rY���rH���r0����params�auth�cookies) r<���ru���r7���rQ���rY���rH���rv���rw���rx���rk���r0���rJ���rK���r>���r>���r?����__init__����s"����zRequest.__init__c�����������������C���s ���d|�j��S�)Nz<Request [%s]>�ru����r<���r>���r>���r?����__repr__����s����zRequest.__repr__c�����������������C���s<���t���}|j|�j|�j|�j|�j|�j|�j|�j|�j |�j |�jd� �|S�)zXConstructs a :class:`PreparedRequest <PreparedRequest>` for transmission and returns it.) ru���r7���rQ���rY���rH���r0���rv���rw���rx���rk���)�PreparedRequest�prepareru���r7���rQ���rY���rH���r0���rv���rw���rx���rk����r<���r=���r>���r>���r?���r~�������s�����zRequest.prepare) NNNNNNNNNN)r`���ra���rb����__doc__ry���r|���r~���r>���r>���r>���r?���rs�������s������ rs���c���������������� ���@���s����e�Zd�ZdZdd��Zddd�Zdd��Zd d ��Zdd��Ze d d���Z dd��Zdd��Zddd�Z dd��Zd dd�Zdd��Zdd��ZdS�)!r}���a)��The fully mutable :class:`PreparedRequest <PreparedRequest>` object, containing the exact bytes that will be sent to the server. Instances are generated from a :class:`Request <Request>` object, and should not be instantiated manually; doing so may produce undesirable effects. Usage:: >>> import requests >>> req = requests.Request('GET', 'https://httpbin.org/get') >>> r = req.prepare() >>> r <PreparedRequest [GET]> >>> s = requests.Session() >>> s.send(r) <Response [200]> c�����������������C���s0���d�|�_�d�|�_d�|�_d�|�_d�|�_t��|�_d�|�_d�S�rf���)ru���r7���rQ����_cookiesr^���r���rk����_body_positionr{���r>���r>���r?���ry���%��s����zPreparedRequest.__init__Nc�����������������C���sR���|���|��|��||��|��|��|��|��|��||| ��|��||��|��| ��dS�)z6Prepares the entire request with the given parameters.N)�prepare_method�prepare_url�prepare_headers�prepare_cookies�prepare_body�prepare_auth� prepare_hooks)r<���ru���r7���rQ���rY���rH���rv���rw���rx���rk���r0���r>���r>���r?���r~���6��s���� zPreparedRequest.preparec�����������������C���s ���d|�j��S�)Nz<PreparedRequest [%s]>rz���r{���r>���r>���r?���r|���H��s����zPreparedRequest.__repr__c�����������������C���sX���t���}|�j|_|�j|_|�jd�ur*|�j���nd�|_t|�j�|_|�j|_|�j|_|�j |_ |S�rf���) r}���ru���r7���rQ����copyr���r����r^���rk���r����r���r>���r>���r?���r����K��s����zPreparedRequest.copyc�����������������C���s$���||�_�|�j�dur t|�j�����|�_�dS�)zPrepares the given HTTP method.N)ru���r����upper)r<���ru���r>���r>���r?���r����V��s���� zPreparedRequest.prepare_methodc�����������������C���s>���dd�l�}z|j|�dd��d�}�W�n�|jy8���t�Y�n0�|�S�)Nr���T)Zuts46rC���)�idnarG���rT���Z IDNAError�UnicodeError)�hostr����r>���r>���r?����_get_idna_encoded_host\��s���� z&PreparedRequest._get_idna_encoded_hostc�������������� ���C���s,��t�|t�r|�d�}ntr"t|�nt|�}|���}d|v�rR|����d�sR||�_ dS�zt |�\}}}}}}} W�n.�ty��} �zt| j ���W�Y�d} ~ n d} ~ 0�0�|s�d}|�t|d��}t|��|s�td|���t|��sz|��|�}W�n�ty����td��Y�n0�n|�d��rtd��|�pd }|�r.|d 7�}||7�}|�rL|dt|��7�}|�sVd}t�r�t�|t��rr|�d�}t�|t��r�|�d�}t�|t��r�|�d�}t�|t��r�|�d�}t�| t��r�| �d�} t�|ttf��r�t|�}|��|�} | �r |�rd || f�}n| }tt|||d|| g��}||�_ dS�)zPrepares the given HTTP URL.�utf8�:�httpNzDInvalid URL {0!r}: No schema supplied. Perhaps you meant http://{0}?z Invalid URL %r: No host suppliedzURL has an invalid label.�*r6����@r4���rC���z%s&%s)rE���r+���rT���r,���Zunicoder*����lstrip�lower� startswithr7���r���r���r����args�formatr���r���r���r����r����rG���rL���r���r'���)r<���r7���rv����schemerw���r�����portr8���r:����fragment�e�error�netlocZ enc_paramsr>���r>���r?���r����f��sh���� zPreparedRequest.prepare_urlc�����������������C���s<���t���|�_|r8|���D�]"}t|��|\}}||�jt|�<�qdS�)z Prepares the given HTTP headers.N)r���rQ���rt���r#���r���)r<���rQ����headerrO����valuer>���r>���r?���r�������s����zPreparedRequest.prepare_headersc�������������� ���C���sn��d}d}|s6|dur6d}t��|�}t|t�s6|�d�}tt|d�t|ttt t f��g�}|r�zt|�}W�n�tt tfy����d}Y�n0�|}t|dd�dur�z|���|�_W�n�ttfy����t��|�_Y�n0�|r�td��|r�t|�|�jd<�n d|�jd <�np|�r|��||�\}}n2|�r>|��|�}t|t��s4t|d ��r:d}nd}|��|��|�rdd|�jv�rd||�jd <�||�_dS�)z"Prepares the given HTTP body data.Nzapplication/jsonrC���rB����tellz1Streamed bodies and files are mutually exclusive.�Content-LengthZchunkedzTransfer-EncodingrA���z!application/x-www-form-urlencodedzcontent-typezContent-Type)�complexjson�dumpsrE���r+���rG����allrF���r/���rV���rU���r%���r"���� TypeError�AttributeErrorr ����getattrr����r�����IOError�OSError�object�NotImplementedErrorr.���rQ���r_���rL����prepare_content_lengthr^���)r<���rH���rY���r0���r^���rR���Z is_stream�lengthr>���r>���r?���r�������sL���� � zPreparedRequest.prepare_bodyc�����������������C���sL���|dur$t�|�}|rHt|�|�jd<�n$|�jdvrH|�j�d�du�rHd|�jd<�dS�)z>Prepare Content-Length header based on request method and bodyNr����)ZGETZHEAD�0)r"���r.���rQ���ru����get)r<���r^���r����r>���r>���r?���r������s����z&PreparedRequest.prepare_content_lengthr6���c�����������������C���sj���|du�r"t�|�j�}t|�r|nd}|rft|t�rDt|�dkrDt|��}||��}|�j�|j��|�� |�j ��dS�)z"Prepares the given HTTP auth data.NrM���)r���r7����anyrE���rU���rW���r ����__dict__�updater����r^���)r<���rw���r7���Zurl_auth�rr>���r>���r?���r������s���� zPreparedRequest.prepare_authc�����������������C���s@���t�|tj�r||�_n t|�|�_t|�j|��}|dur<||�jd<�dS�)a��Prepares the given HTTP cookie data. This function eventually generates a ``Cookie`` header from the given cookies using cookielib. Due to cookielib's design, the header will not be regenerated if it already exists, meaning this function can only be called once for the life of the :class:`PreparedRequest <PreparedRequest>` object. Any subsequent calls to ``prepare_cookies`` will have no actual effect, unless the "Cookie" header is removed beforehand. NZCookie)rE���r&���Z CookieJarr����r���r���rQ���)r<���rx���Z cookie_headerr>���r>���r?���r����/��s���� zPreparedRequest.prepare_cookiesc�����������������C���s&���|pg�}|D�]}|���|||���qdS�)zPrepares the given hooks.N)rp���)r<���rk���rn���r>���r>���r?���r����C��s����zPreparedRequest.prepare_hooks) NNNNNNNNNN)N)r6���)r`���ra���rb���r����ry���r~���r|���r����r����rd���r����r����r����r����r����r����r����r����r>���r>���r>���r?���r}�����s"������ V E r}���c�������������������@���s����e�Zd�ZdZg�d�Zdd��Zdd��Zdd��Zd d ��Zdd��Z d d��Z dd��Zdd��Zdd��Z edd���Zedd���Zedd���Zedd���Zedd���Zd2d!d"�Zed d#fd$d%�Zed&d'���Zed(d)���Zd*d+��Zed,d-���Zd.d/��Zd0d1��Zd#S�)3�ResponsezhThe :class:`Response <Response>` object, which contains a server's response to an HTTP request. ) �_content�status_coderQ���r7����history�encoding�reasonrx����elapsed�requestc�����������������C���s^���d|�_�d|�_d�|�_d�|�_t��|�_d�|�_d�|�_d�|�_g�|�_ d�|�_ ti��|�_t �d�|�_d�|�_d�S�)NFr���)r�����_content_consumed�_nextr����r���rQ����rawr7���r����r����r����r���rx����datetimeZ timedeltar����r����r{���r>���r>���r?���ry���W��s���� zResponse.__init__c�����������������C���s���|�S�rf���r>���r{���r>���r>���r?���� __enter__���s����zResponse.__enter__c�����������������G���s���|������d�S�rf���)�close)r<���r����r>���r>���r?����__exit__���s����zResponse.__exit__c��������������������s �����j�s��j���fdd���jD��S�)Nc��������������������s���i�|�]}|t���|d���qS�rf���)r����)rg����attrr{���r>���r?���� <dictcomp>���rj���z)Response.__getstate__.<locals>.<dictcomp>)r�����content� __attrs__r{���r>���r{���r?����__getstate__���s����zResponse.__getstate__c�����������������C���s:���|����D�]\}}t|�||��qt|�dd��t|�dd���d�S�)Nr����Tr����)rt����setattr)r<����staterO���r����r>���r>���r?����__setstate__���s����zResponse.__setstate__c�����������������C���s ���d|�j��S�)Nz<Response [%s]>)r����r{���r>���r>���r?���r|������s����zResponse.__repr__c�����������������C���s���|�j�S��ak��Returns True if :attr:`status_code` is less than 400. This attribute checks if the status code of the response is between 400 and 600 to see if there was a client error or a server error. If the status code, is between 200 and 400, this will return True. This is **not** a check to see if the response code is ``200 OK``. ��okr{���r>���r>���r?����__bool__���s����zResponse.__bool__c�����������������C���s���|�j�S�r����r����r{���r>���r>���r?����__nonzero__���s����zResponse.__nonzero__c�����������������C���s ���|���d�S�)z,Allows you to use a response as an iterator.����)�iter_contentr{���r>���r>���r?���rB������s����zResponse.__iter__c�����������������C���s&���z|������W�n�ty ���Y�dS�0�dS�)ax��Returns True if :attr:`status_code` is less than 400, False if not. This attribute checks if the status code of the response is between 400 and 600 to see if there was a client error or a server error. If the status code is between 200 and 400, this will return True. This is **not** a check to see if the response code is ``200 OK``. FT)�raise_for_statusr���r{���r>���r>���r?���r�������s ���� zResponse.okc�����������������C���s���d|�j�v�o|�jtv�S�)z�True if this Response is a well-formed HTTP redirect that could have been processed automatically (by :meth:`Session.resolve_redirects`). �location)rQ���r�����REDIRECT_STATIr{���r>���r>���r?����is_redirect���s����zResponse.is_redirectc�����������������C���s���d|�j�v�o|�jtjtjfv�S�)z@True if this Response one of the permanent versions of redirect.r����)rQ���r����r1���Zmoved_permanently�permanent_redirectr{���r>���r>���r?����is_permanent_redirect���s����zResponse.is_permanent_redirectc�����������������C���s���|�j�S�)zTReturns a PreparedRequest for the next request in a redirect chain, if there is one.)r����r{���r>���r>���r?����next���s����z Response.nextc�����������������C���s���t��|�j�d�S�)z7The apparent encoding, provided by the chardet library.r����)r-���Zdetectr����r{���r>���r>���r?����apparent_encoding���s����zResponse.apparent_encodingr ���Fc��������������������s|������fdd�}�j�r(t�jt�r(t���n"��durJt��t�sJtdt������t�j���}|��}�j�rf|n|}|rxt |��}|S�)a���Iterates over the response data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place. chunk_size must be of type int or None. A value of None will function differently depending on the value of `stream`. stream=True will read data as it arrives in whatever size the chunks are received. If stream=False, data is returned as a single chunk. If decode_unicode is True, content will be decoded using the best available encoding based on the response. c��������������� ���3���s����t��jd�r�z �jj��dd�D�] }�|�V��qW�q��tyX�}�zt|��W�Y�d�}~q�d�}~0��ty��}�zt|��W�Y�d�}~q�d�}~0��ty��}�zt|��W�Y�d�}~q�d�}~0�0�n�j� ���}�|�s�q�|�V��q�d�_ d�S�)N�streamT)Zdecode_content)rF���r����r����r���r���r���r���r���r���rA���r����)�chunkr������ chunk_sizer<���r>���r?����generate���s���� z'Response.iter_content.<locals>.generateNz.chunk_size must be an int, it is instead a %s.) r����rE���r�����boolr����intr�����typer ���r���)r<���r�����decode_unicoder����Z reused_chunksZ stream_chunks�chunksr>���r����r?���r�������s���� zResponse.iter_contentNc�����������������c���s����d}|�j�||d�D�]n}|dur&||�}|r6|�|�}n|���}|rl|d�rl|rl|d�d�|d�krl|���}nd}|D�] }|V��qtq|dur�|V��dS�)z�Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. .. note:: This method is not reentrant safe. N)r����r�������)r�����split� splitlines�pop)r<���r����r����Z delimiter�pendingr�����lines�liner>���r>���r?���� iter_lines��s����$ zResponse.iter_linesc�����������������C���sV���|�j�du�rJ|�jrtd��|�jdks,|�jdu�r4d|�_�nd�|��t��pFd|�_�d|�_|�j�S�)z"Content of the response, in bytes.Fz2The content for this response was already consumedr���Nrj���T)r����r�����RuntimeErrorr����r����r;���r�����CONTENT_CHUNK_SIZEr{���r>���r>���r?���r����2��s���� �zResponse.contentc�������������� ���C���sf���d}|�j�}|�jstd�S�|�j�du�r(|�j}zt|�j|dd�}W�n$�ttfy`���t|�jdd�}Y�n0�|S�)a���Content of the response, in unicode. If Response.encoding is None, encoding will be guessed using ``chardet``. The encoding of the response content is determined based solely on HTTP headers, following RFC 2616 to the letter. If you can take advantage of non-HTTP knowledge to make a better guess at the encoding, you should set ``r.encoding`` appropriately before accessing this property. Nr6����replace)�errors)r����r����r*���r�����LookupErrorr����)r<���r����r����r>���r>���r?����textF��s���� z Response.textc�����������������K���sp���|�j�s\|�jr\t|�j�dkr\t|�j�}|dur\ztj|�j�|�fi�|��W�S��tyZ���Y�n0�tj|�jfi�|��S�)z�Returns the json-encoded content of a response, if any. :param \*\*kwargs: Optional arguments that ``json.loads`` takes. :raises ValueError: If the response body does not contain valid json. rN���N) r����r����rW���r!���r�����loadsrT����UnicodeDecodeErrorr����)r<����kwargsr����r>���r>���r?���r0���l��s���� ��z Response.jsonc�����������������C���sF���|�j��d�}i�}|rBt|�}|D�] }|�d�p6|�d�}|||<�q |S�)z8Returns the parsed header links of the response, if any.�link�relr7���)rQ���r����r���)r<���r�����l�linksr�����keyr>���r>���r?���r�������s���� zResponse.linksc�����������������C���s����d}t�|�jt�rBz|�j�d�}W�qH�ty>���|�j�d�}Y�qH0�n|�j}d|�j��kr^dk�rvn�nd|�j||�jf�}n,d|�j��kr�dk�r�n�nd|�j||�jf�}|r�t||�d ��d S�)z+Raises :class:`HTTPError`, if one occurred.r6���rC���z iso-8859-1i���i���z%s Client Error: %s for url: %siX��z%s Server Error: %s for url: %s)ZresponseN)rE���r����r+���rT���r����r����r7���r���)r<���Zhttp_error_msgr����r>���r>���r?���r�������s����zResponse.raise_for_statusc�����������������C���s0���|�j�s|�j����t|�jdd�}|dur,|���dS�)z�Releases the connection back to the pool. Once this method has been called the underlying ``raw`` object must not be accessed again. *Note: Should not normally need to be called explicitly.* �release_connN)r����r����r����r����)r<���r����r>���r>���r?���r�������s ���� zResponse.close)r ���F)r`���ra���rb���r����r����ry���r����r����r����r����r|���r����r����rB���rc���r����r����r����r����r����r�����ITER_CHUNK_SIZEr����r����r����r0���r����r����r����r>���r>���r>���r?���r����M��s@���/ 7 % r����)Rr����r�����sysZencodings.idna� encodingsZurllib3.fieldsr���Zurllib3.filepostr���Zurllib3.utilr���Zurllib3.exceptionsr���r���r���r����ior ���rk���r���Z structuresr���rw���r ���rx���r���r���r���� exceptionsr���r���r���r���r���r���r���Z_internal_utilsr���r���Zutilsr���r���r���r���r���r���r ���r!���r"���r#����compatr$���r%���r&���r'���r(���r)���r*���r+���r,���r-���r.���r/���r0���r����Zstatus_codesr1���Zmoved�found�otherZtemporary_redirectr����r����ZDEFAULT_REDIRECT_LIMITr����r����r����r3���re���rs���r}���r����r>���r>���r>���r?����<module>���sD���$08�rJ��?