ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+//.383,7(-.+



-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
..............................................................................................................................................................................
.............................................................................                                                  
                                                                                                                                                                                     ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+//.383,7(-.+



-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
..............................................................................................................................................................................
.............................................................................                                                  
                                                                                                                                                                                     
f3  c            "   @   sn  d  Z  d d l Z d d l Z d d l Td d l m Z m Z m Z m Z m	 Z	 m
 Z
 m Z d d d d d	 d
 d d d d d d d d d d d d d d d d d d d d d d  d! d" d# d$ d% d& g" Z d' Z d( Z d' Z d) Z d* Z d+ Z d, Z d- Z d. d   Z d/ d   Z d0 d   Z d1 d   Z d2 d   Z e Z d3 d   Z d4 d   Z d5 d   Z e Z d6 Z! d S(7   u   Common pathname manipulations, OS/2 EMX version.

Instead of importing this module directly, import os and refer to this
module as os.path.
i    N(   u   *(   u
   expanduseru
   expandvarsu   isabsu   islinku
   splitdriveu   splitextu   splitu   normcaseu   isabsu   joinu
   splitdriveu   splitu   splitextu   basenameu   dirnameu   commonprefixu   getsizeu   getmtimeu   getatimeu   getctimeu   islinku   existsu   lexistsu   isdiru   isfileu   ismountu
   expanduseru
   expandvarsu   normpathu   abspathu   splituncu   curdiru   pardiru   sepu   pathsepu   defpathu   altsepu   extsepu   devnullu   realpathu   supports_unicode_filenamesu   .u   ..u   /u   \u   ;u   .;C:\binu   nulc             C   sI   t  |  t t f  s3 t d j |  j j    n  |  j d d  j   S(   uZ   Normalize case of pathname.

    Makes all characters lowercase and all altseps into seps.u2   normcase() argument must be str or bytes, not '{}'u   \u   /(	   u
   isinstanceu   bytesu   stru	   TypeErroru   formatu	   __class__u   __name__u   replaceu   lower(   u   s(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   normcase#   s    	c             G   sm   |  } x` | D]X } t  |  r( | } q | d k sJ | d d  d k rW | | } q | d | } q W| S(   u=   Join two or more pathname components, inserting sep as neededu    i   Nu   /\:u   /i(   u   isabs(   u   au   pu   pathu   b(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   join/   s    	"c             C   s   |  d d  d k r  d |  f S|  d d  } | d	 k sH | d
 k r t  |   } | j d d  } | d k r| d |  f S| j d | d  } | d k r t |   } n  |  d |  |  | d  f Sd |  f S(   u@  Split a pathname into UNC mount point and relative path specifiers.

    Return a 2-tuple (unc, rest); either part may be empty.
    If unc is not empty, it has the form '//host/mount' (or similar
    using backslashes).  unc+rest is always the input path.
    Paths containing drive letters never have an UNC part.
    i   i   u   :u    i    u   /u   \Nu   //u   \\ii(   u   normcaseu   findu   len(   u   pu   firstTwou   normpu   index(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   splitunc=   s    

c             C   s   t  |   d S(   u)   Returns the final component of a pathnamei   (   u   split(   u   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   basename[   s    c             C   s   t  |   d S(   u-   Returns the directory component of a pathnamei    (   u   split(   u   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   dirnameb   s    c             C   sR   t  |   \ } } | r" | d k St |   d } t |  d k oQ | d d k S(   u?   Test whether a path is a mount point (defined as root of drive)u    u   /u   \i   i    u   /\(   u    u   /u   \(   u   splituncu
   splitdriveu   len(   u   pathu   uncu   restu   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   ismountp   s
    
c             C   sh  |  j  d d  }  t |   \ } }  x4 |  d d  d k rZ | d } |  d d  }  q' W|  j d  } d } x | t |  k  r8| | d k r | | =qs | | d k r | d k r | | d d	 k r | | d | d  =| d } qs | | d k r+| d k r+| | d d k r+| | =qs | d } qs W| rW| rW| j d  n  | d j |  S(
   u0   Normalize path, eliminating double slashes, etc.u   \u   /Ni   i    u   .u   ..u    (   u    u   ..(   u   replaceu
   splitdriveu   splitu   lenu   appendu   join(   u   pathu   prefixu   compsu   i(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   normpath{   s&    

00
c             C   s.   t  |   s$ t t j   |   }  n  t |   S(   u%   Return the absolute version of a path(   u   isabsu   joinu   osu   getcwdu   normpath(   u   path(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   abspath   s    F("   u   __doc__u   osu   statu   genericpathu   ntpathu
   expanduseru
   expandvarsu   isabsu   islinku
   splitdriveu   splitextu   splitu   __all__u   curdiru   pardiru   extsepu   sepu   altsepu   pathsepu   defpathu   devnullu   normcaseu   joinu   splituncu   basenameu   dirnameu   existsu   lexistsu   ismountu   normpathu   abspathu   realpathu   Falseu   supports_unicode_filenames(    (    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   <module>   s:   
4