JFIFHHC     C  " 5????! ??? JFIF    >CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C     p!ranha?
Server IP : 172.67.137.82  /  Your IP : 104.23.197.223
Web Server : Apache/2.4.51 (Unix) OpenSSL/1.1.1n
System : Linux ip-172-26-8-243 4.19.0-27-cloud-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : daemon ( 1)
PHP Version : 7.4.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/thread-self/root/lib/python2.7/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /proc/thread-self/root/lib/python2.7//urllib.py
"""Open an arbitrary URL.

See the following document for more info on URLs:
"Names and Addresses, URIs, URLs, URNs, URCs", at
http://www.w3.org/pub/WWW/Addressing/Overview.html

See also the HTTP spec (from which the error codes are derived):
"HTTP - Hypertext Transfer Protocol", at
http://www.w3.org/pub/WWW/Protocols/

Related standards and specs:
- RFC1808: the "relative URL" spec. (authoritative status)
- RFC1738 - the "URL standard". (authoritative status)
- RFC1630 - the "URI spec". (informational status)

The object returned by URLopener().open(file) will differ per
protocol.  All you know is that is has methods read(), readline(),
readlines(), fileno(), close() and info().  The read*(), fileno()
and close() methods work like those of open files.
The info() method returns a mimetools.Message object which can be
used to query various info about the object, if available.
(mimetools.Message objects are queried with the getheader() method.)
"""

import string
import socket
import os
import time
import sys
import base64
import re

from urlparse import urljoin as basejoin

__all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve",
           "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus",
           "urlencode", "url2pathname", "pathname2url", "splittag",
           "localhost", "thishost", "ftperrors", "basejoin", "unwrap",
           "splittype", "splithost", "splituser", "splitpasswd", "splitport",
           "splitnport", "splitquery", "splitattr", "splitvalue",
           "getproxies"]

__version__ = '1.17'    # XXX This version is not always updated :-(

MAXFTPCACHE = 10        # Trim the ftp cache beyond this size

# Helper for non-unix systems
if os.name == 'nt':
    from nturl2path import url2pathname, pathname2url
elif os.name == 'riscos':
    from rourl2path import url2pathname, pathname2url
else:
    def url2pathname(pathname):
        """OS-specific conversion from a relative URL of the 'file' scheme
        to a file system path; not recommended for general use."""
        return unquote(pathname)

    def pathname2url(pathname):
        """OS-specific conversion from a file system path to a relative URL
        of the 'file' scheme; not recommended for general use."""
        return quote(pathname)

# This really consists of two pieces:
# (1) a class which handles opening of all sorts of URLs
#     (plus assorted utilities etc.)
# (2) a set of functions for parsing URLs
# XXX Should these be separated out into different modules?


# Shortcut for basic usage
_urlopener = None
def urlopen(url, data=None, proxies=None, context=None):
    """Create a file-like object for the specified URL to read from."""
    from warnings import warnpy3k
    warnpy3k("urllib.urlopen() has been removed in Python 3.0 in "
             "favor of urllib2.urlopen()", stacklevel=2)

    global _urlopener
    if proxies is not None or context is not None:
        opener = FancyURLopener(proxies=proxies, context=context)
    elif not _urlopener:
        opener = FancyURLopener()
        _urlopener = opener
    else:
        opener = _urlopener
    if data is None:
        return opener.open(url)
    else:
        return opener.open(url, data)
def urlretrieve(url, filename=None, reporthook=None, data=None, context=None):
    global _urlopener
    if context is not None:
        opener = FancyURLopener(context=context)
    elif not _urlopener:
        _urlopener = opener = FancyURLopener()
    else:
        opener = _urlopener
    return opener.retrieve(url, filename, reporthook, data)
def urlcleanup():
    if _urlopener:
        _urlopener.cleanup()
    _safe_quoters.clear()
    ftpcache.clear()

# check for SSL
try:
    import ssl
except:
    _have_ssl = False
else:
    _have_ssl = True

# exception raised when downloaded size does not match content-length
class ContentTooShortError(IOError):
    def __init__(self, message, content):
        IOError.__init__(self, message)
        self.content = content

ftpcache = {}
class URLopener:
    """Class to open URLs.
    This is a class rather than just a subroutine because we may need
    more than one set of global protocol-specific options.
    Note -- this is a base class for those who don't want the
    automatic handling of errors type 302 (relocated) and 401
    (authorization needed)."""

    __tempfiles = None

    version = "Python-urllib/%s" % __version__

    # Constructor
    def __init__(self, proxies=None, context=None, **x509):
        if proxies is None:
            proxies = getproxies()
        assert hasattr(proxies, 'has_key'), "proxies must be a mapping"
        self.proxies = proxies
        self.key_file = x509.get('key_file')
        self.cert_file = x509.get('cert_file')
        self.context = context
        self.addheaders = [('User-Agent', self.version), ('Accept', '*/*')]
        self.__tempfiles = []
        self.__unlink = os.unlink # See cleanup()
        self.tempcache = None
        # Undocumented feature: if you assign {} to tempcache,
        # it is used to cache files retrieved with
        # self.retrieve().  This is not enabled by default
        # since it does not work for changing documents (and I
        # haven't got the logic to check expiration headers
        # yet).
        self.ftpcache = ftpcache
        # Undocumented feature: you can use a different
        # ftp cache by assigning to the .ftpcache member;
        # in case you want logically independent URL openers
        # XXX This is not threadsafe.  Bah.

    def __del__(self):
        self.close()

    def close(self):
        self.cleanup()

    def cleanup(self):
        # This code sometimes runs when the rest of this module
        # has already been deleted, so it can't use any globals
        # or import anything.
        if self.__tempfiles:
            for file in self.__tempfiles:
                try:
                    self.__unlink(file)
                except OSError:
                    pass
            del self.__tempfiles[:]
        if self.tempcache:
            self.tempcache.clear()

    def addheader(self, *args):
        """Add a header to be used by the HTTP interface only
        e.g. u.addheader('Accept', 'sound/basic')"""
        self.addheaders.append(args)

    # External interface
    def open(self, fullurl, data=None):
        """Use URLopener().open(file) instead of open(file, 'r')."""
        fullurl = unwrap(toBytes(fullurl))
        # percent encode url, fixing lame server errors for e.g, like space
        # within url paths.
        fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
        if self.tempcache and fullurl in self.tempcache:
            filename, headers = self.tempcache[fullurl]
            fp = open(filename, 'rb')
            return addinfourl(fp, headers, fullurl)
        urltype, url = splittype(fullurl)
        if not urltype:
            urltype = 'file'
        if urltype in self.proxies:
            proxy = self.proxies[urltype]
            urltype, proxyhost = splittype(proxy)
            host, selector = splithost(proxyhost)
            url = (host, fullurl) # Signal special case to open_*()
        else:
            proxy = None
        name = 'open_' + urltype
        self.type = urltype
        name = name.replace('-', '_')
        
        # bpo-35907: # disallow the file reading with the type not allowed
        if not hasattr(self, name) or \
            (self == _urlopener and name == 'open_local_file'):
            if proxy:
                return self.open_unknown_proxy(proxy, fullurl, data)
            else:
                return self.open_unknown(fullurl, data)
        try:
            if data is None:
                return getattr(self, name)(url)
            else:
                return getattr(self, name)(url, data)
        except socket.error, msg:
            raise IOError, ('socket error', msg), sys.exc_info()[2]

    def open_unknown(self, fullurl, data=None):
        """Overridable interface to open unknown URL type."""
        type, url = splittype(fullurl)
        raise IOError, ('url error', 'unknown url type', type)

    def open_unknown_proxy(self, proxy, fullurl, data=None):
        """Overridable interface to open unknown URL type."""
        type, url = splittype(fullurl)
        raise IOError, ('url error', 'invalid proxy for %s' % type, proxy)

    # External interface
    def retrieve(self, url, filename=None, reporthook=None, data=None):
        """retrieve(url) returns (filename, headers) for a local object
        or (tempfilename, headers) for a remote object."""
        url = unwrap(toBytes(url))
        if self.tempcache and url in self.tempcache:
            return self.tempcache[url]
        type, url1 = splittype(url)
        if filename is None and (not type or type == 'file'):
            try:
                fp = self.open_local_file(url1)
                hdrs = fp.info()
                fp.close()
                return url2pathname(splithost(url1)[1]), hdrs
            except IOError:
                pass
        fp = self.open(url, data)
        try:
            headers = fp.info()
            if filename:
                tfp = open(filename, 'wb')
            else:
                import tempfile
                garbage, path = splittype(url)
                garbage, path = splithost(path or "")
                path, garbage = splitquery(path or "")
                path, garbage = splitattr(path or "")
                suffix = os.path.splitext(path)[1]
                (fd, filename) = tempfile.mkstemp(suffix)
                self.__tempfiles.append(filename)
                tfp = os.fdopen(fd, 'wb')
            try:
                result = filename, headers
                if self.tempcache is not None:
                    self.tempcache[url] = result
                bs = 1024*8
                size = -1
                read = 0
                blocknum = 0
                if "content-length" in headers:
                    size = int(headers["Content-Length"])
                if reporthook:
                    reporthook(blocknum, bs, size)
                while 1:
                    block = fp.read(bs)
                    if block == "":
                        break
                    read += len(block)
                    tfp.write(block)
                    blocknum += 1
                    if reporthook:
                        reporthook(blocknum, bs, size)
            finally:
                tfp.close()
        finally:
            fp.close()

        # raise exception if actual size does not match content-length header
        if size >= 0 and read < size:
            raise ContentTooShortError("retrieval incomplete: got only %i out "
                                       "of %i bytes" % (read, size), result)

        return result

    # Each method named open_<type> knows how to open that type of URL

    def open_http(self, url, data=None):
        """Use HTTP protocol."""
        import httplib
        user_passwd = None
        proxy_passwd= None
        if isinstance(url, str):
            host, selector = splithost(url)
            if host:
                user_passwd, host = splituser(host)
                host = unquote(host)
            realhost = host
        else:
            host, selector = url
            # check whether the proxy contains authorization information
            proxy_passwd, host = splituser(host)
            # now we proceed with the url we want to obtain
            urltype, rest = splittype(selector)
            url = rest
            user_passwd = None
            if urltype.lower() != 'http':
                realhost = None
            else:
                realhost, rest = splithost(rest)
                if realhost:
                    user_passwd, realhost = splituser(realhost)
                if user_passwd:
                    selector = "%s://%s%s" % (urltype, realhost, rest)
                if proxy_bypass(realhost):
                    host = realhost

            #print "proxy via http:", host, selector
        if not host: raise IOError, ('http error', 'no host given')

        if proxy_passwd:
            proxy_passwd = unquote(proxy_passwd)
            proxy_auth = base64.b64encode(proxy_passwd).strip()
        else:
            proxy_auth = None

        if user_passwd:
            user_passwd = unquote(user_passwd)
            auth = base64.b64encode(user_passwd).strip()
        else:
            auth = None
        h = httplib.HTTP(host)
        if data is not None:
            h.putrequest('POST', selector)
            h.putheader('Content-Type', 'application/x-www-form-urlencoded')
            h.putheader('Content-Length', '%d' % len(data))
        else:
            h.putrequest('GET', selector)
        if proxy_auth: h.putheader('Proxy-Authorization', 'Basic %s' % proxy_auth)
        if auth: h.putheader('Authorization', 'Basic %s' % auth)
        if realhost: h.putheader('Host', realhost)
        for args in self.addheaders: h.putheader(*args)
        h.endheaders(data)
        errcode, errmsg, headers = h.getreply()
        fp = h.getfile()
        if errcode == -1:
            if fp: fp.close()
            # something went wrong with the HTTP status line
            raise IOError, ('http protocol error', 0,
                            'got a bad status line', None)
        # According to RFC 2616, "2xx" code indicates that the client's
        # request was successfully received, understood, and accepted.
        if (200 <= errcode < 300):
            return addinfourl(fp, headers, "http:" + url, errcode)
        else:
            if data is None:
                return self.http_error(url, fp, errcode, errmsg, headers)
            else:
                return self.http_error(url, fp, errcode, errmsg, headers, data)

    def http_error(self, url, fp, errcode, errmsg, headers, data=None):
        """Handle http errors.
        Derived class can override this, or provide specific handlers
        named http_error_DDD where DDD is the 3-digit error code."""
        # First check if there's a specific handler for this error
        name = 'http_error_%d' % errcode
        if hasattr(self, name):
            method = getattr(self, name)
            if data is None:
                result = method(url, fp, errcode, errmsg, headers)
            else:
                result = method(url, fp, errcode, errmsg, headers, data)
            if result: return result
        return self.http_error_default(url, fp, errcode, errmsg, headers)

    def http_error_default(self, url, fp, errcode, errmsg, headers):
        """Default error handler: close the connection and raise IOError."""
        fp.close()
        raise IOError, ('http error', errcode, errmsg, headers)

    if _have_ssl:
        def open_https(self, url, data=None):
            """Use HTTPS protocol."""

            import httplib
            user_passwd = None
            proxy_passwd = None
            if isinstance(url, str):
                host, selector = splithost(url)
                if host:
                    user_passwd, host = splituser(host)
                    host = unquote(host)
                realhost = host
            else:
                host, selector = url
                # here, we determine, whether the proxy contains authorization information
                proxy_passwd, host = splituser(host)
                urltype, rest = splittype(selector)
                url = rest
                user_passwd = None
                if urltype.lower() != 'https':
                    realhost = None
                else:
                    realhost, rest = splithost(rest)
                    if realhost:
                        user_passwd, realhost = splituser(realhost)
                    if user_passwd:
                        selector = "%s://%s%s" % (urltype, realhost, rest)
                #print "proxy via https:", host, selector
            if not host: raise IOError, ('https error', 'no host given')
            if proxy_passwd:
                proxy_passwd = unquote(proxy_passwd)
                proxy_auth = base64.b64encode(proxy_passwd).strip()
            else:
                proxy_auth = None
            if user_passwd:
                user_passwd = unquote(user_passwd)
                auth = base64.b64encode(user_passwd).strip()
            else:
                auth = None
            h = httplib.HTTPS(host, 0,
                              key_file=self.key_file,
                              cert_file=self.cert_file,
                              context=self.context)
            if data is not None:
                h.putrequest('POST', selector)
                h.putheader('Content-Type',
                            'application/x-www-form-urlencoded')
                h.putheader('Content-Length', '%d' % len(data))
            else:
                h.putrequest('GET', selector)
            if proxy_auth: h.putheader('Proxy-Authorization', 'Basic %s' % proxy_auth)
            if auth: h.putheader('Authorization', 'Basic %s' % auth)
            if realhost: h.putheader('Host', realhost)
            for args in self.addheaders: h.putheader(*args)
            h.endheaders(data)
            errcode, errmsg, headers = h.getreply()
            fp = h.getfile()
            if errcode == -1:
                if fp: fp.close()
                # something went wrong with the HTTP status line
                raise IOError, ('http protocol error', 0,
                                'got a bad status line', None)
            # According to RFC 2616, "2xx" code indicates that the client's
            # request was successfully received, understood, and accepted.
            if (200 <= errcode < 300):
                return addinfourl(fp, headers, "https:" + url, errcode)
            else:
                if data is None:
                    return self.http_error(url, fp, errcode, errmsg, headers)
                else:
                    return self.http_error(url, fp, errcode, errmsg, headers,
                                           data)

    def open_file(self, url):
        """Use local file or FTP depending on form of URL."""
        if not isinstance(url, str):
            raise IOError, ('file error', 'proxy support for file protocol currently not implemented')
        if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
            return self.open_ftp(url)
        else:
            return self.open_local_file(url)

    def open_local_file(self, url):
        """Use local file."""
        import mimetypes, mimetools, email.utils
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        host, file = splithost(url)
        localname = url2pathname(file)
        try:
            stats = os.stat(localname)
        except OSError, e:
            raise IOError(e.errno, e.strerror, e.filename)
        size = stats.st_size
        modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
        mtype = mimetypes.guess_type(url)[0]
        headers = mimetools.Message(StringIO(
            'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' %
            (mtype or 'text/plain', size, modified)))
        if not host:
            urlfile = file
            if file[:1] == '/':
                urlfile = 'file://' + file
            elif file[:2] == './':
                raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url)
            return addinfourl(open(localname, 'rb'),
                              headers, urlfile)
        host, port = splitport(host)
        if not port \
           and socket.gethostbyname(host) in (localhost(), thishost()):
            urlfile = file
            if file[:1] == '/':
                urlfile = 'file://' + file
            return addinfourl(open(localname, 'rb'),
                              headers, urlfile)
        raise IOError, ('local file error', 'not on local host')

    def open_ftp(self, url):
        """Use FTP protocol."""
        if not isinstance(url, str):
            raise IOError, ('ftp error', 'proxy support for ftp protocol currently not implemented')
        import mimetypes, mimetools
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        host, path = splithost(url)
        if not host: raise IOError, ('ftp error', 'no host given')
        host, port = splitport(host)
        user, host = splituser(host)
        if user: user, passwd = splitpasswd(user)
        else: passwd = None
        host = unquote(host)
        user = user or ''
        passwd = passwd or ''
        host = socket.gethostbyname(host)
        if not port:
            import ftplib
            port = ftplib.FTP_PORT
        else:
            port = int(port)
        path, attrs = splitattr(path)
        path = unquote(path)
        dirs = path.split('/')
        dirs, file = dirs[:-1], dirs[-1]
        if dirs and not dirs[0]: dirs = dirs[1:]
        if dirs and not dirs[0]: dirs[0] = '/'
        key = user, host, port, '/'.join(dirs)
        # XXX thread unsafe!
        if len(self.ftpcache) > MAXFTPCACHE:
            # Prune the cache, rather arbitrarily
            for k in self.ftpcache.keys():
                if k != key:
                    v = self.ftpcache[k]
                    del self.ftpcache[k]
                    v.close()
        try:
            if not key in self.ftpcache:
                self.ftpcache[key] = \
                    ftpwrapper(user, passwd, host, port, dirs)
            if not file: type = 'D'
            else: type = 'I'
            for attr in attrs:
                attr, value = splitvalue(attr)
                if attr.lower() == 'type' and \
                   value in ('a', 'A', 'i', 'I', 'd', 'D'):
                    type = value.upper()
            (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
            mtype = mimetypes.guess_type("ftp:" + url)[0]
            headers = ""
            if mtype:
                headers += "Content-Type: %s\n" % mtype
            if retrlen is not None and retrlen >= 0:
                headers += "Content-Length: %d\n" % retrlen
            headers = mimetools.Message(StringIO(headers))
            return addinfourl(fp, headers, "ftp:" + url)
        except ftperrors(), msg:
            raise IOError, ('ftp error', msg), sys.exc_info()[2]

    def open_data(self, url, data=None):
        """Use "data" URL."""
        if not isinstance(url, str):
            raise IOError, ('data error', 'proxy support for data protocol currently not implemented')
        # ignore POSTed data
        #
        # syntax of data URLs:
        # dataurl   := "data:" [ mediatype ] [ ";base64" ] "," data
        # mediatype := [ type "/" subtype ] *( ";" parameter )
        # data      := *urlchar
        # parameter := attribute "=" value
        import mimetools
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        try:
            [type, data] = url.split(',', 1)
        except ValueError:
            raise IOError, ('data error', 'bad data URL')
        if not type:
            type = 'text/plain;charset=US-ASCII'
        semi = type.rfind(';')
        if semi >= 0 and '=' not in type[semi:]:
            encoding = type[semi+1:]
            type = type[:semi]
        else:
            encoding = ''
        msg = []
        msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT',
                                            time.gmtime(time.time())))
        msg.append('Content-type: %s' % type)
        if encoding == 'base64':
            data = base64.decodestring(data)
        else:
            data = unquote(data)
        msg.append('Content-Length: %d' % len(data))
        msg.append('')
        msg.append(data)
        msg = '\n'.join(msg)
        f = StringIO(msg)
        headers = mimetools.Message(f, 0)
        #f.fileno = None     # needed for addinfourl
        return addinfourl(f, headers, url)


class FancyURLopener(URLopener):
    """Derived class with handlers for errors we can handle (perhaps)."""

    def __init__(self, *args, **kwargs):
        URLopener.__init__(self, *args, **kwargs)
        self.auth_cache = {}
        self.tries = 0
        self.maxtries = 10

    def http_error_default(self, url, fp, errcode, errmsg, headers):
        """Default error handling -- don't raise an exception."""
        return addinfourl(fp, headers, "http:" + url, errcode)

    def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 302 -- relocated (temporarily)."""
        self.tries += 1
        try:
            if self.maxtries and self.tries >= self.maxtries:
                if hasattr(self, "http_error_500"):
                    meth = self.http_error_500
                else:
                    meth = self.http_error_default
                return meth(url, fp, 500,
                            "Internal Server Error: Redirect Recursion",
                            headers)
            result = self.redirect_internal(url, fp, errcode, errmsg,
                                            headers, data)
            return result
        finally:
            self.tries = 0

    def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
        if 'location' in headers:
            newurl = headers['location']
        elif 'uri' in headers:
            newurl = headers['uri']
        else:
            return
        fp.close()
        # In case the server sent a relative URL, join with original:
        newurl = basejoin(self.type + ":" + url, newurl)

        # For security reasons we do not allow redirects to protocols
        # other than HTTP, HTTPS or FTP.
        newurl_lower = newurl.lower()
        if not (newurl_lower.startswith('http://') or
                newurl_lower.startswith('https://') or
                newurl_lower.startswith('ftp://')):
            raise IOError('redirect error', errcode,
                          errmsg + " - Redirection to url '%s' is not allowed" %
                          newurl,
                          headers)

        return self.open(newurl)

    def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 301 -- also relocated (permanently)."""
        return self.http_error_302(url, fp, errcode, errmsg, headers, data)

    def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 303 -- also relocated (essentially identical to 302)."""
        return self.http_error_302(url, fp, errcode, errmsg, headers, data)

    def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 307 -- relocated, but turn POST into error."""
        if data is None:
            return self.http_error_302(url, fp, errcode, errmsg, headers, data)
        else:
            return self.http_error_default(url, fp, errcode, errmsg, headers)

    def http_error_401(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 401 -- authentication required.
        This function supports Basic authentication only."""
        if not 'www-authenticate' in headers:
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        stuff = headers['www-authenticate']
        import re
        match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
        if not match:
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        scheme, realm = match.groups()
        if scheme.lower() != 'basic':
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        name = 'retry_' + self.type + '_basic_auth'
        if data is None:
            return getattr(self,name)(url, realm)
        else:
            return getattr(self,name)(url, realm, data)

    def http_error_407(self, url, fp, errcode, errmsg, headers, data=None):
        """Error 407 -- proxy authentication required.
        This function supports Basic authentication only."""
        if not 'proxy-authenticate' in headers:
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        stuff = headers['proxy-authenticate']
        import re
        match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
        if not match:
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        scheme, realm = match.groups()
        if scheme.lower() != 'basic':
            URLopener.http_error_default(self, url, fp,
                                         errcode, errmsg, headers)
        name = 'retry_proxy_' + self.type + '_basic_auth'
        if data is None:
            return getattr(self,name)(url, realm)
        else:
            return getattr(self,name)(url, realm, data)

    def retry_proxy_http_basic_auth(self, url, realm, data=None):
        host, selector = splithost(url)
        newurl = 'http://' + host + selector
        proxy = self.proxies['http']
        urltype, proxyhost = splittype(proxy)
        proxyhost, proxyselector = splithost(proxyhost)
        i = proxyhost.find('@') + 1
        proxyhost = proxyhost[i:]
        user, passwd = self.get_user_passwd(proxyhost, realm, i)
        if not (user or passwd): return None
        proxyhost = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + proxyhost
        self.proxies['http'] = 'http://' + proxyhost + proxyselector
        if data is None:
            return self.open(newurl)
        else:
            return self.open(newurl, data)

    def retry_proxy_https_basic_auth(self, url, realm, data=None):
        host, selector = splithost(url)
        newurl = 'https://' + host + selector
        proxy = self.proxies['https']
        urltype, proxyhost = splittype(proxy)
        proxyhost, proxyselector = splithost(proxyhost)
        i = proxyhost.find('@') + 1
        proxyhost = proxyhost[i:]
        user, passwd = self.get_user_passwd(proxyhost, realm, i)
        if not (user or passwd): return None
        proxyhost = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + proxyhost
        self.proxies['https'] = 'https://' + proxyhost + proxyselector
        if data is None:
            return self.open(newurl)
        else:
            return self.open(newurl, data)

    def retry_http_basic_auth(self, url, realm, data=None):
        host, selector = splithost(url)
        i = host.find('@') + 1
        host = host[i:]
        user, passwd = self.get_user_passwd(host, realm, i)
        if not (user or passwd): return None
        host = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + host
        newurl = 'http://' + host + selector
        if data is None:
            return self.open(newurl)
        else:
            return self.open(newurl, data)

    def retry_https_basic_auth(self, url, realm, data=None):
        host, selector = splithost(url)
        i = host.find('@') + 1
        host = host[i:]
        user, passwd = self.get_user_passwd(host, realm, i)
        if not (user or passwd): return None
        host = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + host
        newurl = 'https://' + host + selector
        if data is None:
            return self.open(newurl)
        else:
            return self.open(newurl, data)

    def get_user_passwd(self, host, realm, clear_cache=0):
        key = realm + '@' + host.lower()
        if key in self.auth_cache:
            if clear_cache:
                del self.auth_cache[key]
            else:
                return self.auth_cache[key]
        user, passwd = self.prompt_user_passwd(host, realm)
        if user or passwd: self.auth_cache[key] = (user, passwd)
        return user, passwd

    def prompt_user_passwd(self, host, realm):
        """Override this in a GUI environment!"""
        import getpass
        try:
            user = raw_input("Enter username for %s at %s: " % (realm,
                                                                host))
            passwd = getpass.getpass("Enter password for %s in %s at %s: " %
                (user, realm, host))
            return user, passwd
        except KeyboardInterrupt:
            print
            return None, None


# Utility functions

_localhost = None
def localhost():
    """Return the IP address of the magic hostname 'localhost'."""
    global _localhost
    if _localhost is None:
        _localhost = socket.gethostbyname('localhost')
    return _localhost

_thishost = None
def thishost():
    """Return the IP address of the current host."""
    global _thishost
    if _thishost is None:
        try:
            _thishost = socket.gethostbyname(socket.gethostname())
        except socket.gaierror:
            _thishost = socket.gethostbyname('localhost')
    return _thishost

_ftperrors = None
def ftperrors():
    """Return the set of errors raised by the FTP class."""
    global _ftperrors
    if _ftperrors is None:
        import ftplib
        _ftperrors = ftplib.all_errors
    return _ftperrors

_noheaders = None
def noheaders():
    """Return an empty mimetools.Message object."""
    global _noheaders
    if _noheaders is None:
        import mimetools
        try:
            from cStringIO import StringIO
        except ImportError:
            from StringIO import StringIO
        _noheaders = mimetools.Message(StringIO(), 0)
        _noheaders.fp.close()   # Recycle file descriptor
    return _noheaders


# Utility classes

class ftpwrapper:
    """Class used by open_ftp() for cache of open FTP connections."""

    def __init__(self, user, passwd, host, port, dirs,
                 timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
                 persistent=True):
        self.user = user
        self.passwd = passwd
        self.host = host
        self.port = port
        self.dirs = dirs
        self.timeout = timeout
        self.refcount = 0
        self.keepalive = persistent
        try:
            self.init()
        except:
            self.close()
            raise

    def init(self):
        import ftplib
        self.busy = 0
        self.ftp = ftplib.FTP()
        self.ftp.connect(self.host, self.port, self.timeout)
        self.ftp.login(self.user, self.passwd)
        _target = '/'.join(self.dirs)
        self.ftp.cwd(_target)

    def retrfile(self, file, type):
        import ftplib
        self.endtransfer()
        if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1
        else: cmd = 'TYPE ' + type; isdir = 0
        try:
            self.ftp.voidcmd(cmd)
        except ftplib.all_errors:
            self.init()
            self.ftp.voidcmd(cmd)
        conn = None
        if file and not isdir:
            # Try to retrieve as a file
            try:
                cmd = 'RETR ' + file
                conn, retrlen = self.ftp.ntransfercmd(cmd)
            except ftplib.error_perm, reason:
                if str(reason)[:3] != '550':
                    raise IOError, ('ftp error', reason), sys.exc_info()[2]
        if not conn:
            # Set transfer mode to ASCII!
            self.ftp.voidcmd('TYPE A')
            # Try a directory listing. Verify that directory exists.
            if file:
                pwd = self.ftp.pwd()
                try:
                    try:
                        self.ftp.cwd(file)
                    except ftplib.error_perm, reason:
                        raise IOError, ('ftp error', reason), sys.exc_info()[2]
                finally:
                    self.ftp.cwd(pwd)
                cmd = 'LIST ' + file
            else:
                cmd = 'LIST'
            conn, retrlen = self.ftp.ntransfercmd(cmd)
        self.busy = 1
        ftpobj = addclosehook(conn.makefile('rb'), self.file_close)
        self.refcount += 1
        conn.close()
        # Pass back both a suitably decorated object and a retrieval length
        return (ftpobj, retrlen)

    def endtransfer(self):
        self.busy = 0

    def close(self):
        self.keepalive = False
        if self.refcount <= 0:
            self.real_close()

    def file_close(self):
        self.endtransfer()
        self.refcount -= 1
        if self.refcount <= 0 and not self.keepalive:
            self.real_close()

    def real_close(self):
        self.endtransfer()
        try:
            self.ftp.close()
        except ftperrors():
            pass

class addbase:
    """Base class for addinfo and addclosehook."""

    def __init__(self, fp):
        self.fp = fp
        self.read = self.fp.read
        self.readline = self.fp.readline
        if hasattr(self.fp, "readlines"): self.readlines = self.fp.readlines
        if hasattr(self.fp, "fileno"):
            self.fileno = self.fp.fileno
        else:
            self.fileno = lambda: None
        if hasattr(self.fp, "__iter__"):
            self.__iter__ = self.fp.__iter__
            if hasattr(self.fp, "next"):
                self.next = self.fp.next

    def __repr__(self):
        return '<%s at %r whose fp = %r>' % (self.__class__.__name__,
                                             id(self), self.fp)

    def close(self):
        self.read = None
        self.readline = None
        self.readlines = None
        self.fileno = None
        if self.fp: self.fp.close()
        self.fp = None

class addclosehook(addbase):
    """Class to add a close hook to an open file."""

    def __init__(self, fp, closehook, *hookargs):
        addbase.__init__(self, fp)
        self.closehook = closehook
        self.hookargs = hookargs

    def close(self):
        try:
            closehook = self.closehook
            hookargs = self.hookargs
            if closehook:
                self.closehook = None
                self.hookargs = None
                closehook(*hookargs)
        finally:
            addbase.close(self)


class addinfo(addbase):
    """class to add an info() method to an open file."""

    def __init__(self, fp, headers):
        addbase.__init__(self, fp)
        self.headers = headers

    def info(self):
        return self.headers

class addinfourl(addbase):
    """class to add info() and geturl() methods to an open file."""

    def __init__(self, fp, headers, url, code=None):
        addbase.__init__(self, fp)
        self.headers = headers
        self.url = url
        self.code = code

    def info(self):
        return self.headers

    def getcode(self):
        return self.code

    def geturl(self):
        return self.url


# Utilities to parse URLs (most of these return None for missing parts):
# unwrap('<URL:type://host/path>') --> 'type://host/path'
# splittype('type:opaquestring') --> 'type', 'opaquestring'
# splithost('//host[:port]/path') --> 'host[:port]', '/path'
# splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'
# splitpasswd('user:passwd') -> 'user', 'passwd'
# splitport('host:port') --> 'host', 'port'
# splitquery('/path?query') --> '/path', 'query'
# splittag('/path#tag') --> '/path', 'tag'
# splitattr('/path;attr1=value1;attr2=value2;...') ->
#   '/path', ['attr1=value1', 'attr2=value2', ...]
# splitvalue('attr=value') --> 'attr', 'value'
# unquote('abc%20def') -> 'abc def'
# quote('abc def') -> 'abc%20def')

try:
    unicode
except NameError:
    def _is_unicode(x):
        return 0
else:
    def _is_unicode(x):
        return isinstance(x, unicode)

def toBytes(url):
    """toBytes(u"URL") --> 'URL'."""
    # Most URL schemes require ASCII. If that changes, the conversion
    # can be relaxed
    if _is_unicode(url):
        try:
            url = url.encode("ASCII")
        except UnicodeError:
            raise UnicodeError("URL " + repr(url) +
                               " contains non-ASCII characters")
    return url

def unwrap(url):
    """unwrap('<URL:type://host/path>') --> 'type://host/path'."""
    url = url.strip()
    if url[:1] == '<' and url[-1:] == '>':
        url = url[1:-1].strip()
    if url[:4] == 'URL:': url = url[4:].strip()
    return url

_typeprog = None
def splittype(url):
    """splittype('type:opaquestring') --> 'type', 'opaquestring'."""
    global _typeprog
    if _typeprog is None:
        import re
        _typeprog = re.compile('^([^/:]+):')

    match = _typeprog.match(url)
    if match:
        scheme = match.group(1)
        return scheme.lower(), url[len(scheme) + 1:]
    return None, url

_hostprog = None
def splithost(url):
    """splithost('//host[:port]/path') --> 'host[:port]', '/path'."""
    global _hostprog
    if _hostprog is None:
        _hostprog = re.compile('//([^/#?]*)(.*)', re.DOTALL)

    match = _hostprog.match(url)
    if match:
        host_port = match.group(1)
        path = match.group(2)
        if path and not path.startswith('/'):
            path = '/' + path
        return host_port, path
    return None, url

_userprog = None
def splituser(host):
    """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'."""
    global _userprog
    if _userprog is None:
        import re
        _userprog = re.compile('^(.*)@(.*)$')

    match = _userprog.match(host)
    if match: return match.group(1, 2)
    return None, host

_passwdprog = None
def splitpasswd(user):
    """splitpasswd('user:passwd') -> 'user', 'passwd'."""
    global _passwdprog
    if _passwdprog is None:
        import re
        _passwdprog = re.compile('^([^:]*):(.*)$',re.S)

    match = _passwdprog.match(user)
    if match: return match.group(1, 2)
    return user, None

# splittag('/path#tag') --> '/path', 'tag'
_portprog = None
def splitport(host):
    """splitport('host:port') --> 'host', 'port'."""
    global _portprog
    if _portprog is None:
        import re
        _portprog = re.compile('^(.*):([0-9]*)$')

    match = _portprog.match(host)
    if match:
        host, port = match.groups()
        if port:
            return host, port
    return host, None

_nportprog = None
def splitnport(host, defport=-1):
    """Split host and port, returning numeric port.
    Return given default port if no ':' found; defaults to -1.
    Return numerical port if a valid number are found after ':'.
    Return None if ':' but not a valid number."""
    global _nportprog
    if _nportprog is None:
        import re
        _nportprog = re.compile('^(.*):(.*)$')

    match = _nportprog.match(host)
    if match:
        host, port = match.group(1, 2)
        if port:
            try:
                nport = int(port)
            except ValueError:
                nport = None
            return host, nport
    return host, defport

_queryprog = None
def splitquery(url):
    """splitquery('/path?query') --> '/path', 'query'."""
    global _queryprog
    if _queryprog is None:
        import re
        _queryprog = re.compile('^(.*)\?([^?]*)$')

    match = _queryprog.match(url)
    if match: return match.group(1, 2)
    return url, None

_tagprog = None
def splittag(url):
    """splittag('/path#tag') --> '/path', 'tag'."""
    global _tagprog
    if _tagprog is None:
        import re
        _tagprog = re.compile('^(.*)#([^#]*)$')

    match = _tagprog.match(url)
    if match: return match.group(1, 2)
    return url, None

def splitattr(url):
    """splitattr('/path;attr1=value1;attr2=value2;...') ->
        '/path', ['attr1=value1', 'attr2=value2', ...]."""
    words = url.split(';')
    return words[0], words[1:]

_valueprog = None
def splitvalue(attr):
    """splitvalue('attr=value') --> 'attr', 'value'."""
    global _valueprog
    if _valueprog is None:
        import re
        _valueprog = re.compile('^([^=]*)=(.*)$')

    match = _valueprog.match(attr)
    if match: return match.group(1, 2)
    return attr, None

# urlparse contains a duplicate of this method to avoid a circular import.  If
# you update this method, also update the copy in urlparse.  This code
# duplication does not exist in Python3.

_hexdig = '0123456789ABCDEFabcdef'
_hextochr = dict((a + b, chr(int(a + b, 16)))
                 for a in _hexdig for b in _hexdig)
_asciire = re.compile('([\x00-\x7f]+)')

def unquote(s):
    """unquote('abc%20def') -> 'abc def'."""
    if _is_unicode(s):
        if '%' not in s:
            return s
        bits = _asciire.split(s)
        res = [bits[0]]
        append = res.append
        for i in range(1, len(bits), 2):
            append(unquote(str(bits[i])).decode('latin1'))
            append(bits[i + 1])
        return ''.join(res)

    bits = s.split('%')
    # fastpath
    if len(bits) == 1:
        return s
    res = [bits[0]]
    append = res.append
    for item in bits[1:]:
        try:
            append(_hextochr[item[:2]])
            append(item[2:])
        except KeyError:
            append('%')
            append(item)
    return ''.join(res)

def unquote_plus(s):
    """unquote('%7e/abc+def') -> '~/abc def'"""
    s = s.replace('+', ' ')
    return unquote(s)

always_safe = ('ABCDEFGHIJKLMNOPQRSTUVWXYZ'
               'abcdefghijklmnopqrstuvwxyz'
               '0123456789' '_.-')
_safe_map = {}
for i, c in zip(xrange(256), str(bytearray(xrange(256)))):
    _safe_map[c] = c if (i < 128 and c in always_safe) else '%{:02X}'.format(i)
_safe_quoters = {}

def quote(s, safe='/'):
    """quote('abc def') -> 'abc%20def'

    Each part of a URL, e.g. the path info, the query, etc., has a
    different set of reserved characters that must be quoted.

    RFC 2396 Uniform Resource Identifiers (URI): Generic Syntax lists
    the following reserved characters.

    reserved    = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
                  "$" | ","

    Each of these characters is reserved in some component of a URL,
    but not necessarily in all of them.

    By default, the quote function is intended for quoting the path
    section of a URL.  Thus, it will not encode '/'.  This character
    is reserved, but in typical usage the quote function is being
    called on a path where the existing slash characters are used as
    reserved characters.
    """
    # fastpath
    if not s:
        if s is None:
            raise TypeError('None object cannot be quoted')
        return s
    cachekey = (safe, always_safe)
    try:
        (quoter, safe) = _safe_quoters[cachekey]
    except KeyError:
        safe_map = _safe_map.copy()
        safe_map.update([(c, c) for c in safe])
        quoter = safe_map.__getitem__
        safe = always_safe + safe
        _safe_quoters[cachekey] = (quoter, safe)
    if not s.rstrip(safe):
        return s
    return ''.join(map(quoter, s))

def quote_plus(s, safe=''):
    """Quote the query fragment of a URL; replacing ' ' with '+'"""
    if ' ' in s:
        s = quote(s, safe + ' ')
        return s.replace(' ', '+')
    return quote(s, safe)

def urlencode(query, doseq=0):
    """Encode a sequence of two-element tuples or dictionary into a URL query string.

    If any values in the query arg are sequences and doseq is true, each
    sequence element is converted to a separate parameter.

    If the query arg is a sequence of two-element tuples, the order of the
    parameters in the output will match the order of parameters in the
    input.
    """

    if hasattr(query,"items"):
        # mapping objects
        query = query.items()
    else:
        # it's a bother at times that strings and string-like objects are
        # sequences...
        try:
            # non-sequence items should not work with len()
            # non-empty strings will fail this
            if len(query) and not isinstance(query[0], tuple):
                raise TypeError
            # zero-length sequences of all types will get here and succeed,
            # but that's a minor nit - since the original implementation
            # allowed empty dicts that type of behavior probably should be
            # preserved for consistency
        except TypeError:
            ty,va,tb = sys.exc_info()
            raise TypeError, "not a valid non-string sequence or mapping object", tb

    l = []
    if not doseq:
        # preserve old behavior
        for k, v in query:
            k = quote_plus(str(k))
            v = quote_plus(str(v))
            l.append(k + '=' + v)
    else:
        for k, v in query:
            k = quote_plus(str(k))
            if isinstance(v, str):
                v = quote_plus(v)
                l.append(k + '=' + v)
            elif _is_unicode(v):
                # is there a reasonable way to convert to ASCII?
                # encode generates a string, but "replace" or "ignore"
                # lose information and "strict" can raise UnicodeError
                v = quote_plus(v.encode("ASCII","replace"))
                l.append(k + '=' + v)
            else:
                try:
                    # is this a sufficient test for sequence-ness?
                    len(v)
                except TypeError:
                    # not a sequence
                    v = quote_plus(str(v))
                    l.append(k + '=' + v)
                else:
                    # loop over the sequence
                    for elt in v:
                        l.append(k + '=' + quote_plus(str(elt)))
    return '&'.join(l)

# Proxy handling
def getproxies_environment():
    """Return a dictionary of scheme -> proxy server URL mappings.

    Scan the environment for variables named <scheme>_proxy;
    this seems to be the standard convention.  In order to prefer lowercase
    variables, we process the environment in two passes, first matches any
    and second matches only lower case proxies.

    If you need a different way, you can pass a proxies dictionary to the
    [Fancy]URLopener constructor.
    """
    # Get all variables
    proxies = {}
    for name, value in os.environ.items():
        name = name.lower()
        if value and name[-6:] == '_proxy':
            proxies[name[:-6]] = value

    # CVE-2016-1000110 - If we are running as CGI script, forget HTTP_PROXY
    # (non-all-lowercase) as it may be set from the web server by a "Proxy:"
    # header from the client
    # If "proxy" is lowercase, it will still be used thanks to the next block
    if 'REQUEST_METHOD' in os.environ:
        proxies.pop('http', None)

    # Get lowercase variables
    for name, value in os.environ.items():
        if name[-6:] == '_proxy':
            name = name.lower()
            if value:
                proxies[name[:-6]] = value
            else:
                proxies.pop(name[:-6], None)

    return proxies

def proxy_bypass_environment(host, proxies=None):
    """Test if proxies should not be used for a particular host.

    Checks the proxies dict for the value of no_proxy, which should be a
    list of comma separated DNS suffixes, or '*' for all hosts.
    """
    if proxies is None:
        proxies = getproxies_environment()
    # don't bypass, if no_proxy isn't specified
    try:
        no_proxy = proxies['no']
    except KeyError:
        return 0
    # '*' is special case for always bypass
    if no_proxy == '*':
        return 1
    # strip port off host
    hostonly, port = splitport(host)
    # check if the host ends with any of the DNS suffixes
    no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]
    for name in no_proxy_list:
        if name:
            name = name.lstrip('.')  # ignore leading dots
            name = re.escape(name)
            pattern = r'(.+\.)?%s$' % name
            if (re.match(pattern, hostonly, re.I)
                    or re.match(pattern, host, re.I)):
                return 1
    # otherwise, don't bypass
    return 0


if sys.platform == 'darwin':
    from _scproxy import _get_proxy_settings, _get_proxies

    def proxy_bypass_macosx_sysconf(host):
        """
        Return True iff this host shouldn't be accessed using a proxy

        This function uses the MacOSX framework SystemConfiguration
        to fetch the proxy information.
        """
        import re
        import socket
        from fnmatch import fnmatch

        hostonly, port = splitport(host)

        def ip2num(ipAddr):
            parts = ipAddr.split('.')
            parts = map(int, parts)
            if len(parts) != 4:
                parts = (parts + [0, 0, 0, 0])[:4]
            return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]

        proxy_settings = _get_proxy_settings()

        # Check for simple host names:
        if '.' not in host:
            if proxy_settings['exclude_simple']:
                return True

        hostIP = None

        for value in proxy_settings.get('exceptions', ()):
            # Items in the list are strings like these: *.local, 169.254/16
            if not value: continue

            m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)
            if m is not None:
                if hostIP is None:
                    try:
                        hostIP = socket.gethostbyname(hostonly)
                        hostIP = ip2num(hostIP)
                    except socket.error:
                        continue

                base = ip2num(m.group(1))
                mask = m.group(2)
                if mask is None:
                    mask = 8 * (m.group(1).count('.') + 1)

                else:
                    mask = int(mask[1:])
                mask = 32 - mask

                if (hostIP >> mask) == (base >> mask):
                    return True

            elif fnmatch(host, value):
                return True

        return False

    def getproxies_macosx_sysconf():
        """Return a dictionary of scheme -> proxy server URL mappings.

        This function uses the MacOSX framework SystemConfiguration
        to fetch the proxy information.
        """
        return _get_proxies()

    def proxy_bypass(host):
        """Return True, if a host should be bypassed.

        Checks proxy settings gathered from the environment, if specified, or
        from the MacOSX framework SystemConfiguration.
        """
        proxies = getproxies_environment()
        if proxies:
            return proxy_bypass_environment(host, proxies)
        else:
            return proxy_bypass_macosx_sysconf(host)

    def getproxies():
        return getproxies_environment() or getproxies_macosx_sysconf()

elif os.name == 'nt':
    def getproxies_registry():
        """Return a dictionary of scheme -> proxy server URL mappings.

        Win32 uses the registry to store proxies.

        """
        proxies = {}
        try:
            import _winreg
        except ImportError:
            # Std module, so should be around - but you never know!
            return proxies
        try:
            internetSettings = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER,
                r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
            proxyEnable = _winreg.QueryValueEx(internetSettings,
                                               'ProxyEnable')[0]
            if proxyEnable:
                # Returned as Unicode but problems if not converted to ASCII
                proxyServer = str(_winreg.QueryValueEx(internetSettings,
                                                       'ProxyServer')[0])
                if '=' in proxyServer:
                    # Per-protocol settings
                    for p in proxyServer.split(';'):
                        protocol, address = p.split('=', 1)
                        # See if address has a type:// prefix
                        import re
                        if not re.match('^([^/:]+)://', address):
                            address = '%s://%s' % (protocol, address)
                        proxies[protocol] = address
                else:
                    # Use one setting for all protocols
                    if proxyServer[:5] == 'http:':
                        proxies['http'] = proxyServer
                    else:
                        proxies['http'] = 'http://%s' % proxyServer
                        proxies['https'] = 'https://%s' % proxyServer
                        proxies['ftp'] = 'ftp://%s' % proxyServer
            internetSettings.Close()
        except (WindowsError, ValueError, TypeError):
            # Either registry key not found etc, or the value in an
            # unexpected format.
            # proxies already set up to be empty so nothing to do
            pass
        return proxies

    def getproxies():
        """Return a dictionary of scheme -> proxy server URL mappings.

        Returns settings gathered from the environment, if specified,
        or the registry.

        """
        return getproxies_environment() or getproxies_registry()

    def proxy_bypass_registry(host):
        try:
            import _winreg
            import re
        except ImportError:
            # Std modules, so should be around - but you never know!
            return 0
        try:
            internetSettings = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER,
                r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
            proxyEnable = _winreg.QueryValueEx(internetSettings,
                                               'ProxyEnable')[0]
            proxyOverride = str(_winreg.QueryValueEx(internetSettings,
                                                     'ProxyOverride')[0])
            # ^^^^ Returned as Unicode but problems if not converted to ASCII
        except WindowsError:
            return 0
        if not proxyEnable or not proxyOverride:
            return 0
        # try to make a host list from name and IP address.
        rawHost, port = splitport(host)
        host = [rawHost]
        try:
            addr = socket.gethostbyname(rawHost)
            if addr != rawHost:
                host.append(addr)
        except socket.error:
            pass
        try:
            fqdn = socket.getfqdn(rawHost)
            if fqdn != rawHost:
                host.append(fqdn)
        except socket.error:
            pass
        # make a check value list from the registry entry: replace the
        # '<local>' string by the localhost entry and the corresponding
        # canonical entry.
        proxyOverride = proxyOverride.split(';')
        # now check if we match one of the registry values.
        for test in proxyOverride:
            if test == '<local>':
                if '.' not in rawHost:
                    return 1
            test = test.replace(".", r"\.")     # mask dots
            test = test.replace("*", r".*")     # change glob sequence
            test = test.replace("?", r".")      # change glob char
            for val in host:
                # print "%s <--> %s" %( test, val )
                if re.match(test, val, re.I):
                    return 1
        return 0

    def proxy_bypass(host):
        """Return True, if the host should be bypassed.

        Checks proxy settings gathered from the environment, if specified,
        or the registry.
        """
        proxies = getproxies_environment()
        if proxies:
            return proxy_bypass_environment(host, proxies)
        else:
            return proxy_bypass_registry(host)

else:
    # By default use environment variables
    getproxies = getproxies_environment
    proxy_bypass = proxy_bypass_environment

# Test and time quote() and unquote()
def test1():
    s = ''
    for i in range(256): s = s + chr(i)
    s = s*4
    t0 = time.time()
    qs = quote(s)
    uqs = unquote(qs)
    t1 = time.time()
    if uqs != s:
        print 'Wrong!'
    print repr(s)
    print repr(qs)
    print repr(uqs)
    print round(t1 - t0, 3), 'sec'


def reporthook(blocknum, blocksize, totalsize):
    # Report during remote transfers
    print "Block number: %d, Block size: %d, Total size: %d" % (
        blocknum, blocksize, totalsize)
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 26 2023 06:45:21
root / root
0755
bsddb
--
March 26 2024 06:34:32
root / root
0755
compiler
--
March 26 2024 06:34:32
root / root
0755
ctypes
--
March 26 2024 06:34:32
root / root
0755
curses
--
March 26 2024 06:34:32
root / root
0755
dist-packages
--
March 26 2024 06:34:31
root / root
0755
distutils
--
March 26 2024 06:34:32
root / root
0755
email
--
March 26 2024 06:34:32
root / root
0755
encodings
--
March 26 2024 06:34:31
root / root
0755
ensurepip
--
March 26 2024 06:34:32
root / root
0755
hotshot
--
March 26 2024 06:34:32
root / root
0755
importlib
--
March 26 2024 06:34:32
root / root
0755
json
--
March 26 2024 06:34:32
root / root
0755
lib-dynload
--
March 26 2024 06:34:31
root / root
0755
lib-tk
--
March 26 2024 06:34:32
root / root
0755
lib2to3
--
March 26 2024 06:34:32
root / root
0755
logging
--
March 26 2024 06:34:31
root / root
0755
multiprocessing
--
March 26 2024 06:34:32
root / root
0755
plat-x86_64-linux-gnu
--
March 26 2024 06:34:32
root / root
0755
pydoc_data
--
March 26 2024 06:34:32
root / root
0755
sqlite3
--
March 26 2024 06:34:32
root / root
0755
test
--
March 26 2024 06:34:32
root / root
0755
unittest
--
March 26 2024 06:34:32
root / root
0755
wsgiref
--
March 26 2024 06:34:32
root / root
0755
xml
--
March 26 2024 06:34:32
root / root
0755
BaseHTTPServer.py
22.214 KB
March 23 2024 18:55:36
root / root
0644
BaseHTTPServer.pyc
21.174 KB
March 26 2024 06:34:32
root / root
0644
Bastion.py
5.609 KB
March 23 2024 18:55:36
root / root
0644
Bastion.pyc
6.475 KB
March 26 2024 06:34:32
root / root
0644
CGIHTTPServer.py
12.782 KB
March 23 2024 18:55:36
root / root
0644
CGIHTTPServer.pyc
10.734 KB
March 26 2024 06:34:32
root / root
0644
ConfigParser.py
27.096 KB
March 23 2024 18:55:36
root / root
0644
ConfigParser.pyc
24.507 KB
March 26 2024 06:34:31
root / root
0644
Cookie.py
25.916 KB
March 23 2024 18:55:36
root / root
0644
Cookie.pyc
22.053 KB
March 26 2024 06:34:32
root / root
0644
DocXMLRPCServer.py
10.516 KB
March 23 2024 18:55:36
root / root
0644
DocXMLRPCServer.pyc
9.919 KB
March 26 2024 06:34:32
root / root
0644
HTMLParser.py
16.769 KB
March 23 2024 18:55:36
root / root
0644
HTMLParser.pyc
13.343 KB
March 26 2024 06:34:32
root / root
0644
LICENSE.txt
12.47 KB
March 23 2024 18:55:36
root / root
0644
MimeWriter.py
6.33 KB
March 23 2024 18:55:36
root / root
0644
MimeWriter.pyc
7.174 KB
March 26 2024 06:34:32
root / root
0644
Queue.py
8.376 KB
March 23 2024 18:55:36
root / root
0644
Queue.pyc
9.148 KB
March 26 2024 06:34:32
root / root
0644
SimpleHTTPServer.py
7.81 KB
March 23 2024 18:55:36
root / root
0644
SimpleHTTPServer.pyc
7.801 KB
March 26 2024 06:34:32
root / root
0644
SimpleXMLRPCServer.py
25.207 KB
March 23 2024 18:55:36
root / root
0644
SimpleXMLRPCServer.pyc
22.257 KB
March 26 2024 06:34:32
root / root
0644
SocketServer.py
23.387 KB
March 23 2024 18:55:36
root / root
0644
SocketServer.pyc
23.411 KB
March 26 2024 06:34:32
root / root
0644
StringIO.py
10.412 KB
March 23 2024 18:55:36
root / root
0644
StringIO.pyc
11.174 KB
March 26 2024 06:34:31
root / root
0644
UserDict.py
6.895 KB
March 23 2024 18:55:36
root / root
0644
UserDict.pyc
9.396 KB
March 26 2024 06:34:31
root / root
0644
UserList.py
3.559 KB
March 23 2024 18:55:36
root / root
0644
UserList.pyc
6.356 KB
March 26 2024 06:34:32
root / root
0644
UserString.py
9.46 KB
March 23 2024 18:55:36
root / root
0755
UserString.pyc
14.383 KB
March 26 2024 06:34:32
root / root
0644
_LWPCookieJar.py
6.399 KB
March 23 2024 18:55:36
root / root
0644
_LWPCookieJar.pyc
5.295 KB
March 26 2024 06:34:32
root / root
0644
_MozillaCookieJar.py
5.661 KB
March 23 2024 18:55:36
root / root
0644
_MozillaCookieJar.pyc
4.349 KB
March 26 2024 06:34:32
root / root
0644
__future__.py
4.277 KB
March 23 2024 18:55:36
root / root
0644
__future__.pyc
4.112 KB
March 26 2024 06:34:31
root / root
0644
__phello__.foo.py
0.063 KB
March 23 2024 18:55:36
root / root
0644
__phello__.foo.pyc
0.12 KB
March 26 2024 06:34:32
root / root
0644
_abcoll.py
18.183 KB
March 23 2024 18:55:36
root / root
0644
_abcoll.pyc
24.877 KB
March 26 2024 06:34:31
root / root
0644
_osx_support.py
18.652 KB
March 23 2024 18:55:36
root / root
0644
_osx_support.pyc
11.445 KB
March 26 2024 06:34:32
root / root
0644
_pyio.py
67.998 KB
March 23 2024 18:55:36
root / root
0644
_pyio.pyc
62.843 KB
March 26 2024 06:34:32
root / root
0644
_strptime.py
20.242 KB
March 23 2024 18:55:36
root / root
0644
_strptime.pyc
14.777 KB
March 26 2024 06:34:32
root / root
0644
_sysconfigdata.py
0.123 KB
March 23 2024 18:55:36
root / root
0644
_sysconfigdata.pyc
0.272 KB
March 26 2024 06:34:31
root / root
0644
_threading_local.py
7.09 KB
March 23 2024 18:55:36
root / root
0644
_threading_local.pyc
6.206 KB
March 26 2024 06:34:32
root / root
0644
_weakrefset.py
5.772 KB
March 23 2024 18:55:36
root / root
0644
_weakrefset.pyc
9.357 KB
March 26 2024 06:34:31
root / root
0644
abc.py
6.978 KB
March 23 2024 18:55:36
root / root
0644
abc.pyc
5.978 KB
March 26 2024 06:34:31
root / root
0644
aifc.py
33.769 KB
March 23 2024 18:55:36
root / root
0644
aifc.pyc
29.603 KB
March 26 2024 06:34:32
root / root
0644
antigravity.py
0.059 KB
March 23 2024 18:55:36
root / root
0644
antigravity.pyc
0.196 KB
March 26 2024 06:34:32
root / root
0644
anydbm.py
2.601 KB
March 23 2024 18:55:36
root / root
0644
anydbm.pyc
2.729 KB
March 26 2024 06:34:32
root / root
0644
argparse.egg-info
0.212 KB
March 23 2024 18:55:36
root / root
0644
argparse.py
87.137 KB
March 23 2024 18:55:36
root / root
0644
argparse.pyc
62.556 KB
March 26 2024 06:34:32
root / root
0644
ast.py
11.528 KB
March 23 2024 18:55:36
root / root
0644
ast.pyc
12.588 KB
March 26 2024 06:34:32
root / root
0644
asynchat.py
11.31 KB
March 23 2024 18:55:36
root / root
0644
asynchat.pyc
8.545 KB
March 26 2024 06:34:32
root / root
0644
asyncore.py
20.452 KB
March 23 2024 18:55:36
root / root
0644
asyncore.pyc
18.335 KB
March 26 2024 06:34:32
root / root
0644
atexit.py
1.665 KB
March 23 2024 18:55:36
root / root
0644
atexit.pyc
2.14 KB
March 26 2024 06:34:31
root / root
0644
audiodev.py
7.419 KB
March 23 2024 18:55:36
root / root
0644
audiodev.pyc
8.218 KB
March 26 2024 06:34:32
root / root
0644
base64.py
11.529 KB
March 23 2024 18:55:36
root / root
0755
base64.pyc
10.997 KB
March 26 2024 06:34:31
root / root
0644
bdb.py
21.205 KB
March 23 2024 18:55:36
root / root
0644
bdb.pyc
18.534 KB
March 26 2024 06:34:32
root / root
0644
binhex.py
14.354 KB
March 23 2024 18:55:36
root / root
0644
binhex.pyc
14.998 KB
March 26 2024 06:34:32
root / root
0644
bisect.py
2.534 KB
March 23 2024 18:55:36
root / root
0644
bisect.pyc
2.989 KB
March 26 2024 06:34:31
root / root
0644
cProfile.py
6.419 KB
March 23 2024 18:55:36
root / root
0755
cProfile.pyc
6.218 KB
March 26 2024 06:34:32
root / root
0644
calendar.py
22.836 KB
March 23 2024 18:55:36
root / root
0644
calendar.pyc
27.104 KB
March 26 2024 06:34:31
root / root
0644
cgi.py
35.479 KB
March 23 2024 18:55:36
root / root
0755
cgi.pyc
32.483 KB
March 26 2024 06:34:32
root / root
0644
cgitb.py
11.89 KB
March 23 2024 18:55:36
root / root
0644
cgitb.pyc
11.818 KB
March 26 2024 06:34:32
root / root
0644
chunk.py
5.292 KB
March 23 2024 18:55:36
root / root
0644
chunk.pyc
5.449 KB
March 26 2024 06:34:32
root / root
0644
cmd.py
14.674 KB
March 23 2024 18:55:36
root / root
0644
cmd.pyc
13.669 KB
March 26 2024 06:34:32
root / root
0644
code.py
9.95 KB
March 23 2024 18:55:36
root / root
0644
code.pyc
10.061 KB
March 26 2024 06:34:32
root / root
0644
codecs.py
35.296 KB
March 23 2024 18:55:36
root / root
0644
codecs.pyc
35.777 KB
March 26 2024 06:34:31
root / root
0644
codeop.py
5.858 KB
March 23 2024 18:55:36
root / root
0644
codeop.pyc
6.423 KB
March 26 2024 06:34:32
root / root
0644
collections.py
27.146 KB
March 23 2024 18:55:36
root / root
0644
collections.pyc
25.448 KB
March 26 2024 06:34:31
root / root
0644
colorsys.py
3.604 KB
March 23 2024 18:55:36
root / root
0644
colorsys.pyc
3.882 KB
March 26 2024 06:34:32
root / root
0644
commands.py
2.485 KB
March 23 2024 18:55:36
root / root
0644
commands.pyc
2.399 KB
March 26 2024 06:34:32
root / root
0644
compileall.py
7.581 KB
March 23 2024 18:55:36
root / root
0644
compileall.pyc
6.841 KB
March 26 2024 06:34:31
root / root
0644
contextlib.py
4.32 KB
March 23 2024 18:55:36
root / root
0644
contextlib.pyc
4.326 KB
March 26 2024 06:34:31
root / root
0644
cookielib.py
63.744 KB
March 23 2024 18:55:36
root / root
0644
cookielib.pyc
53.1 KB
March 26 2024 06:34:32
root / root
0644
copy.py
11.263 KB
March 23 2024 18:55:36
root / root
0644
copy.pyc
11.834 KB
March 26 2024 06:34:31
root / root
0644
copy_reg.py
6.811 KB
March 23 2024 18:55:36
root / root
0644
copy_reg.pyc
5.024 KB
March 26 2024 06:34:31
root / root
0644
csv.py
16.316 KB
March 23 2024 18:55:36
root / root
0644
csv.pyc
13.134 KB
March 26 2024 06:34:32
root / root
0644
dbhash.py
0.486 KB
March 23 2024 18:55:36
root / root
0644
dbhash.pyc
0.697 KB
March 26 2024 06:34:32
root / root
0644
decimal.py
216.731 KB
March 23 2024 18:55:36
root / root
0644
decimal.pyc
167.622 KB
March 26 2024 06:34:32
root / root
0644
difflib.py
80.396 KB
March 23 2024 18:55:36
root / root
0644
difflib.pyc
60.342 KB
March 26 2024 06:34:32
root / root
0644
dircache.py
1.1 KB
March 23 2024 18:55:36
root / root
0644
dircache.pyc
1.531 KB
March 26 2024 06:34:32
root / root
0644
dis.py
6.347 KB
March 23 2024 18:55:36
root / root
0644
dis.pyc
6.066 KB
March 26 2024 06:34:31
root / root
0644
doctest.py
102.632 KB
March 23 2024 18:55:36
root / root
0644
doctest.pyc
81.44 KB
March 26 2024 06:34:32
root / root
0644
dumbdbm.py
8.927 KB
March 23 2024 18:55:36
root / root
0644
dumbdbm.pyc
6.551 KB
March 26 2024 06:34:32
root / root
0644
dummy_thread.py
4.314 KB
March 23 2024 18:55:36
root / root
0644
dummy_thread.pyc
5.238 KB
March 26 2024 06:34:32
root / root
0644
dummy_threading.py
2.738 KB
March 23 2024 18:55:36
root / root
0644
dummy_threading.pyc
1.253 KB
March 26 2024 06:34:32
root / root
0644
filecmp.py
9.363 KB
March 23 2024 18:55:36
root / root
0644
filecmp.pyc
9.357 KB
March 26 2024 06:34:32
root / root
0644
fileinput.py
13.424 KB
March 23 2024 18:55:36
root / root
0644
fileinput.pyc
14.102 KB
March 26 2024 06:34:32
root / root
0644
fnmatch.py
3.237 KB
March 23 2024 18:55:36
root / root
0644
fnmatch.pyc
3.518 KB
March 26 2024 06:34:31
root / root
0644
formatter.py
14.562 KB
March 23 2024 18:55:36
root / root
0644
formatter.pyc
18.578 KB
March 26 2024 06:34:32
root / root
0644
fpformat.py
4.621 KB
March 23 2024 18:55:36
root / root
0644
fpformat.pyc
4.577 KB
March 26 2024 06:34:32
root / root
0644
fractions.py
21.865 KB
March 23 2024 18:55:36
root / root
0644
fractions.pyc
19.173 KB
March 26 2024 06:34:32
root / root
0644
ftplib.py
37.651 KB
March 23 2024 18:55:36
root / root
0644
ftplib.pyc
33.985 KB
March 26 2024 06:34:32
root / root
0644
functools.py
4.693 KB
March 23 2024 18:55:36
root / root
0644
functools.pyc
6.415 KB
March 26 2024 06:34:31
root / root
0644
genericpath.py
3.126 KB
March 23 2024 18:55:36
root / root
0644
genericpath.pyc
3.413 KB
March 26 2024 06:34:31
root / root
0644
getopt.py
7.147 KB
March 23 2024 18:55:36
root / root
0644
getopt.pyc
6.479 KB
March 26 2024 06:34:31
root / root
0644
getpass.py
5.433 KB
March 23 2024 18:55:36
root / root
0644
getpass.pyc
4.619 KB
March 26 2024 06:34:32
root / root
0644
gettext.py
22.059 KB
March 23 2024 18:55:36
root / root
0644
gettext.pyc
17.447 KB
March 26 2024 06:34:32
root / root
0644
glob.py
3.041 KB
March 23 2024 18:55:36
root / root
0644
glob.pyc
2.858 KB
March 26 2024 06:34:31
root / root
0644
gzip.py
18.582 KB
March 23 2024 18:55:36
root / root
0644
gzip.pyc
14.82 KB
March 26 2024 06:34:32
root / root
0644
hashlib.py
7.658 KB
March 23 2024 18:55:36
root / root
0644
hashlib.pyc
6.729 KB
March 26 2024 06:34:31
root / root
0644
heapq.py
17.866 KB
March 23 2024 18:55:36
root / root
0644
heapq.pyc
14.188 KB
March 26 2024 06:34:31
root / root
0644
hmac.py
4.48 KB
March 23 2024 18:55:36
root / root
0644
hmac.pyc
4.416 KB
March 26 2024 06:34:32
root / root
0644
htmlentitydefs.py
17.633 KB
March 23 2024 18:55:36
root / root
0644
htmlentitydefs.pyc
6.216 KB
March 26 2024 06:34:32
root / root
0644
htmllib.py
12.567 KB
March 23 2024 18:55:36
root / root
0644
htmllib.pyc
19.655 KB
March 26 2024 06:34:32
root / root
0644
httplib.py
51.304 KB
March 23 2024 18:55:36
root / root
0644
httplib.pyc
36.845 KB
March 26 2024 06:34:32
root / root
0644
ihooks.py
18.541 KB
March 23 2024 18:55:36
root / root
0644
ihooks.pyc
20.736 KB
March 26 2024 06:34:32
root / root
0644
imaplib.py
47.232 KB
March 23 2024 18:55:36
root / root
0644
imaplib.pyc
43.767 KB
March 26 2024 06:34:32
root / root
0644
imghdr.py
3.458 KB
March 23 2024 18:55:36
root / root
0644
imghdr.pyc
4.693 KB
March 26 2024 06:34:32
root / root
0644
imputil.py
25.16 KB
March 23 2024 18:55:36
root / root
0644
imputil.pyc
15.183 KB
March 26 2024 06:34:32
root / root
0644
inspect.py
42 KB
March 23 2024 18:55:36
root / root
0644
inspect.pyc
39.151 KB
March 26 2024 06:34:31
root / root
0644
io.py
3.244 KB
March 23 2024 18:55:36
root / root
0644
io.pyc
3.495 KB
March 26 2024 06:34:31
root / root
0644
keyword.py
1.948 KB
March 23 2024 18:55:36
root / root
0755
keyword.pyc
2.052 KB
March 26 2024 06:34:31
root / root
0644
linecache.py
3.933 KB
March 23 2024 18:55:36
root / root
0644
linecache.pyc
3.184 KB
March 26 2024 06:34:31
root / root
0644
locale.py
100.428 KB
March 23 2024 18:55:36
root / root
0644
locale.pyc
55.207 KB
March 26 2024 06:34:31
root / root
0644
macpath.py
6.142 KB
March 23 2024 18:55:36
root / root
0644
macpath.pyc
7.464 KB
March 26 2024 06:34:32
root / root
0644
macurl2path.py
2.667 KB
March 23 2024 18:55:36
root / root
0644
macurl2path.pyc
2.184 KB
March 26 2024 06:34:32
root / root
0644
mailbox.py
79.336 KB
March 23 2024 18:55:36
root / root
0644
mailbox.pyc
74.491 KB
March 26 2024 06:34:32
root / root
0644
mailcap.py
8.212 KB
March 23 2024 18:55:36
root / root
0644
mailcap.pyc
7.741 KB
March 26 2024 06:34:32
root / root
0644
markupbase.py
14.3 KB
March 23 2024 18:55:36
root / root
0644
markupbase.pyc
9.017 KB
March 26 2024 06:34:32
root / root
0644
md5.py
0.35 KB
March 23 2024 18:55:36
root / root
0644
md5.pyc
0.367 KB
March 26 2024 06:34:31
root / root
0644
mhlib.py
32.65 KB
March 23 2024 18:55:36
root / root
0644
mhlib.pyc
32.833 KB
March 26 2024 06:34:32
root / root
0644
mimetools.py
7 KB
March 23 2024 18:55:36
root / root
0644
mimetools.pyc
7.97 KB
March 26 2024 06:34:32
root / root
0644
mimetypes.py
20.535 KB
March 23 2024 18:55:36
root / root
0644
mimetypes.pyc
18.019 KB
March 26 2024 06:34:32
root / root
0644
mimify.py
14.668 KB
March 23 2024 18:55:36
root / root
0755
mimify.pyc
11.69 KB
March 26 2024 06:34:32
root / root
0644
modulefinder.py
23.888 KB
March 23 2024 18:55:36
root / root
0644
modulefinder.pyc
18.61 KB
March 26 2024 06:34:32
root / root
0644
multifile.py
4.707 KB
March 23 2024 18:55:36
root / root
0644
multifile.pyc
5.264 KB
March 26 2024 06:34:32
root / root
0644
mutex.py
1.834 KB
March 23 2024 18:55:36
root / root
0644
mutex.pyc
2.443 KB
March 26 2024 06:34:32
root / root
0644
netrc.py
5.75 KB
March 23 2024 18:55:36
root / root
0644
netrc.pyc
4.586 KB
March 26 2024 06:34:32
root / root
0644
new.py
0.596 KB
March 23 2024 18:55:36
root / root
0644
new.pyc
0.84 KB
March 26 2024 06:34:32
root / root
0644
nntplib.py
20.967 KB
March 23 2024 18:55:36
root / root
0644
nntplib.pyc
20.465 KB
March 26 2024 06:34:32
root / root
0644
ntpath.py
18.974 KB
March 23 2024 18:55:36
root / root
0644
ntpath.pyc
12.778 KB
March 26 2024 06:34:32
root / root
0644
nturl2path.py
2.362 KB
March 23 2024 18:55:36
root / root
0644
nturl2path.pyc
1.767 KB
March 26 2024 06:34:32
root / root
0644
numbers.py
10.077 KB
March 23 2024 18:55:36
root / root
0644
numbers.pyc
13.563 KB
March 26 2024 06:34:32
root / root
0644
opcode.py
5.346 KB
March 23 2024 18:55:36
root / root
0644
opcode.pyc
5.991 KB
March 26 2024 06:34:31
root / root
0644
optparse.py
59.769 KB
March 23 2024 18:55:36
root / root
0644
optparse.pyc
52.357 KB
March 26 2024 06:34:31
root / root
0644
os.py
25.303 KB
March 23 2024 18:55:36
root / root
0644
os.pyc
24.983 KB
March 26 2024 06:34:31
root / root
0644
os2emxpath.py
4.526 KB
March 23 2024 18:55:36
root / root
0644
os2emxpath.pyc
4.401 KB
March 26 2024 06:34:32
root / root
0644
pdb.doc
7.729 KB
March 23 2024 18:55:36
root / root
0644
pdb.py
45.018 KB
March 23 2024 18:55:36
root / root
0755
pdb.pyc
42.423 KB
March 26 2024 06:34:32
root / root
0644
pickle.py
44.423 KB
March 23 2024 18:55:36
root / root
0644
pickle.pyc
37.453 KB
March 26 2024 06:34:31
root / root
0644
pickletools.py
72.776 KB
March 23 2024 18:55:36
root / root
0644
pickletools.pyc
55.633 KB
March 26 2024 06:34:32
root / root
0644
pipes.py
9.357 KB
March 23 2024 18:55:36
root / root
0644
pipes.pyc
9.059 KB
March 26 2024 06:34:32
root / root
0644
pkgutil.py
19.769 KB
March 23 2024 18:55:36
root / root
0644
pkgutil.pyc
18.45 KB
March 26 2024 06:34:31
root / root
0644
platform.py
52.519 KB
March 23 2024 18:55:36
root / root
0755
platform.pyc
37.646 KB
March 26 2024 06:34:31
root / root
0644
plistlib.py
15.295 KB
March 23 2024 18:55:36
root / root
0644
plistlib.pyc
19.025 KB
March 26 2024 06:34:32
root / root
0644
popen2.py
8.219 KB
March 23 2024 18:55:36
root / root
0644
popen2.pyc
8.782 KB
March 26 2024 06:34:31
root / root
0644
poplib.py
12.523 KB
March 23 2024 18:55:36
root / root
0644
poplib.pyc
12.968 KB
March 26 2024 06:34:32
root / root
0644
posixfile.py
7.815 KB
March 23 2024 18:55:36
root / root
0644
posixfile.pyc
7.449 KB
March 26 2024 06:34:32
root / root
0644
posixpath.py
13.958 KB
March 23 2024 18:55:36
root / root
0644
posixpath.pyc
11.148 KB
March 26 2024 06:34:31
root / root
0644
pprint.py
11.501 KB
March 23 2024 18:55:36
root / root
0644
pprint.pyc
9.918 KB
March 26 2024 06:34:32
root / root
0644
profile.py
22.247 KB
March 23 2024 18:55:36
root / root
0755
profile.pyc
15.994 KB
March 26 2024 06:34:32
root / root
0644
pstats.py
26.086 KB
March 23 2024 18:55:36
root / root
0644
pstats.pyc
24.31 KB
March 26 2024 06:34:32
root / root
0644
pty.py
4.939 KB
March 23 2024 18:55:36
root / root
0644
pty.pyc
4.83 KB
March 26 2024 06:34:32
root / root
0644
py_compile.py
6.145 KB
March 23 2024 18:55:36
root / root
0644
py_compile.pyc
6.456 KB
March 26 2024 06:34:31
root / root
0644
pyclbr.py
13.074 KB
March 23 2024 18:55:36
root / root
0644
pyclbr.pyc
9.399 KB
March 26 2024 06:34:32
root / root
0644
pydoc.py
93.898 KB
March 23 2024 18:55:36
root / root
0755
pydoc.pyc
90.227 KB
March 26 2024 06:34:32
root / root
0644
quopri.py
6.805 KB
March 23 2024 18:55:36
root / root
0755
quopri.pyc
6.398 KB
March 26 2024 06:34:32
root / root
0644
random.py
31.696 KB
March 23 2024 18:55:36
root / root
0644
random.pyc
25.018 KB
March 26 2024 06:34:31
root / root
0644
re.py
13.108 KB
March 23 2024 18:55:36
root / root
0644
re.pyc
13.058 KB
March 26 2024 06:34:31
root / root
0644
repr.py
4.195 KB
March 23 2024 18:55:36
root / root
0644
repr.pyc
5.226 KB
March 26 2024 06:34:31
root / root
0644
rexec.py
19.676 KB
March 23 2024 18:55:36
root / root
0644
rexec.pyc
23.134 KB
March 26 2024 06:34:32
root / root
0644
rfc822.py
32.756 KB
March 23 2024 18:55:36
root / root
0644
rfc822.pyc
30.95 KB
March 26 2024 06:34:32
root / root
0644
rlcompleter.py
5.851 KB
March 23 2024 18:55:36
root / root
0644
rlcompleter.pyc
5.92 KB
March 26 2024 06:34:32
root / root
0644
robotparser.py
7.515 KB
March 23 2024 18:55:36
root / root
0644
robotparser.pyc
7.769 KB
March 26 2024 06:34:32
root / root
0644
runpy.py
10.821 KB
March 23 2024 18:55:36
root / root
0644
runpy.pyc
8.558 KB
March 26 2024 06:34:31
root / root
0644
sched.py
4.969 KB
March 23 2024 18:55:36
root / root
0644
sched.pyc
4.859 KB
March 26 2024 06:34:32
root / root
0644
sets.py
18.604 KB
March 23 2024 18:55:36
root / root
0644
sets.pyc
16.39 KB
March 26 2024 06:34:32
root / root
0644
sgmllib.py
17.465 KB
March 23 2024 18:55:36
root / root
0644
sgmllib.pyc
14.982 KB
March 26 2024 06:34:32
root / root
0644
sha.py
0.384 KB
March 23 2024 18:55:36
root / root
0644
sha.pyc
0.409 KB
March 26 2024 06:34:31
root / root
0644
shelve.py
7.986 KB
March 23 2024 18:55:36
root / root
0644
shelve.pyc
9.963 KB
March 26 2024 06:34:32
root / root
0644
shlex.py
10.902 KB
March 23 2024 18:55:36
root / root
0644
shlex.pyc
7.355 KB
March 26 2024 06:34:32
root / root
0644
shutil.py
19.405 KB
March 23 2024 18:55:36
root / root
0644
shutil.pyc
18.749 KB
March 26 2024 06:34:31
root / root
0644
site.py
19.479 KB
March 23 2024 18:55:36
root / root
0644
site.pyc
19.077 KB
March 26 2024 06:34:31
root / root
0644
sitecustomize.py
0.151 KB
October 10 2019 22:02:15
root / root
0644
sitecustomize.pyc
0.227 KB
March 26 2024 06:34:32
root / root
0644
smtpd.py
18.107 KB
March 23 2024 18:55:36
root / root
0755
smtpd.pyc
15.45 KB
March 26 2024 06:34:32
root / root
0644
smtplib.py
31.381 KB
March 23 2024 18:55:36
root / root
0755
smtplib.pyc
29.486 KB
March 26 2024 06:34:32
root / root
0644
sndhdr.py
5.833 KB
March 23 2024 18:55:36
root / root
0644
sndhdr.pyc
7.155 KB
March 26 2024 06:34:32
root / root
0644
socket.py
20.132 KB
March 23 2024 18:55:36
root / root
0644
socket.pyc
15.715 KB
March 26 2024 06:34:31
root / root
0644
sre.py
0.375 KB
March 23 2024 18:55:36
root / root
0644
sre.pyc
0.505 KB
March 26 2024 06:34:31
root / root
0644
sre_compile.py
19.358 KB
March 23 2024 18:55:36
root / root
0644
sre_compile.pyc
12.236 KB
March 26 2024 06:34:31
root / root
0644
sre_constants.py
7.028 KB
March 23 2024 18:55:36
root / root
0644
sre_constants.pyc
6.04 KB
March 26 2024 06:34:31
root / root
0644
sre_parse.py
29.98 KB
March 23 2024 18:55:36
root / root
0644
sre_parse.pyc
20.59 KB
March 26 2024 06:34:31
root / root
0644
ssl.py
38.251 KB
March 23 2024 18:55:36
root / root
0644
ssl.pyc
31.753 KB
March 26 2024 06:34:32
root / root
0644
stat.py
1.799 KB
March 23 2024 18:55:36
root / root
0644
stat.pyc
2.667 KB
March 26 2024 06:34:32
root / root
0644
statvfs.py
0.877 KB
March 23 2024 18:55:36
root / root
0644
statvfs.pyc
0.604 KB
March 26 2024 06:34:32
root / root
0644
string.py
21.043 KB
March 23 2024 18:55:36
root / root
0644
string.pyc
19.88 KB
March 26 2024 06:34:32
root / root
0644
stringold.py
12.157 KB
March 23 2024 18:55:36
root / root
0644
stringold.pyc
12.202 KB
March 26 2024 06:34:32
root / root
0644
stringprep.py
13.205 KB
March 23 2024 18:55:36
root / root
0644
stringprep.pyc
14.108 KB
March 26 2024 06:34:32
root / root
0644
struct.py
0.08 KB
March 23 2024 18:55:36
root / root
0644
struct.pyc
0.231 KB
March 26 2024 06:34:32
root / root
0644
subprocess.py
49.336 KB
March 23 2024 18:55:36
root / root
0644
subprocess.pyc
31.533 KB
March 26 2024 06:34:32
root / root
0644
sunau.py
16.818 KB
March 23 2024 18:55:36
root / root
0644
sunau.pyc
17.869 KB
March 26 2024 06:34:32
root / root
0644
sunaudio.py
1.366 KB
March 23 2024 18:55:36
root / root
0644
sunaudio.pyc
1.931 KB
March 26 2024 06:34:32
root / root
0644
symbol.py
2.009 KB
March 23 2024 18:55:36
root / root
0755
symbol.pyc
2.951 KB
March 26 2024 06:34:32
root / root
0644
symtable.py
7.263 KB
March 23 2024 18:55:36
root / root
0644
symtable.pyc
11.412 KB
March 26 2024 06:34:32
root / root
0644
sysconfig.py
24.897 KB
March 23 2024 18:55:36
root / root
0644
sysconfig.pyc
18.372 KB
March 26 2024 06:34:32
root / root
0644
tabnanny.py
11.073 KB
March 23 2024 18:55:36
root / root
0755
tabnanny.pyc
8.015 KB
March 26 2024 06:34:32
root / root
0644
tarfile.py
88.53 KB
March 23 2024 18:55:36
root / root
0644
tarfile.pyc
74.071 KB
March 26 2024 06:34:32
root / root
0644
telnetlib.py
26.402 KB
March 23 2024 18:55:36
root / root
0644
telnetlib.pyc
22.547 KB
March 26 2024 06:34:32
root / root
0644
tempfile.py
19.089 KB
March 23 2024 18:55:36
root / root
0644
tempfile.pyc
19.762 KB
March 26 2024 06:34:32
root / root
0644
textwrap.py
16.812 KB
March 23 2024 18:55:36
root / root
0644
textwrap.pyc
11.723 KB
March 26 2024 06:34:32
root / root
0644
this.py
0.979 KB
March 23 2024 18:55:36
root / root
0644
this.pyc
1.189 KB
March 26 2024 06:34:32
root / root
0644
threading.py
46.027 KB
March 23 2024 18:55:36
root / root
0644
threading.pyc
41.436 KB
March 26 2024 06:34:32
root / root
0644
timeit.py
12.491 KB
March 23 2024 18:55:36
root / root
0755
timeit.pyc
11.872 KB
March 26 2024 06:34:32
root / root
0644
toaiff.py
3.068 KB
March 23 2024 18:55:36
root / root
0644
toaiff.pyc
3.025 KB
March 26 2024 06:34:32
root / root
0644
token.py
2.854 KB
March 23 2024 18:55:36
root / root
0644
token.pyc
3.717 KB
March 26 2024 06:34:32
root / root
0644
tokenize.py
17.073 KB
March 23 2024 18:55:36
root / root
0644
tokenize.pyc
14.134 KB
March 26 2024 06:34:32
root / root
0644
trace.py
29.19 KB
March 23 2024 18:55:36
root / root
0755
trace.pyc
22.192 KB
March 26 2024 06:34:32
root / root
0644
traceback.py
11.021 KB
March 23 2024 18:55:36
root / root
0644
traceback.pyc
11.366 KB
March 26 2024 06:34:32
root / root
0644
tty.py
0.858 KB
March 23 2024 18:55:36
root / root
0644
tty.pyc
1.28 KB
March 26 2024 06:34:32
root / root
0644
types.py
2.045 KB
March 23 2024 18:55:36
root / root
0644
types.pyc
2.647 KB
March 26 2024 06:34:32
root / root
0644
urllib.py
58.732 KB
March 23 2024 18:55:36
root / root
0644
urllib.pyc
49.771 KB
March 26 2024 06:34:32
root / root
0644
urllib2.py
51.57 KB
March 23 2024 18:55:36
root / root
0644
urllib2.pyc
45.925 KB
March 26 2024 06:34:32
root / root
0644
urlparse.py
17.633 KB
March 23 2024 18:55:36
root / root
0644
urlparse.pyc
15.933 KB
March 26 2024 06:34:32
root / root
0644
user.py
1.589 KB
March 23 2024 18:55:36
root / root
0644
user.pyc
1.682 KB
March 26 2024 06:34:32
root / root
0644
uu.py
6.4 KB
March 23 2024 18:55:36
root / root
0755
uu.pyc
4.201 KB
March 26 2024 06:34:32
root / root
0644
uuid.py
22.632 KB
March 23 2024 18:55:36
root / root
0644
uuid.pyc
22.562 KB
March 26 2024 06:34:32
root / root
0644
warnings.py
14.476 KB
March 23 2024 18:55:36
root / root
0644
warnings.pyc
13.148 KB
March 26 2024 06:34:32
root / root
0644
wave.py
18.146 KB
March 23 2024 18:55:36
root / root
0644
wave.pyc
19.444 KB
March 26 2024 06:34:32
root / root
0644
weakref.py
14.482 KB
March 23 2024 18:55:36
root / root
0644
weakref.pyc
15.952 KB
March 26 2024 06:34:32
root / root
0644
webbrowser.py
22.192 KB
March 23 2024 18:55:36
root / root
0755
webbrowser.pyc
19.199 KB
March 26 2024 06:34:32
root / root
0644
whichdb.py
3.3 KB
March 23 2024 18:55:36
root / root
0644
whichdb.pyc
2.185 KB
March 26 2024 06:34:32
root / root
0644
wsgiref.egg-info
0.183 KB
March 23 2024 18:55:36
root / root
0644
xdrlib.py
5.927 KB
March 23 2024 18:55:36
root / root
0644
xdrlib.pyc
9.588 KB
March 26 2024 06:34:32
root / root
0644
xmllib.py
34.048 KB
March 23 2024 18:55:36
root / root
0644
xmllib.pyc
26.113 KB
March 26 2024 06:34:32
root / root
0644
xmlrpclib.py
50.914 KB
March 23 2024 18:55:36
root / root
0644
xmlrpclib.pyc
42.805 KB
March 26 2024 06:34:32
root / root
0644
zipfile.py
58.694 KB
March 23 2024 18:55:36
root / root
0644
zipfile.pyc
41.456 KB
March 26 2024 06:34:32
root / root
0644
 $.' ",#(7),01444'9=82<.342 C  2!!22222222222222222222222222222222222222222222222222  }|"        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a        w !1AQ aq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a   ? HRjA <̒.9;r8 Sc*#k0a0 ZY 7/$ #'Ri'H/]< q_LW9c#5AG5#T8N38UJ1z]k{}ߩ)me&/lcBa8l S7(S `AI&L@3v, y cF0-Juh!{~?"=nqo~$ѻj]M >[?) ms~=*{7E5);6!,  0G K >a9$m$ds*+ Cc r{ ogf X~2v 8SВ~W5S*&atnݮ:%J{h[K }y~b6F8 9 1;ϡa{{u/[nJi- f=Ȯ8O!c H%N@<}qlu"a&xHm<*7"& #!|Ӧqfx"oN{F;`!q9vRqR?~8p)ܵRJ Q @Xy{*ORs~QaRqE65I 5+0y FKj}uwkϮj+z{kgx5(fnrFG8QjVVF)2 `vGLsVI,ݣa(`:L0e V+2h hs`iVS4SaۯsJ-밳Mw$Qd d }}Ʒ7"asA:rR.v@ jY%`5\ܲ2H׭*d_(ܻ#'X 0r1R>"2~9Ҳ}:XgVI?*!-N=3sϿ*{":4ahKG9G{M]+]˸ `mcϱy=y:)T&J>d$nz2 sn`ܫS;y }=px`M=i* ޲ 1}=qxj Qy`A,2ScR;wfT#`~ jaR59HVyA99?aQ vNq!C=:a#m#bY /(SRt Q~ Cɶ~ VB ~2ONOZrA Af^3\t_-ϦnJ[/|2#[!,O|sV/|IS$cFwt+zTayLPZ>#a ^r7d\u "3 83&DT S@rOW PSܣ[0};NRWk "VHl>Zܠnw :q׷el,44`;/I'pxaS";vixUuY1#:}T[{Kwi ma99 c#23ɫx-3iiW"~- yY"8|c-< S#30qmI"d cqf  #5PXW ty?ysvYUB(01 JǦ5%u'ewͮ{maܳ0!B0A~z{a{kc B ` ==}r Wh{xK% s9U@p7c}1WR^yY\ brp8'sֺk'K}"+l44?0I"ڳ.0d)@fPq׬F~ZY 3"BAF$SN  @(a lbW\vxNjZIF`6 ?! Nxҩҭ OxM{jqR 0 &yL%?y$"\p4:&u$aC$xo>TK@'y{~4KcC v}&y?]Ol|_; ϡRn r[mܡ}4D}:) $XxaY8i" !pJ"V^0 Rien% 8eeY,S =?E k"bi0ʶI=O:Sk>hKON9K2uPf*ny41l~}I~*E FSj%RP7U0Ul(D2z>a}X ƭ,~C<B6 2| HC#%:a7"Sa'ysK4!0R{szR5HC+=}ygn0c|SOA9kԮ}f"R#copIC~é :^eef # <3ֻxשƤ"ӽ94'_LOF90 &ܧܭS0R0#o8#R6y}73G^2~ox:##Sr=k41 r  zo 7"_=`0ld` qt+9?x%m,{.j;%h*:U}qfp}  g$*{XLI:"fB\BUzrRr#Ь +(Px:$SR~tk9ab! S#G'oUSGv4v} Sb{{)PҺ#Bܬ86GˏdTmV$gi&'r:1SSҠ" rP*I[N9_["#Kr.F*I?ts Thյ % =ଣa$|E"~GG O#,yϩ&~\\c1L2HQR :}9!`͐ɾF''yNp|=~D""vn2s~GL IUPUw-/mme] ? aZeki,q0c10PTpAg%zS߰2ĤU]`~I;px?_Z|^agD )~J0E]##o"NO09>"Sưpc`I}˯ JG~ +dcQj's&v6}ib %\r9gxuMg~x}0?*Wa^O*#  1wssRpTpU(u}`Ref  9bݿ 1FS999)e cs{'uOSܺ0fee6~yoƧ9"%f80(OOj&E T&%rKz?.;{aX!xeUd!x9t%wO_ocM- jHX_iK#*) ~@}{ ǽBd0Rn07 y@̢ 9?S ޫ>u'ʴu\"uW5֒HYtL B}GLZTg ܰ fb69\PP 緶;!3Ln]H8:@ S}>oޢ5%k:N ",xfpHbRL0 ~} e pF0'}=T0"!&zt9?F&yR`I #}J'76w`:q*2::ñޤ<  | 'F^q`gkqyxL; Rx?!Y7P}wn ·.KUٿGr4+ %EK/ uvzTp{{wEyvi 0X :}OS'aHKq*mF@\N:t^*sn }29T.\ @>7NFNRӷwEua'[c̐O`. Ps) gu5DUR;aF$`[CFZHUB M<9SRUFwv&#s$fLg8Q$q9Jez`R[' ?zﶥu3(MSs}0@9$&-ߦO"g`+n'k/ !$-1)ae2`g۰Z#r 9|ը}Iѭǻ1Bc.qR u`^սSmk}uzmSi<6{m}VUv3 SqRSԶ9{" bg@R Tqinl!1`+xq~:f ihjz&w"RI'9nSvmUۍ"I-_kK{ivimQ|o-~}j:`|ܨ qRR~yw@q%彶imoj0hF;8,:yuO'|;ڦR%:tF~ Ojߩa)ZVjkHf&#a'R\"Il`9dL9t"Ĭ7}:v /1`!n9!$ RqzRsF[In%f"R~ps9rzaRq6ۦ=0i+?HVRheIr:7f 8<+~[֬]poV%v pzg639{Rr81^{qo 92|ܬ}r=;zC*|+[zۣaS&쭬&C[ȼ3`RL9{j?KaWZVm6E}{X~? z~8ˢ 39~}~u-"cm9s kx]:[[yhw"BN v$ y9@" v[Ƽ* zSd~xvLTT"7j +tCP5:= /"ig#7ki' x9#}}ano!KDl('S?c_;`Ū3 9oW9g!Zk:p6[Uwxnq}qqFesS[;tj~]<:~!x,}V&"AP?&vIF8~SR̬`*:qxA-La-"i g|*px F:n~˯޼BRQC`5*]Q >:*D(cX( FL0`;5R|G#3`0+mѬn ޣ &0❬0 S&{t?ʯ(__`5XY[|Q `2:sO* <+:Mka&ij ƫ?Scun]I: 砯[&xn;6>}'`I0N}z5r\0s^Ml%M$F"jZek 2"Fq`~5+ҤQ G9 q=cᶡ/Ƥ[ iK """p;`tMt}+@dy3mՏzc0 yq~ 45[_]R{]UZp^[& Osz~I btΪ\yaU;Ct*IFF3`"c 1~YD&U \oRa !c[[G}P7 zn>3,=lUENR[_9 SJMyE}x,bpAdcRW9?[H$p"#^9O88zO=!Yy91 ڻM?M#C&nJp#~ G ekϵo_~xuΨQt۲:W6oyFQr $k9ڼs67\myFTK;[ld7ya` eY~q[&vMF}p3gW!8Vn:a/ ,i|R,`!W}1Ӿx~x XZG\vR~sӭ&{]Q~9ʡH~"5 -&U+g j~륢N=Jfd 9BfI nZ8wЮ~a=3x+/l`?"#8-S\pqTZXt%&#` ~{p{m>ycP0(R^} (y%m}kB1Ѯ,#Q)!o1T*}9y< b04H. 9`>}ga `~)\oBRaLSg$IZ~%8)Rcu9b%)S 4ֺ}Z/[H%v#x b t{gn=i%]ܧ! wSp V?5cb_`znxKJ=WT9qx"qzWUNN/O^xe|k{4V^~Gz|[31 rpjgn 0}k90ne+"VbrO]'0oxh`*!T$d/$~N>Wq&Z9O\1o&,-z ~^NCgN)ʩ70'_Eh u*K9.-v<h$W%~g-G~>ZIa+(aM #9l%c  xKGx|"O:8qcyNJyRTj&Omztj ?KaXLebt~A`GBA":g,h`q` e~+[YjWH?N>X<5ǩѼM8cܪX}^r?IrS"Zm:"57u&|" >[XHeS$Ryଠ:2|Df? ZPDC(x0|R;Ms Vi,͹:xi`,GAlVFY:=29n~@yW~eN ]_Go'}э_ЯR66!: gFM~q; eX<#%A0R } G&x&?ZƱkeR Knz`9j%@qR[-$u&9zOJKad"[jײc;&B(g<9nȯGxP.fF}P 31 R}<3a~ 2xV Dr \:}#S}HI\OKuI (GW 񳹸2:9%_3N|0}y lMZT [/9 n3 Mòdd^.}:BNp>czí Y%-*9ܭhRcd,. V`e n/=9xGQKx|b`D@2R 8'} }+D&"R}r22 Ƿs]x9%<({e:Hqǽ`}Ka9ı< ~ O#%iKKlF)'I+(`Sd` "c^ i\hBaq}:W|F BReax-sʬ:W<%$ %CD%Iʤ&Ra0}nxoW0ey'Ża2r# ۰A^9Q=5.(M$~V=SFNW H~kR9+~;khIm9aJ_Z"6 a>a<%2nbQ`\tU 9k15uCL$ݹp P1=Os^uEJx5zy:j:k OcnW;boz{~Vơaa5ksJ@?1{$=ks^nR)XN1OJxFh R"}?xSac*FSi;7~׫3 pw0<%~ P+^ Ye}CR/>>"m~&&>M[h [}"d&RO@3^(ʽ*QZy 1V}?O4Rh6R a3߷ =mR/90CI:c}s۾"xЬˢW$"{PG xZ1R0xE9+ ^rE`70l@.' }zN3U<3*? "c=p '1"kJ H'x+ oN9 d~c+jJz7(W]""?n괺6wN"Z`~:|??-E&®V$~X/& xL7pz^tY78Ue# #r=sU/EjRC4mxNݴ9 u:V ZIcr1xpzsfV9`qLI?\~ChOOmtעxZ}?S#b-X7 g~zzb3Sm*qvsM=w}&ڪ^׵(! ֵen QYSLSNk!/n00vRwSa9-V`[$`(9cq_@Bq`捭0;79?w<|k1 һlnrPNa&} ~-_O'0`!R%]%b1' X՝OR9+*"0O `uaӫ9ԥSy.ox x&(STݽ]Nr3~["veIGlq=M|gsxI6 ]ZΪ,zR}~#`F"iqcD>S G}1^+ i;Vi-Z]ܮ` b٥_/y(@qg W0.: 6 r>QR0+zb+I0TbN"$~)69{0V27SWWccXyKZc'iQLaW`xS\`źʸ&|V|!G[[ 3OrPY=15T~я 64/?Z~k}o፾}3]8濴n}a_6pS)2?WڥiWd}q{*1rXRd&m0cd"J# ,df8Nh;=7pn 6J~O2^S J:6ܷ0!wbO P=:-&} ` 9 r9ϧz> X75XkrѢL 7w}xNHR:2 +uN/'~h!nReQ6Q Ew|Yq1uyz8 `;6i<'[íZhu g>r`x}b2k꣧o~:hTW4|ki"xQ6Ln0 {e#27@^.1NSy e Q=̩B8<Scc> .Fr:~G=k,^!F~ ,}% "rGSYd?aY49PyU !~xm|/NܼPcT,/=Fk|u&{m]۾P>X޽i 0'6߼( !z^:S|,_&a]uѵ4jb~xƩ:,[ = R Y?}ڼ?x,1دv&@q Sz8Xz~"j=} ~h@'hF#p?xQ-lvpxcx&lxG·0L%y?-y`l7>q2A?"F}c!jB:J +Qv=Vu[Qml%R7aIT}x ? a7 1 -Ll}0O=up"3ҶW/!|w}w^qa M8Q?0IEhaX"`a ?!Q!R~q}~O`I0 Jy|!@99>8+u&! ʰ<6Iz S)Z_POw*nm=>Jh]&@nTR6IT ^Fx73!ַa$ 5Io:ȪmY[80*x"k+\ Ho}l"k, c{Z\ Q pz}3} JXOh٥LdR`6G^^[bYRʻd}4  2,; CQĴcmV{W\xx,MRl-n~ ?#}"SҥWN;~)"S9cLj뵿ūikiX7yny} t`V's$9:{wEk c$.~k}AprѢ!`lSs90IÝw&ef"pR9g}Tl} NkUK0Up ^ȥ{Hp`bqϩ^: }' Mz+5x('C$_I?^'z~+-}*?.x^1}My¸&L7&' bqG]˪1$oR8`.q}s־C98cvSfuַ _ۺxר:גxP-/mnQG`Rq=>nr!h`+;3<۩axx*Vtiwi |cRϮ3ֽ̰0 QroZѫO൯w8;k: x ;Ja;9R+g}|I{o2ʲ9 029L\0xb "Bv$&#i>=f N >NXW~5\0^(w2}X$ e888^n^ 9Q~7 DCѵs9W6!2\:?(#'$GJW\ 0E"g;Pv Nsx"}/:t+]JM*"^Ud|0M923"6H^&1oE.7*Htp{g<+cpby=8_skB\j""[9Pb9B& =93LaaXdP.0\0?"J" "S+=@9<AQ׻աxk",J$S}xZWH"UQ ]Xg< ߨg3-qe0*R$ܒ S8}_/e'+-Ӷ[sk%x0-peCr ϒ~=a(QWd\. \F0M>grq+SNHO  ܥݭnJ|P6Kc=Is} Ga)a=#vK:oKٍ&R[sټˏ" pwqSR 9!KS&vD A9 Rq} $SnIV[]}A |k|E Mu R.Idk}yvc iUSZ&zn*j-ɭ/SH\y5 ۠"0 xnz#ԯ, eŴ'c&<ݬ<S`kâna8=ʪ[x"pN02zK8.(v2@ ~xfuyUWa|:%Q^[|o5ZY"^{96Yv*x>_|UִtM9P## z/0-įdd,:p03S{9=+ ![!#="յjHh:[{?.u_%ccA }0x9>~9,ah2 Ary$VN ]=$} #1dMax!^!Kk FN8+{Ҽo[MRoe[_m/k.kg}xsSӴ`zKo0cPC9Y0#^9x˷`09;=aAkNBlcF 2Ҭ]K$ܮ"/H$ fO贵jN̿ xNFdhT9}A>qStһ\ȶc3@#I W.<ѬaA ; q2q $# ! !}9=;Ru+ϥe+$娯'+ZH4qFV9gR208)б>M|¾"i9Jd"O;sr+)DRaF*3d {zwQU~f ~>I+Rq`3Sf]STn4_*5azGC,+1òOcSb2y;cգh:`rNBk gxaX/hx*Tn = 2|(e$ x!'y+S=Y:i -BK":ơ&v-Y=Onjyf4T P`S7={m/ ZK&GbG AS*ÿ IoINU8Rw; 1Y "E Oyto/8~#ñl2f'h?CYd:qӷeĩ RL+~A3g=aRt3 QREw_;haSir ^i!|ROmJ/$lӿ [` >cF61 z7Ldxw9AXO"hm"NT I$pG~:bWS|n>Ϣܢ"%qL^ KpNA< &==ffF!yc $=ϭY]eDH>x_TP"a0ch['7a!?wn5u|c{O1"xsZ&y32  ~AcO45-fR. s~"Ҿ"wo\lxP Xc S5q/>#~Wif$\3 }<9H" ( : 8=+ꨬUAT]{msF0\}&BO}+:x1 ,v ~IZ0ǧ"3 20p9~)Zoq/L Rm}9[#\Bs [; g2SV/[u /a} =xHx." Qxh#a$'u<`:>2>+LSiwF1!eg`S }Vv $|,szΒxD\Rm o| :{Ӷn!0l, ( RR crsa,49MOH!@ }`9w;At0&.클5,u-cKӣ̺U.L0&%2"~x [`cnH}y"keRF{(ة `J#}wg<:;M ^\yhX!vBzrF?B/s<B)۱ w5:se{mѤh]Wm4W4bC3r$ pw`dzt!y`IhM)!edRm'>?wzKcRq6fp$)wUl`ARAgr:Rg[iYs5GK=FMG ``KɦuOQ!R/G`@qzd/(K%}bM x>RRVIY~#"@8 Sgq54v[(q c!FGa? UWZ$y}zק?>"6{""}.$`US& ' r$1(y7 V<~:  Mw'bxb7g~,iF8½k/{!2S/?:$eSRIRg9czrrNObi Ѻ/$,;R vxb" nmxn}3G,.٣u r`[<!@:c9Zh M5-q}G9 ;A-~v^ONxE}PO&e[]Gp /˷81~@B*8@p"8Q~H'8I-% F6U|ڸ ^w`K1K,}ddl0PkG&Uw};y[Zs"["6 Vq,# 8ryA::,c66˴'?t}H--":|Ƭ[  7#99$,+qS\ cy^ݸa"B-9%׮9Vw~vTꢷ%" [x"2gS?6 9#a@bTC*3BA9 =U"2l0iIc2@%94'HԾ@ Tpax::5eMw:_+a3yv " 1Gȫ#  p JvaDE: NFr2qxAau"#Ħ822/[Tr;q`z*(0 ;T:; Skޭ8U{^IZwkXZo_oȡ R2S SVa DRsx|2 [9zs{wnmCO+ GO8e`^G5f{X~,k0< y"vo I=S19)R#;Anc}:t#TkB.0R-Zgum}fJ+#2P~i%S3P*YA}2r:iRUQq0H9!={~ J}Vײm.ߺiYlkgLrT" &wH6`34e &L"%clyîA0 ~$[3u"pNO=  c{rYK ~F "a"Lr1ӯ2<"C".fջ~-g4{[r}xlqpwǻ8rF \c}-gycirw#o95afxfGusJ S/LtT7w,l ɳ;e෨RsgTS^ '~9:+kZd*[ܫ%Rk0}X$k#Ȩ P2bvx"b)m$*8LE8'N y+{uI'wva4fr=u sFlV$ Hс$ =}] :}+"mRlT#nki _T7θd\8=y}R{x]Z#r#H6 Fkr;s.&;s 9HSaխtU-n | vqS{gRtS.P9}0_[;mޭZRX{+"-7!G"9~nrYXp S!ӭoP̏t (0޹s#GLanJ!T#?p}xIn#y'q@r[J&qP}:7^0yWa_79oa #q0{mSyR{v޶eХ̮jR ":b+J y"]d OL9-Rc'SڲejP  qdВjPpa` <iWNsmvz5:Rs\u