#----------------------------------------------------------------------
# This file was generated by /usr/local/bin/img2py
#
from wx import ImageFromStream,BitmapFromImage
import cStringIO, zlib
def getData():
return zlib.decompress(
'x\xda\x01C\x02\xbc\xfd\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00 \x00\
\x00\x00 \x08\x06\x00\x00\x00szz\xf4\x00\x00\x00\x04sBIT\x08\x08\x08\x08|\
\x08d\x88\x00\x00\x01\xfaIDATx\x9c\xed\x96Ok\x13A\x18\xc6\x7f\xd3J\t\x9e\xf6\
$\xb4`\x10\x12\x92z\xf0\x03\x08\n"\x12\xc4\xa3\xe0\xc5/ TP\x84\x80 \x04\x02=\
)\x95 \xfei\x11\xf1\x10\x0f\x05\x91\x1a*X,z)\xa2"R\xc1\xfe\xb1\xa5\xd6\xb6n"\
\xc1lq\xd6\xdd\xd5M\xa1\x19\x0f!\xab\xcd6e\x83\x95\xa2\xecs\x9a}\xe7\xdd\xf7\
\xf9\xed;3\xec\x08M\xd3\xd8Iu\xec\xa8{\x08\x10\x02\x84\x00!\xc0\x9f\x00H)\
\x95\x94R5\x8f\xff:@\xc3l\xe8\xfae\xb2\x994RJ\xf5bb\xdc\x1b\xb7\x0b\xd2\x16@\
<\xb6W\x8d=\xba\xcf\xf3\x89g\x9c<u\xfaW<\xb1\x1f\x80;\x83Wy\xfad\x94D<\x16\
\x18"0\x80\x94R\x8d\x8c\x148x\xe8(\x9fK\xfa\x86\xb9\xae\xae\x08\x00{\xba\xa3\
\x1c>\x92"\x97\xbb\x82R\xeb\x81 vmf\xb4Yb6\x93\x0e\xca\n\xc0\x85sg\xc8\xf6\
\x0f\xf8ji\x9a&\xb6\x04\xf8R\xd6\x9bC\x9e"\x91\xddT\xd7\xaa,\x7f\\\xa0\xe3\
\xd8q/^\xab\xd5}V\x8d2kU\x97X<I4\xba\x8f\xbe\xb3\xe7}5\x12\xbd\x076<\xfb\x00\
n\xdd\xbc\xe6{\xc9u\x7f\x00\x90J\x9d\xc0\xf9\xee`Y\x16\x8emyq\xbd\xf8\t\x00\
\xfb\x9b\xc9\xcc\xd4[\x96\x16\xe7\x99_\xf8\xd0\xf2C\xb6\x04\xc8\xf6\x0f\xf8\
\x92\x84\x10\\L\xf719\xf9\x86\x9e\xee\x1e\x1c\xc7a\xb5R\xf6\xe6g\xa7\xdf\x01\
P1\x0c\xe6\xe6fXY^\xc2\xa8T\xb81\x94\xf7\xd5j\xbe\x00\xf9\x00\x9a\xd7\xa8\
\xa1\xc1\xdby\x95\xb9\x14|\x1f\xdc\x1b~\xd8\xb2\xd6\xefj\xeb\x18\x16\n\xa3\
\x94J:5\xa5\xd0\xf5\x15l\xcb\x02@~5\x00(\x16\x8b\xbc~\xf5\x92\xc7c\xe3\x98\
\xa6\x15\xa8\xa6\xaf\x03\xad$D\xa7\x98~\xbf\xc8\xd4lN\x01\xf4&\x93\xb8\xae\
\x0b\x80m\xd7\xcd\xee\xe6\x1f\x00\xf5.\x06\xbdk\x06NlV\xe3\x9c\x0b\xd1)\x94Z\
W\xa6i\x05j\xf9\xb6\x01l\x97\xfe\xdd\xbfa\x08\x10\x02\x84\x00\xff\r\xc0O]a\
\xd629\x0f\xbdZ\x00\x00\x00\x00IEND\xaeB`\x82\x89\xdd\x02S' )
def getBitmap():
return BitmapFromImage(getImage())
def getImage():
stream = cStringIO.StringIO(getData())
return ImageFromStream(stream)
|