\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7<F<2PFAFZUP_xxnnx\F5\AF\B9\91\C8\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\DB\00CUZZxix‚\EB\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\FF\C0\00\00b\00d\00\FF\C4\00\00\00\00\00\00\00\00\00\00\00\00\00\00\FF\C4\00\00\00\00\00\00\00\00\00\00\001A!Q\FF\C4\00\00\00\00\00\00\00\00\00\00\00\00\00\FF\C4\00\00\00\00\00\00\00\00\00\00!1AQ\FF\DA\00\00\00?\00\F6\00\00\00\00\00\00\00\00\00\00\A0\00\00\C5\CF\F8\E7Ó\FCjD~\B9^\AD\%\B3]\D8cs-\BBs,-\A0\00"\80\00%\B83rÏ^K~F\A4ea\00E\00\C6\EE=u\B1\9B\D1\00@\00r\BE8\F9:\FE5#.M\00\E7\CB\C9q\CBq\D6\F2\BE\B7\C7>\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7	\8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh
\00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€
\00$\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95
59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>C///</title>
</head>
ó
g¨wUc           @   s•   d  d l  Z  d  d l m Z d e f d „  ƒ  YZ d e f d „  ƒ  YZ d Z d Z e d	 k r‘ d  d l	 Z	 e d
 ƒ Z
 e
 j e d d ƒ ƒ n  d S(   iÿÿÿÿN(   t   Templatet   ASTCodeGeneratorc           B   s)   e  Z d  d „ Z d d „ Z d „  Z RS(   s
   _c_ast.cfgc         C   sA   | |  _  g  |  j | ƒ D] \ } } t | | ƒ ^ q |  _ d S(   sN    Initialize the code generator from a configuration
            file.
        N(   t   cfg_filenamet   parse_cfgfilet   NodeCfgt   node_cfg(   t   selfR   t   namet   contents(    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyt   __init__   s    	c         C   s^   t  t ƒ j d |  j ƒ } | t 7} x% |  j D] } | | j ƒ  d 7} q/ W| j | ƒ d S(   s<    Generates the code into file, an open file buffer.
        R   s   

N(   R    t   _PROLOGUE_COMMENTt
   substituteR   t   _PROLOGUE_CODER   t   generate_sourcet   write(   R   t   filet   srcR   (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyt   generate   s    
c         c   s  t  | d ƒ } xú | D]ò } | j ƒ  } | s | j d ƒ rG q n  | j d ƒ } | j d ƒ } | j d ƒ } | d k  s˜ | | k s˜ | | k r± t d | | f ƒ ‚ n  | |  } | | d | !} | rú g  | j d ƒ D] }	 |	 j ƒ  ^ qâ n g  }
 | |
 f Vq WWd	 QXd	 S(
   se    Parse the configuration file and yield pairs of
            (name, contents) for each node.
        t   rt   #t   :t   [t   ]i   s   Invalid line in %s:
%s
t   ,N(   t   opent   stript
   startswitht   findt   RuntimeErrort   split(   R   t   filenamet   ft   linet   colon_it
   lbracket_it
   rbracket_iR   t   valt   vt   vallist(    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR   &   s    $
4N(   t   __name__t
   __module__R	   t   NoneR   R   (    (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR      s   R   c           B   s;   e  Z d  Z d „  Z d „  Z d „  Z d „  Z d „  Z RS(   sº    Node configuration.

        name: node name
        contents: a list of contents - attributes and child nodes
        See comment at the top of the configuration file for details.
    c         C   sµ   | |  _  g  |  _ g  |  _ g  |  _ g  |  _ x | D]y } | j d ƒ } |  j j | ƒ | j d ƒ r{ |  j j | ƒ q4 | j d ƒ r |  j j | ƒ q4 |  j j | ƒ q4 Wd  S(   Nt   *s   **(   R   t   all_entriest   attrt   childt	   seq_childt   rstript   appendt   endswith(   R   R   R   t   entryt   clean_entry(    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR	   B   s    					c         C   s8   |  j  ƒ  } | d |  j ƒ  7} | d |  j ƒ  7} | S(   Ns   
(   t	   _gen_initt   _gen_childrent   _gen_attr_names(   R   R   (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR   T   s    c         C   s¶   d |  j  } |  j r[ d j |  j ƒ } d j d „  |  j Dƒ ƒ } | d 7} d | } n d } d } | d | 7} | d	 | 7} x, |  j d
 g D] } | d | | f 7} q” W| S(   Ns   class %s(Node):
s   , c         s   s   |  ] } d  j  | ƒ Vq d S(   s   '{0}'N(   t   format(   t   .0t   e(    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pys	   <genexpr>_   s    s   , 'coord', '__weakref__'s   (self, %s, coord=None)s   'coord', '__weakref__'s   (self, coord=None)s       __slots__ = (%s)
s       def __init__%s:
t   coords           self.%s = %s
(   R   R+   t   join(   R   R   t   argst   slotst   arglistR   (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR4   Z   s    	
c         C   sŽ   d } |  j  r€ | d 7} x, |  j D]! } | d d t d | ƒ 7} q# Wx( |  j D] } | d t d | ƒ 7} qR W| d 7} n
 | d 7} | S(	   Ns       def children(self):
s           nodelist = []
s&           if self.%(child)s is not None:s0    nodelist.append(("%(child)s", self.%(child)s))
R-   su           for i, child in enumerate(self.%(child)s or []):
            nodelist.append(("%(child)s[%%d]" %% i, child))
s           return tuple(nodelist)
s           return ()
(   R+   R-   t   dictR.   (   R   R   R-   R.   (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR5   n   s    	

c         C   s(   d d j  d „  |  j Dƒ ƒ d } | S(   Ns       attr_names = (t    c         s   s   |  ] } d  | Vq d S(   s   %r, N(    (   R8   t   nm(    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pys	   <genexpr>‡   s    t   )(   R;   R,   (   R   R   (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR6   †   s    $(   R'   R(   t   __doc__R	   R   R4   R5   R6   (    (    (    s6   /usr/lib/python2.7/site-packages/pycparser/_ast_gen.pyR   ;   s   				s¶  #-----------------------------------------------------------------
# ** ATTENTION **
# This code was automatically generated from the file:
# $cfg_filename
#
# Do not modify it directly. Modify the configuration file and
# run the generator again.
# ** ** *** ** **
#
# pycparser: c_ast.py
#
# AST Node classes.
#
# Copyright (C) 2008-2015, Eli Bendersky
# License: BSD
#-----------------------------------------------------------------

s×  
import sys


class Node(object):
    __slots__ = ()
    """ Abstract base class for AST nodes.
    """
    def children(self):
        """ A sequence of all children that are Nodes
        """
        pass

    def show(self, buf=sys.stdout, offset=0, attrnames=False, nodenames=False, showcoord=False, _my_node_name=None):
        """ Pretty print the Node and all its attributes and
            children (recursively) to a buffer.

            buf:
                Open IO buffer into which the Node is printed.

            offset:
                Initial offset (amount of leading spaces)

            attrnames:
                True if you want to see the attribute names in
                name=value pairs. False to only see the values.

            nodenames:
                True if you want to see the actual node names
                within their parents.

            showcoord:
                Do you want the coordinates of each Node to be
                displayed.
        """
        lead = ' ' * offset
        if nodenames and _my_node_name is not None:
            buf.write(lead + self.__class__.__name__+ ' <' + _my_node_name + '>: ')
        else:
            buf.write(lead + self.__class__.__name__+ ': ')

        if self.attr_names:
            if attrnames:
                nvlist = [(n, getattr(self,n)) for n in self.attr_names]
                attrstr = ', '.join('%s=%s' % nv for nv in nvlist)
            else:
                vlist = [getattr(self, n) for n in self.attr_names]
                attrstr = ', '.join('%s' % v for v in vlist)
            buf.write(attrstr)

        if showcoord:
            buf.write(' (at %s)' % self.coord)
        buf.write('\n')

        for (child_name, child) in self.children():
            child.show(
                buf,
                offset=offset + 2,
                attrnames=attrnames,
                nodenames=nodenames,
                showcoord=showcoord,
                _my_node_name=child_name)


class NodeVisitor(object):
    """ A base NodeVisitor c