Flush prograss with initial commit. default tip

Wed, 31 Jul 2013 19:28:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Jul 2013 19:28:00 +0200
changeset 0
7ff85f7ce3a7

Flush prograss with initial commit.

.hgignore file | annotate | diff | comparison | revisions
amalog.mkb file | annotate | diff | comparison | revisions
docs/Changelog.txt file | annotate | diff | comparison | revisions
graphics/amaicon.xcf file | annotate | diff | comparison | revisions
graphics/bappworld_1186.png file | annotate | diff | comparison | revisions
graphics/bappworld_prod.xcf file | annotate | diff | comparison | revisions
graphics/buttcanc.png file | annotate | diff | comparison | revisions
graphics/buttdel2.png file | annotate | diff | comparison | revisions
graphics/buttforw.png file | annotate | diff | comparison | revisions
graphics/buttno.png file | annotate | diff | comparison | revisions
graphics/buttyes.png file | annotate | diff | comparison | revisions
graphics/iconosalle.svg file | annotate | diff | comparison | revisions
graphics/shot1-768.png file | annotate | diff | comparison | revisions
graphics/shot1-768.svg file | annotate | diff | comparison | revisions
graphics/shot1-768.xcf file | annotate | diff | comparison | revisions
graphics/splashtest.png file | annotate | diff | comparison | revisions
resources/app.icf file | annotate | diff | comparison | revisions
resources/common.icf file | annotate | diff | comparison | revisions
resources/development.icf file | annotate | diff | comparison | revisions
resources/fonts/Arial-96pt_bold.fnt file | annotate | diff | comparison | revisions
resources/fonts/Arial-96pt_bold_0.png file | annotate | diff | comparison | revisions
resources/fonts/Arial-96pt_bold_1.png file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-64pt_smbld.fnt file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-64pt_smbld_0.png file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-64pt_smbld_1.png file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-64pt_smbld_2.png file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-92pt_smbld.fnt file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-92pt_smbld_0.png file | annotate | diff | comparison | revisions
resources/fonts/SegoeUI-92pt_smbld_1.png file | annotate | diff | comparison | revisions
resources/images/amaico_114.png file | annotate | diff | comparison | revisions
resources/images/amaico_99.png file | annotate | diff | comparison | revisions
resources/images/butback.png file | annotate | diff | comparison | revisions
resources/images/buttadd.png file | annotate | diff | comparison | revisions
resources/images/buttdel1.png file | annotate | diff | comparison | revisions
resources/images/butthelp.png file | annotate | diff | comparison | revisions
resources/images/buttinfo.png file | annotate | diff | comparison | revisions
resources/images/splashscreen.png file | annotate | diff | comparison | revisions
resources/main.lua file | annotate | diff | comparison | revisions
resources/sceneabout.lua file | annotate | diff | comparison | revisions
resources/scenehelp.lua file | annotate | diff | comparison | revisions
resources/scenemain.lua file | annotate | diff | comparison | revisions
resources/splashscreen.jpg file | annotate | diff | comparison | revisions
resources/textures/skynorm.png file | annotate | diff | comparison | revisions
vc11xwp/Amalog_vc11xwp_wp8devtoolset.sln file | annotate | diff | comparison | revisions
vc11xwp/Amalog_vc11xwp_wp8devtoolset.vcxproj file | annotate | diff | comparison | revisions
vc11xwp/Marmalade.Shell.csproj file | annotate | diff | comparison | revisions
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.hgignore	Wed Jul 31 19:28:00 2013 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +syntax: glob
     1.5 +*.orig
     1.6 +*.rej
     1.7 +*.o
     1.8 +*~
     1.9 +
    1.10 +dist
    1.11 +scratch
    1.12 +resources-ram
    1.13 +
    1.14 +docs/design*.pdf
    1.15 +resources/mobdebug.lua
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/amalog.mkb	Wed Jul 31 19:28:00 2013 +0200
     2.3 @@ -0,0 +1,80 @@
     2.4 +#!/usr/bin/env mkb
     2.5 +
     2.6 +# Quick Project
     2.7 +
     2.8 +if {{ option use_prebuilt }}
     2.9 +{
    2.10 +    subproject "$MARMALADE_ROOT/quick/quick_prebuilt"
    2.11 +}
    2.12 +else
    2.13 +{
    2.14 +    subproject "$MARMALADE_ROOT/quick/quick"
    2.15 +}
    2.16 +
    2.17 +options
    2.18 +{
    2.19 +    s3e-data-dir = resources
    2.20 +    app-icf = 'resources/common.icf,resources/app.icf'
    2.21 +}
    2.22 +
    2.23 +files
    2.24 +{
    2.25 +    (resources)
    2.26 +    app.icf
    2.27 +    main.lua
    2.28 +}
    2.29 +
    2.30 +assets
    2.31 +{
    2.32 +    (resources)
    2.33 +	.
    2.34 +}
    2.35 +
    2.36 +deployments
    2.37 +{
    2.38 +    ["Windows"]
    2.39 +    win32
    2.40 +    arch=x86
    2.41 +
    2.42 +    ["Mac OS X"]
    2.43 +    osx
    2.44 +    arch=x86
    2.45 +
    2.46 +    # Ensure subsequent options set on "Default" configuration
    2.47 +    ["Default"]
    2.48 +
    2.49 +    splashscreen="splashdir"  # Folder of multiple splashscreens
    2.50 +    splashscreen-use-all=1    # Package all and pick closest fit at runtime
    2.51 +}
    2.52 +
    2.53 +options
    2.54 +{
    2.55 +    builddir = build_temp
    2.56 +}
    2.57 +
    2.58 +#### AUTO GENERATED deployment settings from DeployTool.exe. Do not edit below this line ####
    2.59 +deployments
    2.60 +{
    2.61 +	["Default"]
    2.62 +	blackberry-author='Michael Schloh'
    2.63 +	blackberry-authorid='gYAAgI1lJZn3qEzu4fLjwMPtQ0E'
    2.64 +	blackberry-cskpass='Dingi8899Dojo-'
    2.65 +	blackberry-keystore='C:/Users/Michel/AppData/Local/Research In Motion/author.p12'
    2.66 +	blackberry-storepass='Dingi8899Dojo-'
    2.67 +	caption='Amalog'
    2.68 +	copyright='© 2013 Michael Schloh'
    2.69 +	icon='resources/images/amaico_114.png'
    2.70 +	name='Amalog'
    2.71 +	provider='Michael Schloh'
    2.72 +	splashscreen='resources/images/splashscreen.png'
    2.73 +	splashscreen-auto-onblack=0
    2.74 +	version-major=0
    2.75 +	version-minor=7
    2.76 +	version-revision=1
    2.77 +	wp8-author='Michael Schloh'
    2.78 +	wp8-description='Amalog stores call records (QSOs) typically logged by amateur radio enthusiasts.'
    2.79 +	wp8-exclude-wvga=0
    2.80 +	wp8-publisher-id='{41a51575-cd71-4031-8a18-b3e323e33c5e}'
    2.81 +	["Mac OS X"]
    2.82 +	["Windows"]
    2.83 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/docs/Changelog.txt	Wed Jul 31 19:28:00 2013 +0200
     3.3 @@ -0,0 +1,5 @@
     3.4 +Release 0.7.1, 30 July 2013
     3.5 +  No changes, repackage to integrate new license and remove splashscreen.
     3.6 +
     3.7 +Release 0.7.0, 26 July 2013
     3.8 +  Initial development.
     4.1 Binary file graphics/amaicon.xcf has changed
     5.1 Binary file graphics/bappworld_1186.png has changed
     6.1 Binary file graphics/bappworld_prod.xcf has changed
     7.1 Binary file graphics/buttcanc.png has changed
     8.1 Binary file graphics/buttdel2.png has changed
     9.1 Binary file graphics/buttforw.png has changed
    10.1 Binary file graphics/buttno.png has changed
    11.1 Binary file graphics/buttyes.png has changed
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/graphics/iconosalle.svg	Wed Jul 31 19:28:00 2013 +0200
    12.3 @@ -0,0 +1,355 @@
    12.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    12.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    12.6 +
    12.7 +<svg
    12.8 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    12.9 +   xmlns:cc="http://creativecommons.org/ns#"
   12.10 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   12.11 +   xmlns:svg="http://www.w3.org/2000/svg"
   12.12 +   xmlns="http://www.w3.org/2000/svg"
   12.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   12.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   12.15 +   width="210mm"
   12.16 +   height="297mm"
   12.17 +   id="svg2"
   12.18 +   version="1.1"
   12.19 +   inkscape:version="0.48.4 r9939"
   12.20 +   sodipodi:docname="amalogicons.svg">
   12.21 +  <defs
   12.22 +     id="defs4" />
   12.23 +  <sodipodi:namedview
   12.24 +     id="base"
   12.25 +     pagecolor="#ffffff"
   12.26 +     bordercolor="#666666"
   12.27 +     borderopacity="1.0"
   12.28 +     inkscape:pageopacity="0.0"
   12.29 +     inkscape:pageshadow="2"
   12.30 +     inkscape:zoom="0.56729519"
   12.31 +     inkscape:cx="723.15515"
   12.32 +     inkscape:cy="526.1811"
   12.33 +     inkscape:document-units="px"
   12.34 +     inkscape:current-layer="layer1"
   12.35 +     showgrid="false"
   12.36 +     inkscape:window-width="486"
   12.37 +     inkscape:window-height="383"
   12.38 +     inkscape:window-x="795"
   12.39 +     inkscape:window-y="24"
   12.40 +     inkscape:window-maximized="0" />
   12.41 +  <metadata
   12.42 +     id="metadata7">
   12.43 +    <rdf:RDF>
   12.44 +      <cc:Work
   12.45 +         rdf:about="">
   12.46 +        <dc:format>image/svg+xml</dc:format>
   12.47 +        <dc:type
   12.48 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   12.49 +        <dc:title></dc:title>
   12.50 +      </cc:Work>
   12.51 +    </rdf:RDF>
   12.52 +  </metadata>
   12.53 +  <g
   12.54 +     inkscape:label="Ebene 1"
   12.55 +     inkscape:groupmode="layer"
   12.56 +     id="layer1">
   12.57 +    <text
   12.58 +       xml:space="preserve"
   12.59 +       style="font-size:80px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:89.99999762%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
   12.60 +       x="10.253903"
   12.61 +       y="907.22937"
   12.62 +       id="text2987"
   12.63 +       sodipodi:linespacing="89.999998%"><tspan
   12.64 +         sodipodi:role="line"
   12.65 +         id="tspan8255"
   12.66 +         x="10.253903"
   12.67 +         y="907.22937">Knopf-</tspan><tspan
   12.68 +         sodipodi:role="line"
   12.69 +         id="tspan8257"
   12.70 +         x="10.253903"
   12.71 +         y="979.22937">grosse</tspan><tspan
   12.72 +         sodipodi:role="line"
   12.73 +         id="tspan8259"
   12.74 +         x="10.253903"
   12.75 +         y="1051.2294">88x350</tspan></text>
   12.76 +    <g
   12.77 +       id="g3912"
   12.78 +       transform="translate(-100,-112.36218)"
   12.79 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttdel1.png"
   12.80 +       inkscape:export-xdpi="56.57143"
   12.81 +       inkscape:export-ydpi="56.57143">
   12.82 +      <rect
   12.83 +         ry="28.571436"
   12.84 +         y="112.36218"
   12.85 +         x="100"
   12.86 +         height="140"
   12.87 +         width="350"
   12.88 +         id="rect2985"
   12.89 +         style="fill:#800000;fill-opacity:1;stroke:none" />
   12.90 +      <text
   12.91 +         sodipodi:linespacing="125%"
   12.92 +         id="text2991"
   12.93 +         y="214.75085"
   12.94 +         x="135.22559"
   12.95 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
   12.96 +         xml:space="preserve"><tspan
   12.97 +           y="214.75085"
   12.98 +           x="135.22559"
   12.99 +           id="tspan2993"
  12.100 +           sodipodi:role="line">Delete</tspan></text>
  12.101 +    </g>
  12.102 +    <g
  12.103 +       id="g8304"
  12.104 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttadd.png"
  12.105 +       inkscape:export-xdpi="56.57143"
  12.106 +       inkscape:export-ydpi="56.57143">
  12.107 +      <rect
  12.108 +         ry="28.571436"
  12.109 +         y="140"
  12.110 +         x="3.9160156e-07"
  12.111 +         height="140"
  12.112 +         width="350"
  12.113 +         id="rect2985-5"
  12.114 +         style="fill:#006680;fill-opacity:1;stroke:none" />
  12.115 +      <text
  12.116 +         sodipodi:linespacing="125%"
  12.117 +         id="text2991-8"
  12.118 +         y="242.38867"
  12.119 +         x="88.458008"
  12.120 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
  12.121 +         xml:space="preserve"><tspan
  12.122 +           y="242.38867"
  12.123 +           x="88.458008"
  12.124 +           id="tspan3082"
  12.125 +           sodipodi:role="line">Add</tspan></text>
  12.126 +    </g>
  12.127 +    <g
  12.128 +       id="g3922"
  12.129 +       transform="translate(-87.85714,-253.79077)"
  12.130 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttyes.png"
  12.131 +       inkscape:export-xdpi="56"
  12.132 +       inkscape:export-ydpi="56">
  12.133 +      <rect
  12.134 +         ry="28.571436"
  12.135 +         y="533.79077"
  12.136 +         x="87.85714"
  12.137 +         height="140"
  12.138 +         width="260"
  12.139 +         id="rect2985-4"
  12.140 +         style="fill:#338000;fill-opacity:1;stroke:none" />
  12.141 +      <text
  12.142 +         sodipodi:linespacing="125%"
  12.143 +         id="text2991-3"
  12.144 +         y="636.17944"
  12.145 +         x="140.74875"
  12.146 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
  12.147 +         xml:space="preserve"><tspan
  12.148 +           y="636.17944"
  12.149 +           x="140.74875"
  12.150 +           id="tspan3092"
  12.151 +           sodipodi:role="line">Yes</tspan></text>
  12.152 +    </g>
  12.153 +    <g
  12.154 +       id="g3927"
  12.155 +       transform="translate(-87.85714,-305.2193)"
  12.156 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttno.png"
  12.157 +       inkscape:export-xdpi="56"
  12.158 +       inkscape:export-ydpi="56">
  12.159 +      <rect
  12.160 +         ry="28.571436"
  12.161 +         y="725.2193"
  12.162 +         x="87.85714"
  12.163 +         height="140"
  12.164 +         width="260"
  12.165 +         id="rect2985-1"
  12.166 +         style="fill:#d45500;fill-opacity:1;stroke:none" />
  12.167 +      <text
  12.168 +         sodipodi:linespacing="125%"
  12.169 +         id="text2991-6"
  12.170 +         y="827.60797"
  12.171 +         x="154.74191"
  12.172 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
  12.173 +         xml:space="preserve"><tspan
  12.174 +           y="827.60797"
  12.175 +           x="154.74191"
  12.176 +           id="tspan3097"
  12.177 +           sodipodi:role="line">No</tspan></text>
  12.178 +    </g>
  12.179 +    <g
  12.180 +       id="g3907"
  12.181 +       transform="translate(-619.28571,389.06639)"
  12.182 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttcanc.png"
  12.183 +       inkscape:export-xdpi="56"
  12.184 +       inkscape:export-ydpi="56">
  12.185 +      <rect
  12.186 +         ry="28.571436"
  12.187 +         y="170.93361"
  12.188 +         x="619.28571"
  12.189 +         height="140"
  12.190 +         width="350"
  12.191 +         id="rect2985-3"
  12.192 +         style="fill:#786721;fill-opacity:1;stroke:none" />
  12.193 +      <text
  12.194 +         sodipodi:linespacing="125%"
  12.195 +         id="text2991-7"
  12.196 +         y="273.86133"
  12.197 +         x="644.31403"
  12.198 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
  12.199 +         xml:space="preserve"><tspan
  12.200 +           y="273.86133"
  12.201 +           x="644.31403"
  12.202 +           id="tspan3122"
  12.203 +           sodipodi:role="line">Cancel</tspan></text>
  12.204 +    </g>
  12.205 +    <g
  12.206 +       id="g3932"
  12.207 +       transform="translate(-587.85712,189.06637)"
  12.208 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttdel2.png"
  12.209 +       inkscape:export-xdpi="56"
  12.210 +       inkscape:export-ydpi="56">
  12.211 +      <rect
  12.212 +         ry="28.571436"
  12.213 +         y="510.93362"
  12.214 +         x="587.85712"
  12.215 +         height="140"
  12.216 +         width="350"
  12.217 +         id="rect2985-7"
  12.218 +         style="fill:#ff0000;fill-opacity:1;stroke:none" />
  12.219 +      <text
  12.220 +         sodipodi:linespacing="125%"
  12.221 +         id="text2991-1"
  12.222 +         y="613.32227"
  12.223 +         x="623.0827"
  12.224 +         style="font-size:92px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
  12.225 +         xml:space="preserve"><tspan
  12.226 +           y="613.32227"
  12.227 +           x="623.0827"
  12.228 +           id="tspan2993-1"
  12.229 +           sodipodi:role="line">Delete</tspan></text>
  12.230 +    </g>
  12.231 +    <g
  12.232 +       id="g8280"
  12.233 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/butback.png"
  12.234 +       inkscape:export-xdpi="45"
  12.235 +       inkscape:export-ydpi="45">
  12.236 +      <path
  12.237 +         transform="matrix(0.95799959,0,0,0.95799959,4.657881,-564.50053)"
  12.238 +         d="m 771.85482,693.63342 a 104.38418,104.38418 0 1 1 -208.76836,0 104.38418,104.38418 0 1 1 208.76836,0 z"
  12.239 +         sodipodi:ry="104.38418"
  12.240 +         sodipodi:rx="104.38418"
  12.241 +         sodipodi:cy="693.63342"
  12.242 +         sodipodi:cx="667.47064"
  12.243 +         id="path3937"
  12.244 +         style="fill:#006680;fill-opacity:1;stroke:none"
  12.245 +         sodipodi:type="arc" />
  12.246 +      <g
  12.247 +         transform="translate(99.618579,-686.25603)"
  12.248 +         style="fill:#ffffff;fill-opacity:1;stroke:none"
  12.249 +         id="g8127">
  12.250 +        <path
  12.251 +           inkscape:connector-curvature="0"
  12.252 +           id="path3939"
  12.253 +           d="m 499.875,780.25 0,12 130.84375,0 0,-12 -130.84375,0 z"
  12.254 +           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
  12.255 +        <path
  12.256 +           inkscape:connector-curvature="0"
  12.257 +           id="path8133"
  12.258 +           d="m 444.4759,786.25603 83.04,-48 0,96 -83.04,-48 z"
  12.259 +           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
  12.260 +      </g>
  12.261 +      <path
  12.262 +         inkscape:connector-curvature="0"
  12.263 +         id="path8135"
  12.264 +         d="m 732.09448,100 -138.19877,0"
  12.265 +         style="fill:none;stroke:#ffffff;stroke-width:24;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  12.266 +    </g>
  12.267 +    <g
  12.268 +       id="g8287"
  12.269 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttforw.png"
  12.270 +       inkscape:export-xdpi="45"
  12.271 +       inkscape:export-ydpi="45">
  12.272 +      <path
  12.273 +         transform="matrix(-0.95799959,0,0,0.95799959,1283.531,-364.50053)"
  12.274 +         d="m 771.85482,693.63342 a 104.38418,104.38418 0 1 1 -208.76836,0 104.38418,104.38418 0 1 1 208.76836,0 z"
  12.275 +         sodipodi:ry="104.38418"
  12.276 +         sodipodi:rx="104.38418"
  12.277 +         sodipodi:cy="693.63342"
  12.278 +         sodipodi:cx="667.47064"
  12.279 +         id="path3937-4"
  12.280 +         style="fill:#006680;fill-opacity:1;stroke:none"
  12.281 +         sodipodi:type="arc" />
  12.282 +      <g
  12.283 +         transform="matrix(-1,0,0,1,1188.5703,-486.25603)"
  12.284 +         style="fill:#ffffff;fill-opacity:1;stroke:none"
  12.285 +         id="g8127-2">
  12.286 +        <path
  12.287 +           inkscape:connector-curvature="0"
  12.288 +           id="path3939-3"
  12.289 +           d="m 499.875,780.25 0,12 130.84375,0 0,-12 -130.84375,0 z"
  12.290 +           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
  12.291 +        <path
  12.292 +           inkscape:connector-curvature="0"
  12.293 +           id="path8133-2"
  12.294 +           d="m 444.4759,786.25603 83.04,-48 0,96 -83.04,-48 z"
  12.295 +           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
  12.296 +      </g>
  12.297 +      <path
  12.298 +         inkscape:connector-curvature="0"
  12.299 +         id="path8135-3"
  12.300 +         d="m 556.09444,300 138.19877,0"
  12.301 +         style="fill:none;stroke:#ffffff;stroke-width:24;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  12.302 +    </g>
  12.303 +    <g
  12.304 +       id="g8294"
  12.305 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/buttinfo.png"
  12.306 +       inkscape:export-xdpi="45"
  12.307 +       inkscape:export-ydpi="45">
  12.308 +      <path
  12.309 +         transform="matrix(0.95799959,0,0,0.95799959,4.65784,-164.50054)"
  12.310 +         d="m 771.85482,693.63342 a 104.38418,104.38418 0 1 1 -208.76836,0 104.38418,104.38418 0 1 1 208.76836,0 z"
  12.311 +         sodipodi:ry="104.38418"
  12.312 +         sodipodi:rx="104.38418"
  12.313 +         sodipodi:cy="693.63342"
  12.314 +         sodipodi:cx="667.47064"
  12.315 +         id="path3937-6"
  12.316 +         style="fill:#006680;fill-opacity:1;stroke:none"
  12.317 +         sodipodi:type="arc" />
  12.318 +      <text
  12.319 +         sodipodi:linespacing="125%"
  12.320 +         id="text8215"
  12.321 +         y="568.92798"
  12.322 +         x="613.18243"
  12.323 +         style="font-size:192px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Bitstream Charter;-inkscape-font-specification:Bitstream Charter Bold Italic"
  12.324 +         xml:space="preserve"><tspan
  12.325 +           y="568.92798"
  12.326 +           x="613.18243"
  12.327 +           id="tspan8217"
  12.328 +           sodipodi:role="line">i</tspan></text>
  12.329 +    </g>
  12.330 +    <g
  12.331 +       id="g8299"
  12.332 +       inkscape:export-filename="/home/mschloh/Dokumente/hgpub/amalog/butthelp.png"
  12.333 +       inkscape:export-xdpi="45"
  12.334 +       inkscape:export-ydpi="45">
  12.335 +      <path
  12.336 +         transform="matrix(0.95799959,0,0,0.95799959,4.65784,35.49946)"
  12.337 +         d="m 771.85482,693.63342 a 104.38418,104.38418 0 1 1 -208.76836,0 104.38418,104.38418 0 1 1 208.76836,0 z"
  12.338 +         sodipodi:ry="104.38418"
  12.339 +         sodipodi:rx="104.38418"
  12.340 +         sodipodi:cy="693.63342"
  12.341 +         sodipodi:cx="667.47064"
  12.342 +         id="path3937-6-1"
  12.343 +         style="fill:#006680;fill-opacity:1;stroke:none"
  12.344 +         sodipodi:type="arc" />
  12.345 +      <text
  12.346 +         sodipodi:linespacing="125%"
  12.347 +         id="text8215-2"
  12.348 +         y="770.30396"
  12.349 +         x="591.88647"
  12.350 +         style="font-size:208px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:FreeSerif;-inkscape-font-specification:FreeSerif Bold"
  12.351 +         xml:space="preserve"><tspan
  12.352 +           y="770.30396"
  12.353 +           x="591.88647"
  12.354 +           id="tspan8248"
  12.355 +           sodipodi:role="line">?</tspan></text>
  12.356 +    </g>
  12.357 +  </g>
  12.358 +</svg>
    13.1 Binary file graphics/shot1-768.png has changed
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/graphics/shot1-768.svg	Wed Jul 31 19:28:00 2013 +0200
    14.3 @@ -0,0 +1,200 @@
    14.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    14.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    14.6 +
    14.7 +<svg
    14.8 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    14.9 +   xmlns:cc="http://creativecommons.org/ns#"
   14.10 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   14.11 +   xmlns:svg="http://www.w3.org/2000/svg"
   14.12 +   xmlns="http://www.w3.org/2000/svg"
   14.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   14.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   14.15 +   width="533.995"
   14.16 +   height="890"
   14.17 +   id="svg2"
   14.18 +   version="1.1"
   14.19 +   inkscape:version="0.48.3.1 r9886"
   14.20 +   sodipodi:docname="amalogscrshot1.svg">
   14.21 +  <defs
   14.22 +     id="defs4" />
   14.23 +  <sodipodi:namedview
   14.24 +     id="base"
   14.25 +     pagecolor="#ffffff"
   14.26 +     bordercolor="#666666"
   14.27 +     borderopacity="1.0"
   14.28 +     inkscape:pageopacity="0.0"
   14.29 +     inkscape:pageshadow="2"
   14.30 +     inkscape:zoom="0.79325843"
   14.31 +     inkscape:cx="274.76521"
   14.32 +     inkscape:cy="445"
   14.33 +     inkscape:document-units="px"
   14.34 +     inkscape:current-layer="layer1"
   14.35 +     showgrid="false"
   14.36 +     fit-margin-top="0"
   14.37 +     fit-margin-left="0"
   14.38 +     fit-margin-right="0"
   14.39 +     fit-margin-bottom="0"
   14.40 +     inkscape:window-width="747"
   14.41 +     inkscape:window-height="942"
   14.42 +     inkscape:window-x="3"
   14.43 +     inkscape:window-y="44"
   14.44 +     inkscape:window-maximized="0" />
   14.45 +  <metadata
   14.46 +     id="metadata7">
   14.47 +    <rdf:RDF>
   14.48 +      <cc:Work
   14.49 +         rdf:about="">
   14.50 +        <dc:format>image/svg+xml</dc:format>
   14.51 +        <dc:type
   14.52 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   14.53 +        <dc:title></dc:title>
   14.54 +      </cc:Work>
   14.55 +    </rdf:RDF>
   14.56 +  </metadata>
   14.57 +  <g
   14.58 +     inkscape:label="Ebene 1"
   14.59 +     inkscape:groupmode="layer"
   14.60 +     id="layer1"
   14.61 +     transform="translate(-108.0025,-102.36218)">
   14.62 +    <rect
   14.63 +       style="fill:#000000;fill-opacity:1"
   14.64 +       id="rect2985"
   14.65 +       width="533.995"
   14.66 +       height="100"
   14.67 +       x="108.0025"
   14.68 +       y="102.36218" />
   14.69 +    <rect
   14.70 +       style="fill:#d0d0d0;fill-opacity:1"
   14.71 +       id="rect2985-9"
   14.72 +       width="533.995"
   14.73 +       height="100"
   14.74 +       x="108.0025"
   14.75 +       y="202.36218" />
   14.76 +    <rect
   14.77 +       style="fill:#c0c0c0;fill-opacity:1"
   14.78 +       id="rect2985-9-6"
   14.79 +       width="533.995"
   14.80 +       height="100"
   14.81 +       x="108.0025"
   14.82 +       y="302.36218" />
   14.83 +    <rect
   14.84 +       style="fill:#d0d0d0;fill-opacity:1"
   14.85 +       id="rect2985-9-9"
   14.86 +       width="533.995"
   14.87 +       height="100"
   14.88 +       x="108.0025"
   14.89 +       y="402.36218" />
   14.90 +    <rect
   14.91 +       style="fill:#c0c0c0;fill-opacity:1"
   14.92 +       id="rect2985-9-6-9"
   14.93 +       width="533.995"
   14.94 +       height="100"
   14.95 +       x="108.0025"
   14.96 +       y="502.36218" />
   14.97 +    <rect
   14.98 +       style="fill:#d0d0d0;fill-opacity:1"
   14.99 +       id="rect2985-9-8"
  14.100 +       width="533.995"
  14.101 +       height="100"
  14.102 +       x="108.0025"
  14.103 +       y="602.36218" />
  14.104 +    <rect
  14.105 +       style="fill:#c0c0c0;fill-opacity:1"
  14.106 +       id="rect2985-9-6-0"
  14.107 +       width="533.995"
  14.108 +       height="100"
  14.109 +       x="108.0025"
  14.110 +       y="702.36218" />
  14.111 +    <rect
  14.112 +       style="fill:#d0d0d0;fill-opacity:1"
  14.113 +       id="rect2985-9-9-9"
  14.114 +       width="533.995"
  14.115 +       height="100"
  14.116 +       x="108.0025"
  14.117 +       y="802.36218" />
  14.118 +    <rect
  14.119 +       style="fill:#000000;fill-opacity:1"
  14.120 +       id="rect2985-8"
  14.121 +       width="533.995"
  14.122 +       height="90"
  14.123 +       x="108.0025"
  14.124 +       y="902.36218" />
  14.125 +    <text
  14.126 +       xml:space="preserve"
  14.127 +       style="font-size:64px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#f2f2f2;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
  14.128 +       x="241.875"
  14.129 +       y="174.54968"
  14.130 +       id="text3868"
  14.131 +       sodipodi:linespacing="125%"><tspan
  14.132 +         sodipodi:role="line"
  14.133 +         id="tspan3870"
  14.134 +         x="241.875"
  14.135 +         y="174.54968">Amalog</tspan></text>
  14.136 +    <text
  14.137 +       xml:space="preserve"
  14.138 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.139 +       x="129.35449"
  14.140 +       y="265.61044"
  14.141 +       id="text3872"
  14.142 +       sodipodi:linespacing="125%"><tspan
  14.143 +         sodipodi:role="line"
  14.144 +         id="tspan3874"
  14.145 +         x="129.35449"
  14.146 +         y="265.61044">123WL556 QTH Paris</tspan></text>
  14.147 +    <text
  14.148 +       xml:space="preserve"
  14.149 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.150 +       x="129.35449"
  14.151 +       y="365.61044"
  14.152 +       id="text3872-5"
  14.153 +       sodipodi:linespacing="125%"><tspan
  14.154 +         y="365.61044"
  14.155 +         x="129.35449"
  14.156 +         sodipodi:role="line"
  14.157 +         id="tspan3935">554PQ123 QTH Sydney</tspan></text>
  14.158 +    <text
  14.159 +       xml:space="preserve"
  14.160 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.161 +       x="129.35449"
  14.162 +       y="465.61044"
  14.163 +       id="text3872-6"
  14.164 +       sodipodi:linespacing="125%"><tspan
  14.165 +         y="465.61044"
  14.166 +         x="129.35449"
  14.167 +         sodipodi:role="line"
  14.168 +         id="tspan3937">202QD110 Good signal</tspan></text>
  14.169 +    <text
  14.170 +       xml:space="preserve"
  14.171 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.172 +       x="129.35449"
  14.173 +       y="565.61047"
  14.174 +       id="text3872-2"
  14.175 +       sodipodi:linespacing="125%"><tspan
  14.176 +         y="565.61047"
  14.177 +         x="129.35449"
  14.178 +         sodipodi:role="line"
  14.179 +         id="tspan3939">321LW998 Bad signal</tspan></text>
  14.180 +    <text
  14.181 +       xml:space="preserve"
  14.182 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.183 +       x="129.35449"
  14.184 +       y="665.61047"
  14.185 +       id="text3872-7"
  14.186 +       sodipodi:linespacing="125%"><tspan
  14.187 +         y="665.61047"
  14.188 +         x="129.35449"
  14.189 +         sodipodi:role="line"
  14.190 +         id="tspan3941">990LP246 QTH Denver</tspan></text>
  14.191 +    <text
  14.192 +       xml:space="preserve"
  14.193 +       style="font-size:42px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
  14.194 +       x="129.35449"
  14.195 +       y="765.61047"
  14.196 +       id="text3872-9"
  14.197 +       sodipodi:linespacing="125%"><tspan
  14.198 +         y="765.61047"
  14.199 +         x="129.35449"
  14.200 +         sodipodi:role="line"
  14.201 +         id="tspan3943">878AZ654 Unknown</tspan></text>
  14.202 +  </g>
  14.203 +</svg>
    15.1 Binary file graphics/shot1-768.xcf has changed
    16.1 Binary file graphics/splashtest.png has changed
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/resources/app.icf	Wed Jul 31 19:28:00 2013 +0200
    17.3 @@ -0,0 +1,16 @@
    17.4 +[S3E]
    17.5 +MemMgrMaxAllocWarning=0
    17.6 +DispFixRot=FixedPortrait
    17.7 +
    17.8 +[GL]
    17.9 +VirtualWidth=768
   17.10 +VirtualHeight=1280
   17.11 +VirtualLetterbox=0
   17.12 +VirtualRotate=0
   17.13 +
   17.14 +{OS=WINDOWS}
   17.15 +PreCompileShaderBinaries=1
   17.16 +{}
   17.17 +
   17.18 +[QUICK]
   17.19 +mainFilename="main.lua"
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/resources/common.icf	Wed Jul 31 19:28:00 2013 +0200
    18.3 @@ -0,0 +1,47 @@
    18.4 +# This file is for configuration settings for your
    18.5 +# application.
    18.6 +#
    18.7 +# The syntax is similar to windows .ini files ie
    18.8 +#
    18.9 +# [GroupName]
   18.10 +# Setting = Value
   18.11 +#
   18.12 +# Which can be read by your application using
   18.13 +#  e.g s3eConfigGetString("GroupName", "Setting", string)
   18.14 +#
   18.15 +# All settings must be documented in .config.txt files.
   18.16 +# New settings specific to this application should be
   18.17 +# documented in app.config.txt
   18.18 +#
   18.19 +# Some conditional operations are also permitted, see the
   18.20 +# S3E documentation for details.
   18.21 +
   18.22 +[S3E]
   18.23 +MemSize=25000000
   18.24 +MemSizeDebug=30000000
   18.25 +WinPosX=16
   18.26 +WinPosY=16
   18.27 +#SysStdOut="output.txt"
   18.28 +
   18.29 +[TRACE]
   18.30 +ACCELEROMETER=0
   18.31 +AUDIO=0
   18.32 +DEBUG=0
   18.33 +DEVICE=0
   18.34 +EXT=0
   18.35 +FIBRE=0
   18.36 +FILE=0
   18.37 +IWCRT=0
   18.38 +#IW_GL=0
   18.39 +KEYBOARD=0
   18.40 +LOADER=0
   18.41 +MEMORY=0
   18.42 +THREAD=0
   18.43 +SOUND=0
   18.44 +SURFACE=0
   18.45 +
   18.46 +[GL]
   18.47 +AllowNegativeUniformLocation=1
   18.48 +
   18.49 +[UTIL]
   18.50 +MemMgrMaxAllocWarning=0
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/resources/development.icf	Wed Jul 31 19:28:00 2013 +0200
    19.3 @@ -0,0 +1,107 @@
    19.4 +# Settings ICF file automatically generated by S3E development environment
    19.5 +
    19.6 +AccelEnabled                   = Type=bool, Default="true", Value = "true"
    19.7 +AudioAAC                       = Type=bool, Default="false", Value = "false"
    19.8 +AudioAACPlus                   = Type=bool, Default="false", Value = "false"
    19.9 +AudioMIDI                      = Type=bool, Default="true", Value = "true"
   19.10 +AudioMP3                       = Type=bool, Default="true", Value = "true"
   19.11 +AudioPCM                       = Type=bool, Default="true", Value = "true"
   19.12 +AudioQCP                       = Type=bool, Default="false", Value = "false"
   19.13 +AudioVolumeDefault             = Type=int, Min=0.000000, Max=256.000000, Default="256", Value = "256"
   19.14 +BacklightTimeout               = Type=int, Min=0.000000, Max=120000.000000, Default="10000", Value = "10000"
   19.15 +CompassEnabled                 = Type=bool, Default="true", Value = "true"
   19.16 +ContactsFromAddrBook           = Type=bool, Default="false", Value = "false"
   19.17 +DeviceAdvanceSoftkeyPosition   = Type=string, Allowed="Bottom Left" "Bottom Right" "Top Right" "Top Left", Default="Bottom Left", Value = "Bottom Left"
   19.18 +DeviceArch                     = Type=string, Allowed="<Use Native Architecture>" "ARM4T" "ARM4" "ARM5T" "ARM5TE" "ARM5TEJ" "ARM6" "ARM6K" "ARM6T2" "ARM6Z" "X86" "PPC" "AMD64" "ARM7", Default="<Use Native Architecture>", Value = "<Use Native Architecture>"
   19.19 +DeviceBackSoftkeyPosition      = Type=string, Allowed="Bottom Left" "Bottom Right" "Top Right" "Top Left", Default="Bottom Right", Value = "Bottom Right"
   19.20 +DeviceBatteryLevel             = Type=int, Min=0.000000, Max=100.000000, Default="50", Value = "50"
   19.21 +DeviceClass                    = Type=string, Allowed="UNKNOWN" "SYMBIAN_GENERIC" "SYMBIAN_SERIES60" "SYMBIAN_SERIES60_EMULATOR" "SYMBIAN_UIQ" "SYMBIAN_UIQ_EMULATOR" "BREW_GENERIC" "BREW_QCIF_3D" "BREW_QCIF_25G" "BREW_SQCIF_256" "BREW_QVGA_3G" "WINDOWS_GENERIC" "WINMOBILE_GENERIC" "WINMOBILE_SP" "WINMOBILE_PPC" "LINUX_GENERIC" "LINUX_DESKTOP" "LINUX_EMBED" "WIPI_GENERIC" "NDS_GENERIC" "ARM_SEMIH_GENERIC" "NULCUES_GENERIC" "NGI_GENERIC", Default="WINDOWS_GENERIC", Value = "WINDOWS_GENERIC"
   19.22 +DeviceFPU                      = Type=string, Allowed="None" "VFP Present", Default="VFP Present", Value = "VFP Present"
   19.23 +DeviceFreeRAM                  = Type=int, Min=0.000000, Max=2097151.000000, Default="1048576", Value = "1048576"
   19.24 +DeviceIDInt                    = Type=int, Default="0", Value = "0"
   19.25 +DeviceIDString                 = Type=string, Default="", Value = ""
   19.26 +DeviceIMSI                     = Type=string, Default="SIMULATOR_IMSI", Value = "SIMULATOR_IMSI"
   19.27 +DeviceLSKIsBack                = Type=bool, Default="false", Value = "false"
   19.28 +DeviceLanguage                 = Type=string, Allowed="UNKNOWN" "ENGLISH" "FRENCH" "GERMAN" "SPANISH" "ITALIAN" "PORTUGUESE" "DUTCH" "TURKISH" "CROATIAN" "CZECH" "DANISH" "FINNISH" "HUNGARIAN" "NORWEGIAN" "POLISH" "RUSSIAN" "SERBIAN" "SLOVAK" "SLOVENIAN" "SWEDISH" "UKRAINIAN" "GREEK" "JAPANESE" "SIMPL_CHINESE" "TRAD_CHINESE" "KOREAN" "ICELANDIC" "FLEMISH" "THAI" "AFRIKAANS" "ALBANIAN" "AMHARIC" "ARABIC" "ARMENIAN" "AZERBAIJANI" "TAGALOG" "BELARUSSIAN" "BENGALI" "BULGARIAN" "BURMESE" "CATALAN" "ESTONIAN" "FARSI" "GAELIC" "GEORGIAN" "GUJARATI" "HEBREW" "HINDI" "INDONESIAN" "IRISH" "KANNADA" "KAZAKH" "KHMER" "LAO" "LATVIAN" "LITHUANIAN" "MACEDONIAN" "MALAY" "MALAYALAM" "MARATHI" "MOLDOVIAN" "MONGOLIAN" "PUNJABI" "ROMANIAN" "SINHALESE" "SOMALI" "SWAHILI" "TAJIK" "TAMIL" "TELUGU" "TIBETAN" "TIGRINYA" "TURKMEN" "URDU" "UZBEK" "VIETNAMESE" "WELSH" "ZULU" "<Use Native Language>", Default="<Use Native Language>", Value = "<Use Native Language>"
   19.29 +DeviceMainsPower               = Type=bool, Default="false", Value = "false"
   19.30 +DeviceName                     = Type=string, Default="My Computer", Value = "My Computer"
   19.31 +DeviceOS                       = Type=string, Allowed="NONE" "SYMBIAN" "BREW" "WINDOWS" "WINMOBILE" "LINUX" "WIPI" "NDS" "ARM_SEMIH" "NUCLEUS" "NGI" "WINCE" "SHARPEMP" "OSX" "IPHONE" "UIQ" "PS3" "X360" "BADA" "ANDROID" "WEBOS" "QNX", Default="NONE", Value = "NONE"
   19.32 +DeviceOSVersion                = Type=string, Default="", Value = ""
   19.33 +DeviceOSVersionNumber          = Type=int, Default="0", Value = "0"
   19.34 +DevicePhoneNumber              = Type=string, Default="0044123456789", Value = "0044123456789"
   19.35 +DeviceTimezone                 = Type=string, Default="SYSTEM", Value = "SYSTEM"
   19.36 +DeviceTotalRAM                 = Type=int, Min=0.000000, Max=2097151.000000, Default="1048576", Value = "1048576"
   19.37 +DeviceUniqueID                 = Type=string, Default="SIMULATOR_ID", Value = "SIMULATOR_ID"
   19.38 +DeviceUniqueIDInt              = Type=int, Default="01234567890", Value = "01234567890"
   19.39 +FileTotalStorageSize           = Type=int, Min=0.000000, Max=2147483648.000000, Default="67108864", Value = "67108864"
   19.40 +FileUseSeparateRomRam          = Type=bool, Default="true", Value = "true"
   19.41 +FileUseTotalStorageSize        = Type=bool, Default="false", Value = "false"
   19.42 +GLAPI                          = Type=string, Allowed="None" "GLES 1.0 Common-Lite Profile from Imagination POWERVR(TM)" "GLES 1.1 Common-Lite Profile from Imagination POWERVR(TM)" "GLES 1.0 Common Profile from Imagination POWERVR(TM)" "GLES 1.1 Common Profile from Imagination POWERVR(TM)" "GLES 2.0 from Imagination POWERVR(TM)" "Obey [S3E] SysGlesVersion .icf setting" "GLES 1.1 Common Profile from Qualcomm Snapdragon(TM)" "GLES 2.0 from Qualcomm Snapdragon(TM)" "GLES 2.0 ANGLE" "GLES 2.0 ANGLE DirectX 11", Default="Obey [S3E] SysGlesVersion .icf setting", Value = "Obey [S3E] SysGlesVersion .icf setting"
   19.43 +GLDontUseHiddenWindow          = Type=bool, Default="false", Value = "false"
   19.44 +GLTerminateOnSuspend           = Type=bool, Default="false", Value = "false"
   19.45 +GLUsePVRVFrame                 = Type=bool, Default="false", Value = "false"
   19.46 +KeyboardHasAlpha               = Type=bool, Default="true", Value = "true"
   19.47 +KeyboardHasDirection           = Type=bool, Default="true", Value = "true"
   19.48 +KeyboardHasKeypad              = Type=bool, Default="true", Value = "true"
   19.49 +KeyboardNumpadRotation         = Type=string, Allowed="Rot0" "Rot90" "Rot180" "Rot270", Default="Rot0", Value = "Rot0"
   19.50 +LicenseExpiryDate              = Type=int, Min=0.000000, Max=999999995904.000000, Default="0", Value = "0"
   19.51 +LicenseMinutesRemaining        = Type=int, Min=0.000000, Max=10000000.000000, Default="0", Value = "0"
   19.52 +LicenseStatus                  = Type=string, Allowed="EXPIRED" "DEMO" "USECOUNT" "EXPIRYDATE" "EXPIRYMINSUSE" "PURCHASE" "SUBSCRIPTION" "UPGRADE" "NONCOMMERCIAL", Default="NONCOMMERCIAL", Value = "NONCOMMERCIAL"
   19.53 +LicenseUsesRemaining           = Type=int, Min=0.000000, Max=10000000.000000, Default="0", Value = "0"
   19.54 +LocationAltitude               = Type=float, Min=-2000.000000, Max=100000.000000, Default="60.0", Value = "60.0"
   19.55 +LocationAvailable              = Type=bool, Default="true", Value = "true"
   19.56 +LocationHeading                = Type=float, Min=0.000000, Max=359.000000, Default="0.0", Value = "0.0"
   19.57 +LocationHorizontalAccuracy     = Type=float, Min=0.000000, Max=100000.000000, Default="20.0", Value = "20.0"
   19.58 +LocationLatitude               = Type=float, Min=-90.000000, Max=90.000000, Default="51.511791", Value = "51.511791"
   19.59 +LocationLongitude              = Type=float, Min=-180.000000, Max=180.000000, Default="-0.191084", Value = "-0.191084"
   19.60 +LocationSpeed                  = Type=float, Min=0.000000, Max=10000.000000, Default="0", Value = "0"
   19.61 +LocationVerticalAccuracy       = Type=float, Min=0.000000, Max=100000.000000, Default="100.0", Value = "100.0"
   19.62 +MacOSSimulatorCustomSettings   = Type=string, Default="", Value = ""
   19.63 +MacOSSimulatorDevices_ANDROID  = Type=string, Allowed="Samsung Galaxy S:480x800:512" "HTC Sensation XL:480x800:768" "Samsung Galaxy Note:800x1280:1024" "Motorola Droid Razr:540x960:1024" "Kindle Fire:1024x600:512" "Samsung Galaxy Tab:1024x600:512", Default="Samsung Galaxy S:480x800:512", Value = "Samsung Galaxy S:480x800:512"
   19.64 +MacOSSimulatorDevices_IPHONE   = Type=string, Allowed="iPhone 3GS:320x480:256" "iPhone 4:640x960:512" "iPhone 5:640x1136:1024" "iPad:768x1024:256" "iPad 2:768x1024:512" "iPad 3:1536x2048:1024", Default="iPhone 3GS:320x480:256", Value = "iPhone 3GS:320x480:256"
   19.65 +MacOSSimulatorPlatforms        = Type=string, Allowed="IPHONE" "ANDROID", Default="IPHONE", Value = "IPHONE"
   19.66 +MacOSSimulatorUseCustomSettings = Type=bool, Default="true", Value = "true"
   19.67 +MemoryPoison                   = Type=bool, Default="true", Value = "true"
   19.68 +MemoryPoisonAlloc              = Type=int, Min=0.000000, Max=255.000000, Default="170", Value = "170"
   19.69 +MemoryPoisonFree               = Type=int, Min=0.000000, Max=255.000000, Default="221", Value = "221"
   19.70 +MemoryPoisonInit               = Type=int, Min=0.000000, Max=255.000000, Default="204", Value = "204"
   19.71 +PointerAvailable               = Type=bool, Default="true", Value = "true"
   19.72 +PointerMultiSimulationMode     = Type=bool, Default="false", Value = "false"
   19.73 +PointerMultiTouchAvailable     = Type=bool, Default="false", Value = "false"
   19.74 +PointerStylusType              = Type=string, Allowed="INVALID" "STYLUS" "FINGER", Default="INVALID", Value = "INVALID"
   19.75 +PointerType                    = Type=string, Allowed="INVALID" "MOUSE" "STYLUS", Default="MOUSE", Value = "MOUSE"
   19.76 +SMSEnabled                     = Type=bool, Default="true", Value = "true"
   19.77 +SMSReceiveEnabled              = Type=bool, Default="true", Value = "true"
   19.78 +SocketDNSDelay                 = Type=int, Min=0.000000, Max=30000.000000, Default="0", Value = "0"
   19.79 +SocketHTTPProxy                = Type=string, Default="", Value = ""
   19.80 +SocketHostName                 = Type=string, Default="", Value = ""
   19.81 +SocketNetworkAvailable         = Type=bool, Default="true", Value = "true"
   19.82 +SocketNetworkLoss              = Type=bool, Default="false", Value = "false"
   19.83 +SocketNetworkType              = Type=string, Allowed="NONE" "UNKNOWN" "LAN" "WLAN" "GPRS" "UMTS" "EVDO" "CDMA2000" "HSDPA" "WIMAX" "BLUETOOTH" "EDGE" "CDMA" "IDEN" "LTE" "EHRPD" "HSPAPLUS", Default="LAN", Value = "LAN"
   19.84 +SocketRecvLimit                = Type=int, Min=0.000000, Max=1000000.000000, Default="0", Value = "0"
   19.85 +SocketSendLimit                = Type=int, Min=0.000000, Max=1000000.000000, Default="0", Value = "0"
   19.86 +SoundEnabled                   = Type=bool, Default="true", Value = "true"
   19.87 +SoundRecordEnabled             = Type=bool, Default="true", Value = "true"
   19.88 +SoundSampleRate                = Type=int, Allowed="8192" "11025" "16000" "22050" "44100", Default="22050", Value = "22050"
   19.89 +SoundStereo                    = Type=bool, Default="true", Value = "true"
   19.90 +SoundVolumeDefault             = Type=int, Min=0.000000, Max=256.000000, Default="256", Value = "256"
   19.91 +SurfaceDisableWhenGLIsActive   = Type=bool, Default="false", Value = "false"
   19.92 +SurfaceDoubleBuffer            = Type=bool, Default="false", Value = "false"
   19.93 +SurfaceHeight                  = Type=int, Min=128.000000, Max=4096.000000, Default="480", Value = "1280"
   19.94 +SurfacePitch                   = Type=int, Min=0.000000, Max=8192.000000, Default="0", Value = "0"
   19.95 +SurfacePixelType               = Type=string, Allowed="RGB444" "RGB555" "RGB565" "RGB666" "RGB888" "BGR444" "BGR555" "BGR565" "BGR666" "BGR888", Default="RGB565", Value = "RGB565"
   19.96 +SurfacePredefinedResolution    = Type=string, Allowed="176x200" "176x208" "240x320 (QVGA Portrait)" "240x400" "320x240 (QVGA Landscape)" "320x400" "320x480 (iPhone Portrait)" "400x240" "480x320 (iPhone Landscape)" "360x640 (qHD Portrait)" "640x360 (qHD Landscape)" "480x640 (VGA Portrait)" "480x800 (WVGA Portrait)" "640x480 (VGA Landscape)" "800x400" "800x480 (WVGA Landscape)" "640x960 (iPhone 4 Portrait)" "960x640 (iPhone 4 Landscape)" "640x1136 (iPhone 5 Portrait)" "1136x640 (iPhone 5 Landscape)" "1024x600 (Playbook Landscape)" "600x1024 (Playbook Portrait)" "768x1024 (iPad Portrait)" "1024x768 (iPad Landscape)" "2048x1536 (iPad Retina Landscape)" "1536x2048 (iPad Retina Portrait)", Default="320x480 (iPhone Portrait)", Value = "176x200"
   19.97 +SurfaceRotation                = Type=string, Allowed="Rot0" "Rot90" "Rot180" "Rot270", Default="Rot0", Value = "Rot0"
   19.98 +SurfaceUnalign                 = Type=bool, Default="true", Value = "true"
   19.99 +SurfaceUseMultiBuffers         = Type=bool, Default="true", Value = "true"
  19.100 +SurfaceWidth                   = Type=int, Min=128.000000, Max=4096.000000, Default="320", Value = "768"
  19.101 +SymbianSoundLatency            = Type=int, Min=20.000000, Max=1400.000000, Default="120", Value = "120"
  19.102 +ThreadEnabled                  = Type=bool, Default="true", Value = "true"
  19.103 +TimerAccuracy                  = Type=int, Min=0.000000, Max=1000.000000, Default="0", Value = "0"
  19.104 +TimerHiRes                     = Type=bool, Default="false", Value = "false"
  19.105 +TimerLocaltimeOffsetHours      = Type=string, Allowed="-12" "-11" "-10" "-9" "-8" "-7" "-6" "-5" "-4" "-3" "-2" "-1" "0" "+1" "+2" "+3" "+4" "+5" "+6" "+7" "+8" "+9" "+10" "+11" "+12" "+13" "SYSTEM", Default="SYSTEM", Value = "SYSTEM"
  19.106 +VibraEnabled                   = Type=bool, Default="true", Value = "true"
  19.107 +Video3GPP                      = Type=bool, Default="false", Value = "false"
  19.108 +VideoJPEG                      = Type=bool, Default="true", Value = "true"
  19.109 +VideoMPEG4                     = Type=bool, Default="true", Value = "true"
  19.110 +VideoVolumeDefault             = Type=int, Min=0.000000, Max=256.000000, Default="256", Value = "256"
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/resources/fonts/Arial-96pt_bold.fnt	Wed Jul 31 19:28:00 2013 +0200
    20.3 @@ -0,0 +1,285 @@
    20.4 +info face="Arial" size=96 bold=1 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
    20.5 +common lineHeight=96 base=77 scaleW=768 scaleH=768 pages=1 packed=0 alphaChnl=0 redChnl=4 greenChnl=4 blueChnl=4
    20.6 +page id=0 file="Arial-96pt_bold_0.png"
    20.7 +chars count=191
    20.8 +char id=32   x=739   y=140   width=3     height=1     xoffset=-1    yoffset=95    xadvance=23    page=0  chnl=15
    20.9 +char id=33   x=711   y=467   width=14    height=60    xoffset=6     yoffset=17    xadvance=26    page=0  chnl=15
   20.10 +char id=34   x=102   y=650   width=32    height=21    xoffset=4     yoffset=17    xadvance=39    page=0  chnl=15
   20.11 +char id=35   x=0     y=484   width=46    height=60    xoffset=0     yoffset=17    xadvance=46    page=0  chnl=15
   20.12 +char id=36   x=357   y=157   width=41    height=72    xoffset=2     yoffset=13    xadvance=46    page=0  chnl=15
   20.13 +char id=37   x=567   y=156   width=66    height=63    xoffset=3     yoffset=16    xadvance=73    page=0  chnl=15
   20.14 +char id=38   x=313   y=230   width=56    height=62    xoffset=3     yoffset=16    xadvance=60    page=0  chnl=15
   20.15 +char id=39   x=135   y=650   width=14    height=21    xoffset=3     yoffset=17    xadvance=20    page=0  chnl=15
   20.16 +char id=40   x=450   y=79    width=22    height=77    xoffset=4     yoffset=17    xadvance=28    page=0  chnl=15
   20.17 +char id=41   x=427   y=79    width=22    height=77    xoffset=2     yoffset=17    xadvance=28    page=0  chnl=15
   20.18 +char id=42   x=43    y=651   width=30    height=27    xoffset=1     yoffset=17    xadvance=32    page=0  chnl=15
   20.19 +char id=43   x=363   y=591   width=42    height=40    xoffset=3     yoffset=28    xadvance=48    page=0  chnl=15
   20.20 +char id=44   x=744   y=577   width=14    height=26    xoffset=4     yoffset=65    xadvance=23    page=0  chnl=15
   20.21 +char id=45   x=330   y=632   width=24    height=10    xoffset=4     yoffset=51    xadvance=28    page=0  chnl=15
   20.22 +char id=46   x=261   y=639   width=13    height=12    xoffset=5     yoffset=65    xadvance=23    page=0  chnl=15
   20.23 +char id=47   x=685   y=470   width=25    height=60    xoffset=-1    yoffset=17    xadvance=23    page=0  chnl=15
   20.24 +char id=48   x=297   y=359   width=40    height=61    xoffset=3     yoffset=17    xadvance=46    page=0  chnl=15
   20.25 +char id=49   x=740   y=343   width=27    height=60    xoffset=6     yoffset=17    xadvance=46    page=0  chnl=15
   20.26 +char id=50   x=319   y=483   width=42    height=60    xoffset=1     yoffset=17    xadvance=46    page=0  chnl=15
   20.27 +char id=51   x=130   y=361   width=41    height=61    xoffset=2     yoffset=17    xadvance=46    page=0  chnl=15
   20.28 +char id=52   x=0     y=545   width=44    height=59    xoffset=1     yoffset=18    xadvance=46    page=0  chnl=15
   20.29 +char id=53   x=617   y=471   width=41    height=60    xoffset=3     yoffset=18    xadvance=46    page=0  chnl=15
   20.30 +char id=54   x=172   y=360   width=41    height=61    xoffset=3     yoffset=17    xadvance=46    page=0  chnl=15
   20.31 +char id=55   x=87    y=545   width=40    height=59    xoffset=3     yoffset=18    xadvance=46    page=0  chnl=15
   20.32 +char id=56   x=256   y=360   width=40    height=61    xoffset=3     yoffset=17    xadvance=46    page=0  chnl=15
   20.33 +char id=57   x=214   y=360   width=41    height=61    xoffset=2     yoffset=17    xadvance=46    page=0  chnl=15
   20.34 +char id=58   x=748   y=528   width=13    height=44    xoffset=8     yoffset=33    xadvance=28    page=0  chnl=15
   20.35 +char id=59   x=158   y=545   width=14    height=58    xoffset=6     yoffset=33    xadvance=28    page=0  chnl=15
   20.36 +char id=60   x=663   y=531   width=42    height=45    xoffset=3     yoffset=25    xadvance=48    page=0  chnl=15
   20.37 +char id=61   x=0     y=651   width=42    height=28    xoffset=3     yoffset=33    xadvance=48    page=0  chnl=15
   20.38 +char id=62   x=620   y=532   width=42    height=45    xoffset=3     yoffset=25    xadvance=48    page=0  chnl=15
   20.39 +char id=63   x=691   y=283   width=44    height=61    xoffset=4     yoffset=16    xadvance=51    page=0  chnl=15
   20.40 +char id=64   x=0     y=0     width=79    height=80    xoffset=2     yoffset=16    xadvance=81    page=0  chnl=15
   20.41 +char id=65   x=621   y=348   width=59    height=60    xoffset=-1    yoffset=17    xadvance=57    page=0  chnl=15
   20.42 +char id=66   x=283   y=422   width=52    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.43 +char id=67   x=540   y=287   width=53    height=61    xoffset=3     yoffset=16    xadvance=60    page=0  chnl=15
   20.44 +char id=68   x=336   y=421   width=52    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.45 +char id=69   x=638   y=409   width=47    height=60    xoffset=5     yoffset=17    xadvance=55    page=0  chnl=15
   20.46 +char id=70   x=188   y=484   width=43    height=60    xoffset=5     yoffset=17    xadvance=51    page=0  chnl=15
   20.47 +char id=71   x=254   y=233   width=58    height=62    xoffset=3     yoffset=16    xadvance=65    page=0  chnl=15
   20.48 +char id=72   x=440   y=417   width=49    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.49 +char id=73   x=754   y=467   width=13    height=60    xoffset=5     yoffset=17    xadvance=23    page=0  chnl=15
   20.50 +char id=74   x=338   y=359   width=39    height=61    xoffset=1     yoffset=17    xadvance=46    page=0  chnl=15
   20.51 +char id=75   x=227   y=422   width=55    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.52 +char id=76   x=232   y=483   width=43    height=60    xoffset=6     yoffset=17    xadvance=51    page=0  chnl=15
   20.53 +char id=77   x=559   y=349   width=61    height=60    xoffset=5     yoffset=17    xadvance=71    page=0  chnl=15
   20.54 +char id=78   x=490   y=410   width=49    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.55 +char id=79   x=194   y=234   width=59    height=62    xoffset=3     yoffset=16    xadvance=65    page=0  chnl=15
   20.56 +char id=80   x=590   y=410   width=47    height=60    xoffset=5     yoffset=17    xadvance=55    page=0  chnl=15
   20.57 +char id=81   x=399   y=157   width=61    height=67    xoffset=3     yoffset=16    xadvance=65    page=0  chnl=15
   20.58 +char id=82   x=171   y=423   width=55    height=60    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.59 +char id=83   x=370   y=230   width=50    height=62    xoffset=2     yoffset=16    xadvance=55    page=0  chnl=15
   20.60 +char id=84   x=540   y=410   width=49    height=60    xoffset=2     yoffset=17    xadvance=52    page=0  chnl=15
   20.61 +char id=85   x=594   y=286   width=49    height=61    xoffset=5     yoffset=17    xadvance=60    page=0  chnl=15
   20.62 +char id=86   x=58    y=423   width=56    height=60    xoffset=-1    yoffset=17    xadvance=55    page=0  chnl=15
   20.63 +char id=87   x=478   y=349   width=80    height=60    xoffset=0     yoffset=17    xadvance=79    page=0  chnl=15
   20.64 +char id=88   x=115   y=423   width=55    height=60    xoffset=0     yoffset=17    xadvance=55    page=0  chnl=15
   20.65 +char id=89   x=0     y=423   width=57    height=60    xoffset=-1    yoffset=17    xadvance=56    page=0  chnl=15
   20.66 +char id=90   x=389   y=418   width=50    height=60    xoffset=0     yoffset=17    xadvance=51    page=0  chnl=15
   20.67 +char id=91   x=381   y=79    width=22    height=77    xoffset=5     yoffset=17    xadvance=28    page=0  chnl=15
   20.68 +char id=92   x=659   y=470   width=25    height=60    xoffset=-1    yoffset=17    xadvance=23    page=0  chnl=15
   20.69 +char id=93   x=404   y=79    width=22    height=77    xoffset=1     yoffset=17    xadvance=28    page=0  chnl=15
   20.70 +char id=94   x=526   y=579   width=40    height=32    xoffset=4     yoffset=17    xadvance=48    page=0  chnl=15
   20.71 +char id=95   x=355   y=632   width=49    height=7     xoffset=-2    yoffset=86    xadvance=46    page=0  chnl=15
   20.72 +char id=96   x=240   y=639   width=20    height=12    xoffset=1     yoffset=17    xadvance=28    page=0  chnl=15
   20.73 +char id=97   x=381   y=543   width=42    height=46    xoffset=2     yoffset=32    xadvance=46    page=0  chnl=15
   20.74 +char id=98   x=44    y=361   width=43    height=61    xoffset=5     yoffset=17    xadvance=51    page=0  chnl=15
   20.75 +char id=99   x=424   y=540   width=42    height=46    xoffset=3     yoffset=32    xadvance=46    page=0  chnl=15
   20.76 +char id=100  x=0     y=361   width=43    height=61    xoffset=3     yoffset=17    xadvance=51    page=0  chnl=15
   20.77 +char id=101  x=467   y=539   width=42    height=46    xoffset=2     yoffset=32    xadvance=46    page=0  chnl=15
   20.78 +char id=102  x=736   y=281   width=31    height=61    xoffset=0     yoffset=16    xadvance=28    page=0  chnl=15
   20.79 +char id=103  x=634   y=156   width=43    height=63    xoffset=3     yoffset=32    xadvance=51    page=0  chnl=15
   20.80 +char id=104  x=491   y=471   width=41    height=60    xoffset=5     yoffset=17    xadvance=51    page=0  chnl=15
   20.81 +char id=105  x=726   y=467   width=13    height=60    xoffset=5     yoffset=17    xadvance=23    page=0  chnl=15
   20.82 +char id=106  x=558   y=0     width=22    height=78    xoffset=-4    yoffset=17    xadvance=23    page=0  chnl=15
   20.83 +char id=107  x=533   y=471   width=41    height=60    xoffset=5     yoffset=17    xadvance=46    page=0  chnl=15
   20.84 +char id=108  x=740   y=467   width=13    height=60    xoffset=5     yoffset=17    xadvance=23    page=0  chnl=15
   20.85 +char id=109  x=553   y=532   width=66    height=45    xoffset=4     yoffset=32    xadvance=74    page=0  chnl=15
   20.86 +char id=110  x=0     y=605   width=41    height=45    xoffset=5     yoffset=32    xadvance=51    page=0  chnl=15
   20.87 +char id=111  x=334   y=544   width=46    height=46    xoffset=3     yoffset=32    xadvance=51    page=0  chnl=15
   20.88 +char id=112  x=0     y=298   width=44    height=62    xoffset=5     yoffset=32    xadvance=51    page=0  chnl=15
   20.89 +char id=113  x=45    y=298   width=43    height=62    xoffset=3     yoffset=32    xadvance=51    page=0  chnl=15
   20.90 +char id=114  x=42    y=605   width=29    height=45    xoffset=5     yoffset=32    xadvance=32    page=0  chnl=15
   20.91 +char id=115  x=510   y=532   width=42    height=46    xoffset=1     yoffset=32    xadvance=46    page=0  chnl=15
   20.92 +char id=116  x=734   y=406   width=27    height=60    xoffset=1     yoffset=18    xadvance=28    page=0  chnl=15
   20.93 +char id=117  x=706   y=531   width=41    height=45    xoffset=5     yoffset=33    xadvance=51    page=0  chnl=15
   20.94 +char id=118  x=140   y=605   width=47    height=44    xoffset=0     yoffset=33    xadvance=47    page=0  chnl=15
   20.95 +char id=119  x=72    y=605   width=67    height=44    xoffset=0     yoffset=33    xadvance=66    page=0  chnl=15
   20.96 +char id=120  x=188   y=600   width=46    height=44    xoffset=0     yoffset=33    xadvance=46    page=0  chnl=15
   20.97 +char id=121  x=699   y=218   width=44    height=62    xoffset=0     yoffset=33    xadvance=45    page=0  chnl=15
   20.98 +char id=122  x=235   y=594   width=40    height=44    xoffset=1     yoffset=33    xadvance=42    page=0  chnl=15
   20.99 +char id=123  x=125   y=0     width=29    height=79    xoffset=2     yoffset=16    xadvance=32    page=0  chnl=15
  20.100 +char id=124  x=593   y=0     width=11    height=78    xoffset=6     yoffset=17    xadvance=23    page=0  chnl=15
  20.101 +char id=125  x=155   y=0     width=29    height=79    xoffset=1     yoffset=16    xadvance=32    page=0  chnl=15
  20.102 +char id=126  x=150   y=650   width=44    height=16    xoffset=2     yoffset=40    xadvance=48    page=0  chnl=15
  20.103 +char id=160  x=739   y=142   width=3     height=1     xoffset=-1    yoffset=95    xadvance=23    page=0  chnl=15
  20.104 +char id=161  x=378   y=356   width=14    height=61    xoffset=7     yoffset=33    xadvance=28    page=0  chnl=15
  20.105 +char id=162  x=725   y=0     width=42    height=77    xoffset=3     yoffset=17    xadvance=46    page=0  chnl=15
  20.106 +char id=163  x=562   y=223   width=45    height=62    xoffset=0     yoffset=16    xadvance=46    page=0  chnl=15
  20.107 +char id=164  x=276   y=591   width=42    height=42    xoffset=2     yoffset=27    xadvance=46    page=0  chnl=15
  20.108 +char id=165  x=47    y=484   width=46    height=60    xoffset=0     yoffset=17    xadvance=46    page=0  chnl=15
  20.109 +char id=166  x=581   y=0     width=11    height=78    xoffset=6     yoffset=17    xadvance=23    page=0  chnl=15
  20.110 +char id=167  x=515   y=0     width=42    height=78    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.111 +char id=168  x=275   y=639   width=29    height=10    xoffset=-1    yoffset=17    xadvance=27    page=0  chnl=15
  20.112 +char id=169  x=130   y=234   width=63    height=62    xoffset=-1    yoffset=16    xadvance=61    page=0  chnl=15
  20.113 +char id=170  x=598   y=578   width=28    height=31    xoffset=1     yoffset=16    xadvance=31    page=0  chnl=15
  20.114 +char id=171  x=447   y=587   width=39    height=38    xoffset=3     yoffset=36    xadvance=46    page=0  chnl=15
  20.115 +char id=172  x=701   y=577   width=42    height=28    xoffset=3     yoffset=33    xadvance=48    page=0  chnl=15
  20.116 +char id=173  x=305   y=634   width=24    height=10    xoffset=4     yoffset=51    xadvance=28    page=0  chnl=15
  20.117 +char id=174  x=66    y=235   width=63    height=62    xoffset=-1    yoffset=16    xadvance=61    page=0  chnl=15
  20.118 +char id=175  x=405   y=632   width=49    height=7     xoffset=-2    yoffset=7     xadvance=46    page=0  chnl=15
  20.119 +char id=176  x=74    y=650   width=27    height=26    xoffset=3     yoffset=16    xadvance=33    page=0  chnl=15
  20.120 +char id=177  x=173   y=545   width=44    height=54    xoffset=1     yoffset=23    xadvance=46    page=0  chnl=15
  20.121 +char id=178  x=627   y=578   width=27    height=31    xoffset=0     yoffset=16    xadvance=28    page=0  chnl=15
  20.122 +char id=179  x=655   y=578   width=26    height=31    xoffset=1     yoffset=16    xadvance=28    page=0  chnl=15
  20.123 +char id=180  x=219   y=645   width=20    height=12    xoffset=7     yoffset=17    xadvance=28    page=0  chnl=15
  20.124 +char id=181  x=88    y=361   width=41    height=61    xoffset=4     yoffset=33    xadvance=48    page=0  chnl=15
  20.125 +char id=182  x=170   y=158   width=48    height=75    xoffset=-1    yoffset=17    xadvance=46    page=0  chnl=15
  20.126 +char id=183  x=747   y=202   width=13    height=12    xoffset=8     yoffset=42    xadvance=28    page=0  chnl=15
  20.127 +char id=184  x=195   y=645   width=23    height=15    xoffset=1     yoffset=77    xadvance=27    page=0  chnl=15
  20.128 +char id=185  x=682   y=577   width=18    height=31    xoffset=3     yoffset=16    xadvance=28    page=0  chnl=15
  20.129 +char id=186  x=567   y=578   width=30    height=31    xoffset=0     yoffset=16    xadvance=30    page=0  chnl=15
  20.130 +char id=187  x=487   y=586   width=38    height=38    xoffset=4     yoffset=36    xadvance=46    page=0  chnl=15
  20.131 +char id=188  x=473   y=287   width=66    height=61    xoffset=3     yoffset=17    xadvance=69    page=0  chnl=15
  20.132 +char id=189  x=0     y=235   width=65    height=62    xoffset=3     yoffset=16    xadvance=69    page=0  chnl=15
  20.133 +char id=190  x=678   y=155   width=68    height=62    xoffset=1     yoffset=16    xadvance=69    page=0  chnl=15
  20.134 +char id=191  x=608   y=220   width=45    height=62    xoffset=3     yoffset=33    xadvance=51    page=0  chnl=15
  20.135 +char id=192  x=0     y=81    width=59    height=77    xoffset=-1    yoffset=0     xadvance=60    page=0  chnl=15
  20.136 +char id=193  x=605   y=0     width=59    height=77    xoffset=-1    yoffset=0     xadvance=60    page=0  chnl=15
  20.137 +char id=194  x=665   y=0     width=59    height=77    xoffset=-1    yoffset=0     xadvance=60    page=0  chnl=15
  20.138 +char id=195  x=0     y=159   width=59    height=75    xoffset=-1    yoffset=2     xadvance=60    page=0  chnl=15
  20.139 +char id=196  x=60    y=159   width=59    height=75    xoffset=-1    yoffset=2     xadvance=60    page=0  chnl=15
  20.140 +char id=197  x=297   y=157   width=59    height=72    xoffset=-1    yoffset=5     xadvance=60    page=0  chnl=15
  20.141 +char id=198  x=393   y=356   width=84    height=60    xoffset=-4    yoffset=17    xadvance=83    page=0  chnl=15
  20.142 +char id=199  x=635   y=78    width=53    height=76    xoffset=3     yoffset=16    xadvance=60    page=0  chnl=15
  20.143 +char id=200  x=118   y=80    width=47    height=77    xoffset=5     yoffset=0     xadvance=55    page=0  chnl=15
  20.144 +char id=201  x=214   y=79    width=47    height=77    xoffset=5     yoffset=0     xadvance=55    page=0  chnl=15
  20.145 +char id=202  x=166   y=80    width=47    height=77    xoffset=5     yoffset=0     xadvance=55    page=0  chnl=15
  20.146 +char id=203  x=219   y=157   width=47    height=75    xoffset=5     yoffset=2     xadvance=55    page=0  chnl=15
  20.147 +char id=204  x=473   y=79    width=20    height=77    xoffset=-1    yoffset=0     xadvance=23    page=0  chnl=15
  20.148 +char id=205  x=494   y=79    width=20    height=77    xoffset=3     yoffset=0     xadvance=23    page=0  chnl=15
  20.149 +char id=206  x=352   y=79    width=28    height=77    xoffset=-2    yoffset=0     xadvance=23    page=0  chnl=15
  20.150 +char id=207  x=267   y=157   width=29    height=75    xoffset=-3    yoffset=2     xadvance=23    page=0  chnl=15
  20.151 +char id=208  x=681   y=345   width=58    height=60    xoffset=-1    yoffset=17    xadvance=60    page=0  chnl=15
  20.152 +char id=209  x=120   y=158   width=49    height=75    xoffset=5     yoffset=2     xadvance=60    page=0  chnl=15
  20.153 +char id=210  x=305   y=0     width=59    height=78    xoffset=3     yoffset=0     xadvance=65    page=0  chnl=15
  20.154 +char id=211  x=185   y=0     width=59    height=78    xoffset=3     yoffset=0     xadvance=65    page=0  chnl=15
  20.155 +char id=212  x=245   y=0     width=59    height=78    xoffset=3     yoffset=0     xadvance=65    page=0  chnl=15
  20.156 +char id=213  x=575   y=79    width=59    height=76    xoffset=3     yoffset=2     xadvance=65    page=0  chnl=15
  20.157 +char id=214  x=515   y=79    width=59    height=76    xoffset=3     yoffset=2     xadvance=65    page=0  chnl=15
  20.158 +char id=215  x=406   y=590   width=40    height=39    xoffset=4     yoffset=28    xadvance=48    page=0  chnl=15
  20.159 +char id=216  x=461   y=157   width=62    height=66    xoffset=2     yoffset=14    xadvance=65    page=0  chnl=15
  20.160 +char id=217  x=415   y=0     width=49    height=78    xoffset=5     yoffset=0     xadvance=60    page=0  chnl=15
  20.161 +char id=218  x=465   y=0     width=49    height=78    xoffset=5     yoffset=0     xadvance=60    page=0  chnl=15
  20.162 +char id=219  x=365   y=0     width=49    height=78    xoffset=5     yoffset=0     xadvance=60    page=0  chnl=15
  20.163 +char id=220  x=689   y=78    width=49    height=76    xoffset=5     yoffset=2     xadvance=60    page=0  chnl=15
  20.164 +char id=221  x=60    y=81    width=57    height=77    xoffset=-1    yoffset=0     xadvance=55    page=0  chnl=15
  20.165 +char id=222  x=686   y=406   width=47    height=60    xoffset=5     yoffset=17    xadvance=55    page=0  chnl=15
  20.166 +char id=223  x=654   y=220   width=44    height=62    xoffset=5     yoffset=16    xadvance=51    page=0  chnl=15
  20.167 +char id=224  x=261   y=296   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.168 +char id=225  x=304   y=296   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.169 +char id=226  x=89    y=298   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.170 +char id=227  x=362   y=482   width=42    height=60    xoffset=2     yoffset=18    xadvance=46    page=0  chnl=15
  20.171 +char id=228  x=405   y=479   width=42    height=60    xoffset=2     yoffset=18    xadvance=46    page=0  chnl=15
  20.172 +char id=229  x=524   y=156   width=42    height=66    xoffset=2     yoffset=12    xadvance=46    page=0  chnl=15
  20.173 +char id=230  x=265   y=544   width=68    height=46    xoffset=3     yoffset=32    xadvance=74    page=0  chnl=15
  20.174 +char id=231  x=276   y=483   width=42    height=60    xoffset=3     yoffset=32    xadvance=46    page=0  chnl=15
  20.175 +char id=232  x=218   y=297   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.176 +char id=233  x=132   y=297   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.177 +char id=234  x=175   y=297   width=42    height=62    xoffset=2     yoffset=16    xadvance=46    page=0  chnl=15
  20.178 +char id=235  x=448   y=478   width=42    height=60    xoffset=2     yoffset=18    xadvance=46    page=0  chnl=15
  20.179 +char id=236  x=747   y=140   width=20    height=61    xoffset=-2    yoffset=16    xadvance=23    page=0  chnl=15
  20.180 +char id=237  x=744   y=218   width=20    height=61    xoffset=4     yoffset=16    xadvance=23    page=0  chnl=15
  20.181 +char id=238  x=739   y=78    width=28    height=61    xoffset=-2    yoffset=16    xadvance=23    page=0  chnl=15
  20.182 +char id=239  x=128   y=545   width=29    height=59    xoffset=-3    yoffset=18    xadvance=23    page=0  chnl=15
  20.183 +char id=240  x=644   y=283   width=46    height=61    xoffset=3     yoffset=17    xadvance=51    page=0  chnl=15
  20.184 +char id=241  x=45    y=545   width=41    height=59    xoffset=5     yoffset=18    xadvance=51    page=0  chnl=15
  20.185 +char id=242  x=421   y=225   width=46    height=62    xoffset=3     yoffset=16    xadvance=51    page=0  chnl=15
  20.186 +char id=243  x=515   y=224   width=46    height=62    xoffset=3     yoffset=16    xadvance=51    page=0  chnl=15
  20.187 +char id=244  x=468   y=224   width=46    height=62    xoffset=3     yoffset=16    xadvance=51    page=0  chnl=15
  20.188 +char id=245  x=94    y=484   width=46    height=60    xoffset=3     yoffset=18    xadvance=51    page=0  chnl=15
  20.189 +char id=246  x=141   y=484   width=46    height=60    xoffset=3     yoffset=18    xadvance=51    page=0  chnl=15
  20.190 +char id=247  x=319   y=591   width=43    height=40    xoffset=1     yoffset=29    xadvance=46    page=0  chnl=15
  20.191 +char id=248  x=218   y=545   width=46    height=48    xoffset=3     yoffset=31    xadvance=51    page=0  chnl=15
  20.192 +char id=249  x=431   y=288   width=41    height=62    xoffset=5     yoffset=16    xadvance=51    page=0  chnl=15
  20.193 +char id=250  x=389   y=293   width=41    height=62    xoffset=5     yoffset=16    xadvance=51    page=0  chnl=15
  20.194 +char id=251  x=347   y=293   width=41    height=62    xoffset=5     yoffset=16    xadvance=51    page=0  chnl=15
  20.195 +char id=252  x=575   y=471   width=41    height=60    xoffset=5     yoffset=18    xadvance=51    page=0  chnl=15
  20.196 +char id=253  x=80    y=0     width=44    height=79    xoffset=0     yoffset=16    xadvance=46    page=0  chnl=15
  20.197 +char id=254  x=262   y=79    width=44    height=77    xoffset=5     yoffset=17    xadvance=51    page=0  chnl=15
  20.198 +char id=255  x=307   y=79    width=44    height=77    xoffset=0     yoffset=18    xadvance=46    page=0  chnl=15
  20.199 +kernings count=89
  20.200 +kerning first=32  second=65  amount=-3  
  20.201 +kerning first=32  second=89  amount=-2  
  20.202 +kerning first=121 second=46  amount=-6  
  20.203 +kerning first=121 second=44  amount=-6  
  20.204 +kerning first=119 second=46  amount=-3  
  20.205 +kerning first=119 second=44  amount=-3  
  20.206 +kerning first=118 second=46  amount=-6  
  20.207 +kerning first=118 second=44  amount=-6  
  20.208 +kerning first=49  second=49  amount=-5  
  20.209 +kerning first=65  second=32  amount=-3  
  20.210 +kerning first=65  second=84  amount=-6  
  20.211 +kerning first=65  second=86  amount=-6  
  20.212 +kerning first=65  second=87  amount=-5  
  20.213 +kerning first=65  second=89  amount=-8  
  20.214 +kerning first=65  second=118 amount=-3  
  20.215 +kerning first=65  second=119 amount=-2  
  20.216 +kerning first=65  second=121 amount=-3  
  20.217 +kerning first=114 second=46  amount=-5  
  20.218 +kerning first=70  second=44  amount=-10 
  20.219 +kerning first=70  second=46  amount=-10 
  20.220 +kerning first=70  second=65  amount=-5  
  20.221 +kerning first=76  second=32  amount=-2  
  20.222 +kerning first=76  second=84  amount=-6  
  20.223 +kerning first=76  second=86  amount=-6  
  20.224 +kerning first=76  second=87  amount=-5  
  20.225 +kerning first=76  second=89  amount=-8  
  20.226 +kerning first=76  second=121 amount=-3  
  20.227 +kerning first=114 second=44  amount=-5  
  20.228 +kerning first=80  second=32  amount=-2  
  20.229 +kerning first=80  second=44  amount=-11 
  20.230 +kerning first=80  second=46  amount=-11 
  20.231 +kerning first=80  second=65  amount=-6  
  20.232 +kerning first=82  second=86  amount=-2  
  20.233 +kerning first=82  second=87  amount=-2  
  20.234 +kerning first=82  second=89  amount=-3  
  20.235 +kerning first=84  second=44  amount=-10 
  20.236 +kerning first=84  second=45  amount=-5  
  20.237 +kerning first=84  second=46  amount=-10 
  20.238 +kerning first=84  second=58  amount=-10 
  20.239 +kerning first=89  second=118 amount=-5  
  20.240 +kerning first=84  second=65  amount=-6  
  20.241 +kerning first=84  second=79  amount=-2  
  20.242 +kerning first=84  second=97  amount=-6  
  20.243 +kerning first=84  second=99  amount=-6  
  20.244 +kerning first=84  second=101 amount=-6  
  20.245 +kerning first=84  second=105 amount=-2  
  20.246 +kerning first=84  second=111 amount=-6  
  20.247 +kerning first=84  second=114 amount=-5  
  20.248 +kerning first=84  second=115 amount=-6  
  20.249 +kerning first=84  second=117 amount=-6  
  20.250 +kerning first=84  second=119 amount=-6  
  20.251 +kerning first=84  second=121 amount=-6  
  20.252 +kerning first=86  second=44  amount=-8  
  20.253 +kerning first=86  second=45  amount=-5  
  20.254 +kerning first=86  second=46  amount=-8  
  20.255 +kerning first=86  second=58  amount=-5  
  20.256 +kerning first=89  second=117 amount=-5  
  20.257 +kerning first=86  second=65  amount=-6  
  20.258 +kerning first=86  second=97  amount=-5  
  20.259 +kerning first=86  second=101 amount=-5  
  20.260 +kerning first=86  second=105 amount=-2  
  20.261 +kerning first=86  second=111 amount=-6  
  20.262 +kerning first=86  second=114 amount=-5  
  20.263 +kerning first=86  second=117 amount=-3  
  20.264 +kerning first=86  second=121 amount=-3  
  20.265 +kerning first=87  second=44  amount=-5  
  20.266 +kerning first=87  second=45  amount=-2  
  20.267 +kerning first=87  second=46  amount=-5  
  20.268 +kerning first=87  second=58  amount=-2  
  20.269 +kerning first=89  second=113 amount=-6  
  20.270 +kerning first=87  second=65  amount=-5  
  20.271 +kerning first=87  second=97  amount=-3  
  20.272 +kerning first=87  second=101 amount=-2  
  20.273 +kerning first=87  second=105 amount=-1  
  20.274 +kerning first=87  second=111 amount=-2  
  20.275 +kerning first=87  second=114 amount=-2  
  20.276 +kerning first=87  second=117 amount=-2  
  20.277 +kerning first=87  second=121 amount=-2  
  20.278 +kerning first=89  second=32  amount=-2  
  20.279 +kerning first=89  second=44  amount=-10 
  20.280 +kerning first=89  second=45  amount=-5  
  20.281 +kerning first=89  second=46  amount=-10 
  20.282 +kerning first=89  second=58  amount=-6  
  20.283 +kerning first=89  second=112 amount=-5  
  20.284 +kerning first=89  second=65  amount=-8  
  20.285 +kerning first=89  second=97  amount=-5  
  20.286 +kerning first=89  second=101 amount=-5  
  20.287 +kerning first=89  second=105 amount=-3  
  20.288 +kerning first=89  second=111 amount=-6  
    21.1 Binary file resources/fonts/Arial-96pt_bold_0.png has changed
    22.1 Binary file resources/fonts/Arial-96pt_bold_1.png has changed
    23.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    23.2 +++ b/resources/fonts/SegoeUI-64pt_smbld.fnt	Wed Jul 31 19:28:00 2013 +0200
    23.3 @@ -0,0 +1,1081 @@
    23.4 +info face="Segoe UI Semibold" size=64 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
    23.5 +common lineHeight=62 base=50 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=3 greenChnl=3 blueChnl=3
    23.6 +page id=0 file="SegoeUI-64pt_smbld_0.png"
    23.7 +chars count=192
    23.8 +char id=13   x=81    y=45    width=3     height=1     xoffset=-1    yoffset=61    xadvance=4     page=0  chnl=15
    23.9 +char id=32   x=506   y=36    width=3     height=1     xoffset=-1    yoffset=61    xadvance=13    page=0  chnl=15
   23.10 +char id=33   x=299   y=227   width=8     height=33    xoffset=3     yoffset=17    xadvance=14    page=0  chnl=15
   23.11 +char id=34   x=217   y=288   width=15    height=10    xoffset=3     yoffset=17    xadvance=21    page=0  chnl=15
   23.12 +char id=35   x=353   y=227   width=27    height=30    xoffset=0     yoffset=17    xadvance=28    page=0  chnl=15
   23.13 +char id=36   x=151   y=45    width=21    height=42    xoffset=3     yoffset=13    xadvance=26    page=0  chnl=15
   23.14 +char id=37   x=82    y=163   width=37    height=33    xoffset=1     yoffset=17    xadvance=40    page=0  chnl=15
   23.15 +char id=38   x=227   y=159   width=32    height=33    xoffset=2     yoffset=17    xadvance=34    page=0  chnl=15
   23.16 +char id=39   x=505   y=83    width=6     height=10    xoffset=3     yoffset=17    xadvance=12    page=0  chnl=15
   23.17 +char id=40   x=383   y=45    width=13    height=40    xoffset=3     yoffset=17    xadvance=16    page=0  chnl=15
   23.18 +char id=41   x=341   y=45    width=13    height=40    xoffset=0     yoffset=17    xadvance=16    page=0  chnl=15
   23.19 +char id=42   x=60    y=294   width=18    height=17    xoffset=1     yoffset=17    xadvance=20    page=0  chnl=15
   23.20 +char id=43   x=404   y=255   width=23    height=22    xoffset=5     yoffset=26    xadvance=33    page=0  chnl=15
   23.21 +char id=44   x=207   y=288   width=9     height=11    xoffset=0     yoffset=45    xadvance=11    page=0  chnl=15
   23.22 +char id=45   x=347   y=284   width=14    height=4     xoffset=3     yoffset=35    xadvance=19    page=0  chnl=15
   23.23 +char id=46   x=295   y=286   width=9     height=6     xoffset=1     yoffset=44    xadvance=11    page=0  chnl=15
   23.24 +char id=47   x=444   y=45    width=21    height=38    xoffset=-1    yoffset=17    xadvance=19    page=0  chnl=15
   23.25 +char id=48   x=248   y=193   width=24    height=33    xoffset=1     yoffset=17    xadvance=26    page=0  chnl=15
   23.26 +char id=49   x=284   y=227   width=14    height=33    xoffset=1     yoffset=17    xadvance=19    page=0  chnl=15
   23.27 +char id=50   x=24    y=235   width=23    height=33    xoffset=1     yoffset=17    xadvance=26    page=0  chnl=15
   23.28 +char id=51   x=140   y=229   width=21    height=33    xoffset=2     yoffset=17    xadvance=26    page=0  chnl=15
   23.29 +char id=52   x=140   y=195   width=27    height=33    xoffset=0     yoffset=17    xadvance=27    page=0  chnl=15
   23.30 +char id=53   x=118   y=231   width=21    height=33    xoffset=3     yoffset=17    xadvance=26    page=0  chnl=15
   23.31 +char id=54   x=48    y=235   width=23    height=33    xoffset=2     yoffset=17    xadvance=26    page=0  chnl=15
   23.32 +char id=55   x=420   y=191   width=23    height=33    xoffset=1     yoffset=17    xadvance=25    page=0  chnl=15
   23.33 +char id=56   x=323   y=193   width=24    height=33    xoffset=1     yoffset=17    xadvance=26    page=0  chnl=15
   23.34 +char id=57   x=298   y=193   width=24    height=33    xoffset=1     yoffset=17    xadvance=26    page=0  chnl=15
   23.35 +char id=58   x=348   y=259   width=9     height=24    xoffset=1     yoffset=26    xadvance=11    page=0  chnl=15
   23.36 +char id=59   x=343   y=227   width=9     height=31    xoffset=0     yoffset=26    xadvance=11    page=0  chnl=15
   23.37 +char id=60   x=381   y=255   width=22    height=23    xoffset=5     yoffset=25    xadvance=33    page=0  chnl=15
   23.38 +char id=61   x=144   y=290   width=23    height=14    xoffset=5     yoffset=30    xadvance=33    page=0  chnl=15
   23.39 +char id=62   x=358   y=258   width=22    height=23    xoffset=5     yoffset=25    xadvance=33    page=0  chnl=15
   23.40 +char id=63   x=492   y=188   width=19    height=33    xoffset=1     yoffset=17    xadvance=21    page=0  chnl=15
   23.41 +char id=64   x=466   y=45    width=39    height=37    xoffset=3     yoffset=17    xadvance=45    page=0  chnl=15
   23.42 +char id=65   x=260   y=159   width=32    height=33    xoffset=0     yoffset=17    xadvance=32    page=0  chnl=15
   23.43 +char id=66   x=273   y=193   width=24    height=33    xoffset=3     yoffset=17    xadvance=28    page=0  chnl=15
   23.44 +char id=67   x=112   y=197   width=27    height=33    xoffset=1     yoffset=17    xadvance=29    page=0  chnl=15
   23.45 +char id=68   x=386   y=157   width=30    height=33    xoffset=3     yoffset=17    xadvance=34    page=0  chnl=15
   23.46 +char id=69   x=246   y=229   width=20    height=33    xoffset=3     yoffset=17    xadvance=24    page=0  chnl=15
   23.47 +char id=70   x=225   y=229   width=20    height=33    xoffset=3     yoffset=17    xadvance=24    page=0  chnl=15
   23.48 +char id=71   x=355   y=158   width=30    height=33    xoffset=1     yoffset=17    xadvance=33    page=0  chnl=15
   23.49 +char id=72   x=447   y=157   width=29    height=33    xoffset=3     yoffset=17    xadvance=35    page=0  chnl=15
   23.50 +char id=73   x=317   y=227   width=7     height=33    xoffset=3     yoffset=17    xadvance=14    page=0  chnl=15
   23.51 +char id=74   x=267   y=227   width=16    height=33    xoffset=0     yoffset=17    xadvance=19    page=0  chnl=15
   23.52 +char id=75   x=84    y=197   width=27    height=33    xoffset=3     yoffset=17    xadvance=29    page=0  chnl=15
   23.53 +char id=76   x=204   y=229   width=20    height=33    xoffset=3     yoffset=17    xadvance=23    page=0  chnl=15
   23.54 +char id=77   x=120   y=161   width=37    height=33    xoffset=3     yoffset=17    xadvance=43    page=0  chnl=15
   23.55 +char id=78   x=293   y=159   width=30    height=33    xoffset=3     yoffset=17    xadvance=36    page=0  chnl=15
   23.56 +char id=79   x=158   y=161   width=34    height=33    xoffset=1     yoffset=17    xadvance=36    page=0  chnl=15
   23.57 +char id=80   x=348   y=193   width=23    height=33    xoffset=3     yoffset=17    xadvance=27    page=0  chnl=15
   23.58 +char id=81   x=0     y=93    width=37    height=37    xoffset=1     yoffset=17    xadvance=36    page=0  chnl=15
   23.59 +char id=82   x=56    y=201   width=27    height=33    xoffset=3     yoffset=17    xadvance=29    page=0  chnl=15
   23.60 +char id=83   x=396   y=191   width=23    height=33    xoffset=2     yoffset=17    xadvance=26    page=0  chnl=15
   23.61 +char id=84   x=168   y=195   width=26    height=33    xoffset=0     yoffset=17    xadvance=26    page=0  chnl=15
   23.62 +char id=85   x=28    y=201   width=27    height=33    xoffset=3     yoffset=17    xadvance=33    page=0  chnl=15
   23.63 +char id=86   x=324   y=159   width=30    height=33    xoffset=0     yoffset=17    xadvance=30    page=0  chnl=15
   23.64 +char id=87   x=363   y=123   width=45    height=33    xoffset=0     yoffset=17    xadvance=45    page=0  chnl=15
   23.65 +char id=88   x=417   y=157   width=29    height=33    xoffset=0     yoffset=17    xadvance=29    page=0  chnl=15
   23.66 +char id=89   x=0     y=201   width=27    height=33    xoffset=0     yoffset=17    xadvance=27    page=0  chnl=15
   23.67 +char id=90   x=477   y=154   width=28    height=33    xoffset=0     yoffset=17    xadvance=28    page=0  chnl=15
   23.68 +char id=91   x=397   y=45    width=11    height=40    xoffset=4     yoffset=17    xadvance=16    page=0  chnl=15
   23.69 +char id=92   x=421   y=45    width=22    height=39    xoffset=-1    yoffset=17    xadvance=19    page=0  chnl=15
   23.70 +char id=93   x=409   y=45    width=11    height=40    xoffset=1     yoffset=17    xadvance=16    page=0  chnl=15
   23.71 +char id=94   x=15    y=294   width=24    height=19    xoffset=4     yoffset=17    xadvance=33    page=0  chnl=15
   23.72 +char id=95   x=384   y=279   width=21    height=3     xoffset=-1    yoffset=54    xadvance=20    page=0  chnl=15
   23.73 +char id=96   x=283   y=286   width=11    height=8     xoffset=2     yoffset=14    xadvance=14    page=0  chnl=15
   23.74 +char id=97   x=201   y=263   width=22    height=24    xoffset=1     yoffset=26    xadvance=25    page=0  chnl=15
   23.75 +char id=98   x=0     y=131   width=24    height=35    xoffset=3     yoffset=15    xadvance=28    page=0  chnl=15
   23.76 +char id=99   x=293   y=261   width=20    height=24    xoffset=1     yoffset=26    xadvance=22    page=0  chnl=15
   23.77 +char id=100  x=50    y=129   width=24    height=35    xoffset=1     yoffset=15    xadvance=28    page=0  chnl=15
   23.78 +char id=101  x=177   y=263   width=23    height=24    xoffset=1     yoffset=26    xadvance=25    page=0  chnl=15
   23.79 +char id=102  x=195   y=124   width=17    height=35    xoffset=0     yoffset=15    xadvance=16    page=0  chnl=15
   23.80 +char id=103  x=25    y=131   width=24    height=35    xoffset=1     yoffset=26    xadvance=28    page=0  chnl=15
   23.81 +char id=104  x=172   y=125   width=22    height=35    xoffset=3     yoffset=15    xadvance=27    page=0  chnl=15
   23.82 +char id=105  x=503   y=0     width=8     height=35    xoffset=2     yoffset=15    xadvance=12    page=0  chnl=15
   23.83 +char id=106  x=65    y=0     width=15    height=46    xoffset=-5    yoffset=15    xadvance=12    page=0  chnl=15
   23.84 +char id=107  x=149   y=125   width=22    height=35    xoffset=3     yoffset=15    xadvance=25    page=0  chnl=15
   23.85 +char id=108  x=498   y=83    width=6     height=35    xoffset=3     yoffset=15    xadvance=12    page=0  chnl=15
   23.86 +char id=109  x=465   y=225   width=37    height=24    xoffset=3     yoffset=26    xadvance=42    page=0  chnl=15
   23.87 +char id=110  x=247   y=263   width=22    height=24    xoffset=3     yoffset=26    xadvance=27    page=0  chnl=15
   23.88 +char id=111  x=75    y=269   width=26    height=24    xoffset=1     yoffset=26    xadvance=28    page=0  chnl=15
   23.89 +char id=112  x=100   y=125   width=24    height=35    xoffset=3     yoffset=26    xadvance=28    page=0  chnl=15
   23.90 +char id=113  x=75    y=127   width=24    height=35    xoffset=1     yoffset=26    xadvance=28    page=0  chnl=15
   23.91 +char id=114  x=333   y=259   width=14    height=24    xoffset=3     yoffset=26    xadvance=17    page=0  chnl=15
   23.92 +char id=115  x=314   y=261   width=18    height=24    xoffset=1     yoffset=26    xadvance=20    page=0  chnl=15
   23.93 +char id=116  x=325   y=227   width=17    height=31    xoffset=0     yoffset=19    xadvance=17    page=0  chnl=15
   23.94 +char id=117  x=270   y=261   width=22    height=24    xoffset=2     yoffset=26    xadvance=27    page=0  chnl=15
   23.95 +char id=118  x=152   y=263   width=24    height=24    xoffset=0     yoffset=26    xadvance=24    page=0  chnl=15
   23.96 +char id=119  x=38    y=269   width=36    height=24    xoffset=0     yoffset=26    xadvance=36    page=0  chnl=15
   23.97 +char id=120  x=127   y=265   width=24    height=24    xoffset=0     yoffset=26    xadvance=24    page=0  chnl=15
   23.98 +char id=121  x=472   y=83    width=25    height=35    xoffset=0     yoffset=26    xadvance=24    page=0  chnl=15
   23.99 +char id=122  x=224   y=263   width=22    height=24    xoffset=0     yoffset=26    xadvance=22    page=0  chnl=15
  23.100 +char id=123  x=355   y=45    width=13    height=40    xoffset=2     yoffset=17    xadvance=16    page=0  chnl=15
  23.101 +char id=124  x=33    y=0     width=6     height=47    xoffset=4     yoffset=14    xadvance=13    page=0  chnl=15
  23.102 +char id=125  x=369   y=45    width=13    height=40    xoffset=1     yoffset=17    xadvance=16    page=0  chnl=15
  23.103 +char id=126  x=244   y=288   width=25    height=8     xoffset=4     yoffset=33    xadvance=33    page=0  chnl=15
  23.104 +char id=160  x=506   y=38    width=3     height=1     xoffset=-1    yoffset=61    xadvance=13    page=0  chnl=15
  23.105 +char id=161  x=308   y=227   width=8     height=33    xoffset=3     yoffset=26    xadvance=14    page=0  chnl=15
  23.106 +char id=162  x=162   y=229   width=20    height=33    xoffset=3     yoffset=18    xadvance=26    page=0  chnl=15
  23.107 +char id=163  x=444   y=191   width=23    height=33    xoffset=2     yoffset=17    xadvance=26    page=0  chnl=15
  23.108 +char id=164  x=102   y=265   width=24    height=24    xoffset=1     yoffset=22    xadvance=26    page=0  chnl=15
  23.109 +char id=165  x=222   y=195   width=25    height=33    xoffset=1     yoffset=17    xadvance=26    page=0  chnl=15
  23.110 +char id=166  x=26    y=0     width=6     height=47    xoffset=4     yoffset=14    xadvance=13    page=0  chnl=15
  23.111 +char id=167  x=352   y=86    width=18    height=36    xoffset=2     yoffset=16    xadvance=22    page=0  chnl=15
  23.112 +char id=168  x=315   y=286   width=16    height=5     xoffset=2     yoffset=17    xadvance=20    page=0  chnl=15
  23.113 +char id=169  x=213   y=124   width=36    height=34    xoffset=3     yoffset=17    xadvance=42    page=0  chnl=15
  23.114 +char id=170  x=79    y=294   width=16    height=17    xoffset=1     yoffset=17    xadvance=19    page=0  chnl=15
  23.115 +char id=171  x=96    y=294   width=23    height=16    xoffset=1     yoffset=30    xadvance=25    page=0  chnl=15
  23.116 +char id=172  x=168   y=288   width=23    height=13    xoffset=5     yoffset=31    xadvance=33    page=0  chnl=15
  23.117 +char id=173  x=332   y=286   width=14    height=4     xoffset=3     yoffset=35    xadvance=19    page=0  chnl=15
  23.118 +char id=174  x=405   y=225   width=30    height=27    xoffset=6     yoffset=17    xadvance=42    page=0  chnl=15
  23.119 +char id=175  x=362   y=282   width=21    height=3     xoffset=-1    yoffset=15    xadvance=20    page=0  chnl=15
  23.120 +char id=176  x=192   y=288   width=14    height=13    xoffset=2     yoffset=17    xadvance=18    page=0  chnl=15
  23.121 +char id=177  x=381   y=226   width=23    height=28    xoffset=5     yoffset=22    xadvance=33    page=0  chnl=15
  23.122 +char id=178  x=475   y=250   width=15    height=20    xoffset=2     yoffset=10    xadvance=18    page=0  chnl=15
  23.123 +char id=179  x=0     y=294   width=14    height=20    xoffset=2     yoffset=10    xadvance=18    page=0  chnl=15
  23.124 +char id=180  x=270   y=286   width=12    height=8     xoffset=2     yoffset=14    xadvance=14    page=0  chnl=15
  23.125 +char id=181  x=468   y=191   width=23    height=33    xoffset=3     yoffset=26    xadvance=28    page=0  chnl=15
  23.126 +char id=182  x=183   y=229   width=20    height=33    xoffset=1     yoffset=17    xadvance=23    page=0  chnl=15
  23.127 +char id=183  x=305   y=286   width=9     height=6     xoffset=1     yoffset=32    xadvance=11    page=0  chnl=15
  23.128 +char id=184  x=233   y=288   width=10    height=10    xoffset=0     yoffset=50    xadvance=10    page=0  chnl=15
  23.129 +char id=185  x=491   y=250   width=14    height=20    xoffset=2     yoffset=10    xadvance=17    page=0  chnl=15
  23.130 +char id=186  x=40    y=294   width=19    height=17    xoffset=1     yoffset=17    xadvance=21    page=0  chnl=15
  23.131 +char id=187  x=120   y=290   width=23    height=16    xoffset=1     yoffset=30    xadvance=25    page=0  chnl=15
  23.132 +char id=188  x=41    y=167   width=40    height=33    xoffset=2     yoffset=17    xadvance=44    page=0  chnl=15
  23.133 +char id=189  x=0     y=167   width=40    height=33    xoffset=2     yoffset=17    xadvance=44    page=0  chnl=15
  23.134 +char id=190  x=409   y=123   width=41    height=33    xoffset=2     yoffset=17    xadvance=45    page=0  chnl=15
  23.135 +char id=191  x=344   y=123   width=18    height=34    xoffset=2     yoffset=26    xadvance=21    page=0  chnl=15
  23.136 +char id=192  x=252   y=0     width=32    height=44    xoffset=0     yoffset=6     xadvance=32    page=0  chnl=15
  23.137 +char id=193  x=186   y=0     width=32    height=44    xoffset=0     yoffset=6     xadvance=32    page=0  chnl=15
  23.138 +char id=194  x=219   y=0     width=32    height=44    xoffset=0     yoffset=6     xadvance=32    page=0  chnl=15
  23.139 +char id=195  x=87    y=45    width=32    height=42    xoffset=0     yoffset=8     xadvance=32    page=0  chnl=15
  23.140 +char id=196  x=208   y=45    width=32    height=41    xoffset=0     yoffset=9     xadvance=32    page=0  chnl=15
  23.141 +char id=197  x=308   y=45    width=32    height=40    xoffset=0     yoffset=10    xadvance=32    page=0  chnl=15
  23.142 +char id=198  x=451   y=120   width=41    height=33    xoffset=0     yoffset=17    xadvance=42    page=0  chnl=15
  23.143 +char id=199  x=24    y=48    width=27    height=43    xoffset=1     yoffset=17    xadvance=29    page=0  chnl=15
  23.144 +char id=200  x=423   y=0     width=20    height=44    xoffset=3     yoffset=6     xadvance=24    page=0  chnl=15
  23.145 +char id=201  x=465   y=0     width=20    height=44    xoffset=3     yoffset=6     xadvance=24    page=0  chnl=15
  23.146 +char id=202  x=444   y=0     width=20    height=44    xoffset=3     yoffset=6     xadvance=24    page=0  chnl=15
  23.147 +char id=203  x=269   y=45    width=20    height=41    xoffset=3     yoffset=9     xadvance=24    page=0  chnl=15
  23.148 +char id=204  x=0     y=48    width=11    height=44    xoffset=1     yoffset=6     xadvance=14    page=0  chnl=15
  23.149 +char id=205  x=12    y=48    width=11    height=44    xoffset=3     yoffset=6     xadvance=14    page=0  chnl=15
  23.150 +char id=206  x=486   y=0     width=16    height=44    xoffset=-1    yoffset=6     xadvance=14    page=0  chnl=15
  23.151 +char id=207  x=290   y=45    width=17    height=41    xoffset=-1    yoffset=9     xadvance=14    page=0  chnl=15
  23.152 +char id=208  x=193   y=161   width=33    height=33    xoffset=0     yoffset=17    xadvance=34    page=0  chnl=15
  23.153 +char id=209  x=120   y=45    width=30    height=42    xoffset=3     yoffset=8     xadvance=36    page=0  chnl=15
  23.154 +char id=210  x=116   y=0     width=34    height=44    xoffset=1     yoffset=6     xadvance=36    page=0  chnl=15
  23.155 +char id=211  x=81    y=0     width=34    height=44    xoffset=1     yoffset=6     xadvance=36    page=0  chnl=15
  23.156 +char id=212  x=151   y=0     width=34    height=44    xoffset=1     yoffset=6     xadvance=36    page=0  chnl=15
  23.157 +char id=213  x=52    y=47    width=34    height=42    xoffset=1     yoffset=8     xadvance=36    page=0  chnl=15
  23.158 +char id=214  x=173   y=45    width=34    height=41    xoffset=1     yoffset=9     xadvance=36    page=0  chnl=15
  23.159 +char id=215  x=452   y=253   width=22    height=21    xoffset=5     yoffset=26    xadvance=33    page=0  chnl=15
  23.160 +char id=216  x=411   y=86    width=34    height=35    xoffset=1     yoffset=16    xadvance=36    page=0  chnl=15
  23.161 +char id=217  x=285   y=0     width=27    height=44    xoffset=3     yoffset=6     xadvance=33    page=0  chnl=15
  23.162 +char id=218  x=369   y=0     width=27    height=44    xoffset=3     yoffset=6     xadvance=33    page=0  chnl=15
  23.163 +char id=219  x=341   y=0     width=27    height=44    xoffset=3     yoffset=6     xadvance=33    page=0  chnl=15
  23.164 +char id=220  x=241   y=45    width=27    height=41    xoffset=3     yoffset=9     xadvance=33    page=0  chnl=15
  23.165 +char id=221  x=313   y=0     width=27    height=44    xoffset=0     yoffset=6     xadvance=27    page=0  chnl=15
  23.166 +char id=222  x=0     y=235   width=23    height=33    xoffset=3     yoffset=17    xadvance=27    page=0  chnl=15
  23.167 +char id=223  x=125   y=125   width=23    height=35    xoffset=3     yoffset=15    xadvance=27    page=0  chnl=15
  23.168 +char id=224  x=237   y=87    width=22    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.169 +char id=225  x=214   y=87    width=22    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.170 +char id=226  x=191   y=87    width=22    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.171 +char id=227  x=277   y=124   width=22    height=34    xoffset=1     yoffset=16    xadvance=25    page=0  chnl=15
  23.172 +char id=228  x=95    y=231   width=22    height=33    xoffset=1     yoffset=17    xadvance=25    page=0  chnl=15
  23.173 +char id=229  x=260   y=87    width=22    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.174 +char id=230  x=0     y=269   width=37    height=24    xoffset=1     yoffset=26    xadvance=39    page=0  chnl=15
  23.175 +char id=231  x=323   y=124   width=20    height=34    xoffset=1     yoffset=26    xadvance=22    page=0  chnl=15
  23.176 +char id=232  x=167   y=88    width=23    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.177 +char id=233  x=143   y=88    width=23    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.178 +char id=234  x=119   y=88    width=23    height=36    xoffset=1     yoffset=14    xadvance=25    page=0  chnl=15
  23.179 +char id=235  x=372   y=192   width=23    height=33    xoffset=1     yoffset=17    xadvance=25    page=0  chnl=15
  23.180 +char id=236  x=387   y=86    width=11    height=36    xoffset=0     yoffset=14    xadvance=12    page=0  chnl=15
  23.181 +char id=237  x=399   y=86    width=11    height=36    xoffset=2     yoffset=14    xadvance=12    page=0  chnl=15
  23.182 +char id=238  x=371   y=86    width=15    height=36    xoffset=-1    yoffset=14    xadvance=12    page=0  chnl=15
  23.183 +char id=239  x=493   y=119   width=17    height=33    xoffset=-2    yoffset=17    xadvance=12    page=0  chnl=15
  23.184 +char id=240  x=446   y=84    width=25    height=35    xoffset=1     yoffset=15    xadvance=27    page=0  chnl=15
  23.185 +char id=241  x=300   y=124   width=22    height=34    xoffset=3     yoffset=16    xadvance=27    page=0  chnl=15
  23.186 +char id=242  x=65    y=90    width=26    height=36    xoffset=1     yoffset=14    xadvance=28    page=0  chnl=15
  23.187 +char id=243  x=38    y=92    width=26    height=36    xoffset=1     yoffset=14    xadvance=28    page=0  chnl=15
  23.188 +char id=244  x=92    y=88    width=26    height=36    xoffset=1     yoffset=14    xadvance=28    page=0  chnl=15
  23.189 +char id=245  x=250   y=124   width=26    height=34    xoffset=1     yoffset=16    xadvance=28    page=0  chnl=15
  23.190 +char id=246  x=195   y=195   width=26    height=33    xoffset=1     yoffset=17    xadvance=28    page=0  chnl=15
  23.191 +char id=247  x=428   y=253   width=23    height=22    xoffset=5     yoffset=26    xadvance=33    page=0  chnl=15
  23.192 +char id=248  x=436   y=225   width=28    height=27    xoffset=0     yoffset=24    xadvance=28    page=0  chnl=15
  23.193 +char id=249  x=283   y=87    width=22    height=36    xoffset=2     yoffset=14    xadvance=27    page=0  chnl=15
  23.194 +char id=250  x=306   y=87    width=22    height=36    xoffset=2     yoffset=14    xadvance=27    page=0  chnl=15
  23.195 +char id=251  x=329   y=86    width=22    height=36    xoffset=2     yoffset=14    xadvance=27    page=0  chnl=15
  23.196 +char id=252  x=72    y=235   width=22    height=33    xoffset=2     yoffset=17    xadvance=27    page=0  chnl=15
  23.197 +char id=253  x=0     y=0     width=25    height=47    xoffset=0     yoffset=14    xadvance=24    page=0  chnl=15
  23.198 +char id=254  x=40    y=0     width=24    height=46    xoffset=3     yoffset=15    xadvance=28    page=0  chnl=15
  23.199 +char id=255  x=397   y=0     width=25    height=44    xoffset=0     yoffset=17    xadvance=24    page=0  chnl=15
  23.200 +kernings count=884
  23.201 +kerning first=34  second=114 amount=-1  
  23.202 +kerning first=34  second=115 amount=-1  
  23.203 +kerning first=254 second=230 amount=-1  
  23.204 +kerning first=254 second=229 amount=-1  
  23.205 +kerning first=254 second=227 amount=-1  
  23.206 +kerning first=254 second=228 amount=-1  
  23.207 +kerning first=254 second=226 amount=-1  
  23.208 +kerning first=254 second=224 amount=-1  
  23.209 +kerning first=254 second=225 amount=-1  
  23.210 +kerning first=254 second=120 amount=-1  
  23.211 +kerning first=254 second=97  amount=-1  
  23.212 +kerning first=222 second=193 amount=-3  
  23.213 +kerning first=39  second=114 amount=-1  
  23.214 +kerning first=39  second=115 amount=-2  
  23.215 +kerning first=222 second=194 amount=-3  
  23.216 +kerning first=222 second=195 amount=-3  
  23.217 +kerning first=222 second=192 amount=-3  
  23.218 +kerning first=222 second=230 amount=-1  
  23.219 +kerning first=222 second=198 amount=-6  
  23.220 +kerning first=222 second=245 amount=-2  
  23.221 +kerning first=222 second=246 amount=-2  
  23.222 +kerning first=222 second=244 amount=-2  
  23.223 +kerning first=222 second=242 amount=-2  
  23.224 +kerning first=222 second=243 amount=-2  
  23.225 +kerning first=222 second=235 amount=-2  
  23.226 +kerning first=222 second=234 amount=-2  
  23.227 +kerning first=42  second=65  amount=-4  
  23.228 +kerning first=42  second=74  amount=-3  
  23.229 +kerning first=42  second=99  amount=-2  
  23.230 +kerning first=42  second=100 amount=-2  
  23.231 +kerning first=42  second=101 amount=-2  
  23.232 +kerning first=42  second=103 amount=-2  
  23.233 +kerning first=42  second=111 amount=-2  
  23.234 +kerning first=42  second=113 amount=-2  
  23.235 +kerning first=222 second=232 amount=-2  
  23.236 +kerning first=222 second=233 amount=-2  
  23.237 +kerning first=222 second=231 amount=-2  
  23.238 +kerning first=222 second=229 amount=-1  
  23.239 +kerning first=222 second=227 amount=-1  
  23.240 +kerning first=222 second=228 amount=-1  
  23.241 +kerning first=222 second=226 amount=-1  
  23.242 +kerning first=222 second=224 amount=-1  
  23.243 +kerning first=222 second=225 amount=-1  
  23.244 +kerning first=222 second=197 amount=-3  
  23.245 +kerning first=222 second=196 amount=-3  
  23.246 +kerning first=222 second=113 amount=-2  
  23.247 +kerning first=222 second=111 amount=-2  
  23.248 +kerning first=222 second=103 amount=-2  
  23.249 +kerning first=222 second=101 amount=-2  
  23.250 +kerning first=222 second=100 amount=-2  
  23.251 +kerning first=222 second=99  amount=-2  
  23.252 +kerning first=222 second=97  amount=-1  
  23.253 +kerning first=222 second=88  amount=-1  
  23.254 +kerning first=222 second=87  amount=1   
  23.255 +kerning first=222 second=74  amount=-3  
  23.256 +kerning first=222 second=65  amount=-3  
  23.257 +kerning first=222 second=46  amount=-7  
  23.258 +kerning first=222 second=44  amount=-7  
  23.259 +kerning first=253 second=63  amount=-2  
  23.260 +kerning first=253 second=46  amount=-3  
  23.261 +kerning first=253 second=44  amount=-2  
  23.262 +kerning first=253 second=39  amount=1   
  23.263 +kerning first=253 second=34  amount=1   
  23.264 +kerning first=221 second=210 amount=-1  
  23.265 +kerning first=221 second=212 amount=-1  
  23.266 +kerning first=221 second=211 amount=-1  
  23.267 +kerning first=221 second=193 amount=-3  
  23.268 +kerning first=221 second=194 amount=-3  
  23.269 +kerning first=221 second=213 amount=-1  
  23.270 +kerning first=221 second=195 amount=-3  
  23.271 +kerning first=221 second=192 amount=-3  
  23.272 +kerning first=221 second=171 amount=-1  
  23.273 +kerning first=221 second=191 amount=-5  
  23.274 +kerning first=221 second=230 amount=-4  
  23.275 +kerning first=65  second=42  amount=-3  
  23.276 +kerning first=65  second=44  amount=2   
  23.277 +kerning first=65  second=59  amount=2   
  23.278 +kerning first=65  second=67  amount=-1  
  23.279 +kerning first=65  second=71  amount=-1  
  23.280 +kerning first=65  second=74  amount=2   
  23.281 +kerning first=65  second=79  amount=-1  
  23.282 +kerning first=65  second=84  amount=-3  
  23.283 +kerning first=65  second=85  amount=-1  
  23.284 +kerning first=65  second=86  amount=-3  
  23.285 +kerning first=65  second=87  amount=-2  
  23.286 +kerning first=65  second=89  amount=-4  
  23.287 +kerning first=65  second=90  amount=1   
  23.288 +kerning first=65  second=116 amount=-1  
  23.289 +kerning first=65  second=118 amount=-1  
  23.290 +kerning first=65  second=119 amount=-1  
  23.291 +kerning first=65  second=121 amount=-1  
  23.292 +kerning first=221 second=216 amount=-1  
  23.293 +kerning first=221 second=198 amount=-4  
  23.294 +kerning first=221 second=252 amount=-3  
  23.295 +kerning first=221 second=251 amount=-3  
  23.296 +kerning first=221 second=249 amount=-3  
  23.297 +kerning first=65  second=255 amount=-1  
  23.298 +kerning first=221 second=250 amount=-3  
  23.299 +kerning first=221 second=245 amount=-4  
  23.300 +kerning first=65  second=221 amount=-3  
  23.301 +kerning first=65  second=253 amount=-1  
  23.302 +kerning first=221 second=246 amount=-4  
  23.303 +kerning first=221 second=244 amount=-4  
  23.304 +kerning first=221 second=242 amount=-4  
  23.305 +kerning first=221 second=243 amount=-4  
  23.306 +kerning first=221 second=241 amount=-3  
  23.307 +kerning first=221 second=239 amount=2   
  23.308 +kerning first=221 second=235 amount=-4  
  23.309 +kerning first=221 second=234 amount=-4  
  23.310 +kerning first=221 second=232 amount=-4  
  23.311 +kerning first=221 second=233 amount=-4  
  23.312 +kerning first=221 second=231 amount=-4  
  23.313 +kerning first=221 second=229 amount=-4  
  23.314 +kerning first=221 second=227 amount=-3  
  23.315 +kerning first=221 second=228 amount=-3  
  23.316 +kerning first=221 second=226 amount=-4  
  23.317 +kerning first=221 second=224 amount=-4  
  23.318 +kerning first=221 second=225 amount=-4  
  23.319 +kerning first=221 second=214 amount=-1  
  23.320 +kerning first=221 second=199 amount=-1  
  23.321 +kerning first=221 second=197 amount=-3  
  23.322 +kerning first=221 second=196 amount=-3  
  23.323 +kerning first=221 second=117 amount=-3  
  23.324 +kerning first=221 second=115 amount=-3  
  23.325 +kerning first=221 second=114 amount=-3  
  23.326 +kerning first=221 second=113 amount=-4  
  23.327 +kerning first=221 second=112 amount=-3  
  23.328 +kerning first=221 second=111 amount=-4  
  23.329 +kerning first=221 second=110 amount=-3  
  23.330 +kerning first=221 second=109 amount=-3  
  23.331 +kerning first=221 second=103 amount=-4  
  23.332 +kerning first=221 second=102 amount=-1  
  23.333 +kerning first=221 second=101 amount=-4  
  23.334 +kerning first=221 second=100 amount=-4  
  23.335 +kerning first=221 second=99  amount=-4  
  23.336 +kerning first=221 second=97  amount=-4  
  23.337 +kerning first=221 second=84  amount=1   
  23.338 +kerning first=221 second=83  amount=-1  
  23.339 +kerning first=221 second=81  amount=-1  
  23.340 +kerning first=66  second=84  amount=-2  
  23.341 +kerning first=66  second=89  amount=-1  
  23.342 +kerning first=221 second=79  amount=-1  
  23.343 +kerning first=221 second=74  amount=-1  
  23.344 +kerning first=221 second=71  amount=-1  
  23.345 +kerning first=66  second=221 amount=-1  
  23.346 +kerning first=221 second=67  amount=-1  
  23.347 +kerning first=221 second=65  amount=-3  
  23.348 +kerning first=221 second=46  amount=-4  
  23.349 +kerning first=221 second=44  amount=-4  
  23.350 +kerning first=208 second=193 amount=-1  
  23.351 +kerning first=208 second=194 amount=-1  
  23.352 +kerning first=67  second=67  amount=-1  
  23.353 +kerning first=67  second=71  amount=-1  
  23.354 +kerning first=67  second=79  amount=-1  
  23.355 +kerning first=67  second=81  amount=-1  
  23.356 +kerning first=67  second=199 amount=-1  
  23.357 +kerning first=67  second=214 amount=-1  
  23.358 +kerning first=67  second=239 amount=1   
  23.359 +kerning first=67  second=216 amount=-1  
  23.360 +kerning first=67  second=171 amount=-1  
  23.361 +kerning first=67  second=213 amount=-1  
  23.362 +kerning first=208 second=195 amount=-1  
  23.363 +kerning first=208 second=192 amount=-1  
  23.364 +kerning first=67  second=211 amount=-1  
  23.365 +kerning first=67  second=212 amount=-1  
  23.366 +kerning first=67  second=210 amount=-1  
  23.367 +kerning first=208 second=198 amount=-2  
  23.368 +kerning first=208 second=197 amount=-1  
  23.369 +kerning first=208 second=196 amount=-1  
  23.370 +kerning first=208 second=90  amount=-1  
  23.371 +kerning first=208 second=88  amount=-1  
  23.372 +kerning first=208 second=84  amount=-2  
  23.373 +kerning first=208 second=65  amount=-1  
  23.374 +kerning first=208 second=46  amount=-3  
  23.375 +kerning first=208 second=44  amount=-3  
  23.376 +kerning first=210 second=90  amount=-1  
  23.377 +kerning first=210 second=88  amount=-1  
  23.378 +kerning first=210 second=84  amount=-2  
  23.379 +kerning first=210 second=65  amount=-1  
  23.380 +kerning first=212 second=90  amount=-1  
  23.381 +kerning first=68  second=44  amount=-3  
  23.382 +kerning first=68  second=46  amount=-3  
  23.383 +kerning first=68  second=65  amount=-1  
  23.384 +kerning first=68  second=84  amount=-2  
  23.385 +kerning first=68  second=88  amount=-1  
  23.386 +kerning first=68  second=90  amount=-1  
  23.387 +kerning first=68  second=196 amount=-1  
  23.388 +kerning first=68  second=197 amount=-1  
  23.389 +kerning first=68  second=198 amount=-2  
  23.390 +kerning first=212 second=88  amount=-1  
  23.391 +kerning first=68  second=192 amount=-1  
  23.392 +kerning first=68  second=195 amount=-1  
  23.393 +kerning first=212 second=84  amount=-2  
  23.394 +kerning first=212 second=65  amount=-1  
  23.395 +kerning first=211 second=90  amount=-1  
  23.396 +kerning first=68  second=194 amount=-1  
  23.397 +kerning first=68  second=193 amount=-1  
  23.398 +kerning first=211 second=88  amount=-1  
  23.399 +kerning first=211 second=84  amount=-2  
  23.400 +kerning first=211 second=65  amount=-1  
  23.401 +kerning first=200 second=74  amount=1   
  23.402 +kerning first=203 second=74  amount=1   
  23.403 +kerning first=193 second=221 amount=-3  
  23.404 +kerning first=193 second=89  amount=-4  
  23.405 +kerning first=193 second=87  amount=-2  
  23.406 +kerning first=193 second=86  amount=-3  
  23.407 +kerning first=193 second=84  amount=-3  
  23.408 +kerning first=193 second=74  amount=2   
  23.409 +kerning first=202 second=74  amount=1   
  23.410 +kerning first=69  second=74  amount=1   
  23.411 +kerning first=194 second=221 amount=-3  
  23.412 +kerning first=69  second=87  amount=1   
  23.413 +kerning first=69  second=88  amount=1   
  23.414 +kerning first=194 second=89  amount=-4  
  23.415 +kerning first=194 second=87  amount=-2  
  23.416 +kerning first=194 second=86  amount=-3  
  23.417 +kerning first=194 second=84  amount=-3  
  23.418 +kerning first=194 second=74  amount=2   
  23.419 +kerning first=213 second=90  amount=-1  
  23.420 +kerning first=213 second=88  amount=-1  
  23.421 +kerning first=213 second=84  amount=-2  
  23.422 +kerning first=213 second=65  amount=-1  
  23.423 +kerning first=195 second=221 amount=-3  
  23.424 +kerning first=195 second=89  amount=-4  
  23.425 +kerning first=195 second=87  amount=-2  
  23.426 +kerning first=195 second=86  amount=-3  
  23.427 +kerning first=195 second=84  amount=-3  
  23.428 +kerning first=195 second=74  amount=2   
  23.429 +kerning first=192 second=221 amount=-3  
  23.430 +kerning first=192 second=89  amount=-4  
  23.431 +kerning first=192 second=87  amount=-2  
  23.432 +kerning first=192 second=86  amount=-3  
  23.433 +kerning first=192 second=84  amount=-3  
  23.434 +kerning first=192 second=74  amount=2   
  23.435 +kerning first=187 second=221 amount=-2  
  23.436 +kerning first=187 second=89  amount=-2  
  23.437 +kerning first=70  second=44  amount=-4  
  23.438 +kerning first=70  second=46  amount=-4  
  23.439 +kerning first=70  second=65  amount=-3  
  23.440 +kerning first=70  second=74  amount=-1  
  23.441 +kerning first=70  second=83  amount=-1  
  23.442 +kerning first=187 second=87  amount=-1  
  23.443 +kerning first=70  second=97  amount=-2  
  23.444 +kerning first=187 second=86  amount=-1  
  23.445 +kerning first=70  second=196 amount=-3  
  23.446 +kerning first=70  second=197 amount=-3  
  23.447 +kerning first=70  second=239 amount=1   
  23.448 +kerning first=70  second=198 amount=-4  
  23.449 +kerning first=187 second=84  amount=-1  
  23.450 +kerning first=70  second=192 amount=-3  
  23.451 +kerning first=70  second=195 amount=-3  
  23.452 +kerning first=171 second=90  amount=2   
  23.453 +kerning first=171 second=87  amount=2   
  23.454 +kerning first=70  second=194 amount=-3  
  23.455 +kerning first=70  second=193 amount=-3  
  23.456 +kerning first=171 second=84  amount=-1  
  23.457 +kerning first=171 second=74  amount=2   
  23.458 +kerning first=161 second=106 amount=3   
  23.459 +kerning first=191 second=221 amount=-2  
  23.460 +kerning first=191 second=106 amount=4   
  23.461 +kerning first=191 second=89  amount=-2  
  23.462 +kerning first=248 second=120 amount=-1  
  23.463 +kerning first=248 second=102 amount=-1  
  23.464 +kerning first=248 second=97  amount=-1  
  23.465 +kerning first=216 second=90  amount=-1  
  23.466 +kerning first=216 second=88  amount=-1  
  23.467 +kerning first=216 second=84  amount=-2  
  23.468 +kerning first=216 second=65  amount=-1  
  23.469 +kerning first=245 second=120 amount=-1  
  23.470 +kerning first=245 second=102 amount=-1  
  23.471 +kerning first=245 second=97  amount=-1  
  23.472 +kerning first=246 second=120 amount=-1  
  23.473 +kerning first=246 second=102 amount=-1  
  23.474 +kerning first=246 second=97  amount=-1  
  23.475 +kerning first=71  second=84  amount=-1  
  23.476 +kerning first=71  second=86  amount=-1  
  23.477 +kerning first=71  second=121 amount=-1  
  23.478 +kerning first=71  second=255 amount=-1  
  23.479 +kerning first=71  second=253 amount=-1  
  23.480 +kerning first=244 second=120 amount=-1  
  23.481 +kerning first=244 second=102 amount=-1  
  23.482 +kerning first=244 second=97  amount=-1  
  23.483 +kerning first=242 second=120 amount=-1  
  23.484 +kerning first=242 second=102 amount=-1  
  23.485 +kerning first=74  second=44  amount=-2  
  23.486 +kerning first=74  second=46  amount=-2  
  23.487 +kerning first=74  second=65  amount=-1  
  23.488 +kerning first=74  second=74  amount=-1  
  23.489 +kerning first=74  second=97  amount=-1  
  23.490 +kerning first=74  second=196 amount=-1  
  23.491 +kerning first=74  second=197 amount=-1  
  23.492 +kerning first=74  second=225 amount=-1  
  23.493 +kerning first=74  second=224 amount=-1  
  23.494 +kerning first=74  second=226 amount=-1  
  23.495 +kerning first=74  second=228 amount=-1  
  23.496 +kerning first=74  second=227 amount=-1  
  23.497 +kerning first=74  second=229 amount=-1  
  23.498 +kerning first=74  second=198 amount=-3  
  23.499 +kerning first=74  second=230 amount=-1  
  23.500 +kerning first=242 second=97  amount=-1  
  23.501 +kerning first=74  second=192 amount=-1  
  23.502 +kerning first=74  second=195 amount=-1  
  23.503 +kerning first=243 second=120 amount=-1  
  23.504 +kerning first=243 second=102 amount=-1  
  23.505 +kerning first=74  second=194 amount=-1  
  23.506 +kerning first=74  second=193 amount=-1  
  23.507 +kerning first=243 second=97  amount=-1  
  23.508 +kerning first=214 second=90  amount=-1  
  23.509 +kerning first=214 second=88  amount=-1  
  23.510 +kerning first=214 second=84  amount=-2  
  23.511 +kerning first=214 second=65  amount=-1  
  23.512 +kerning first=201 second=74  amount=1   
  23.513 +kerning first=199 second=81  amount=-1  
  23.514 +kerning first=199 second=79  amount=-1  
  23.515 +kerning first=199 second=71  amount=-1  
  23.516 +kerning first=199 second=67  amount=-1  
  23.517 +kerning first=197 second=221 amount=-3  
  23.518 +kerning first=75  second=44  amount=1   
  23.519 +kerning first=75  second=59  amount=1   
  23.520 +kerning first=75  second=67  amount=-2  
  23.521 +kerning first=75  second=71  amount=-2  
  23.522 +kerning first=75  second=74  amount=2   
  23.523 +kerning first=75  second=79  amount=-2  
  23.524 +kerning first=75  second=81  amount=-2  
  23.525 +kerning first=75  second=88  amount=1   
  23.526 +kerning first=75  second=90  amount=1   
  23.527 +kerning first=75  second=99  amount=-1  
  23.528 +kerning first=75  second=100 amount=-1  
  23.529 +kerning first=75  second=101 amount=-1  
  23.530 +kerning first=75  second=103 amount=-1  
  23.531 +kerning first=75  second=111 amount=-1  
  23.532 +kerning first=75  second=113 amount=-1  
  23.533 +kerning first=75  second=116 amount=-1  
  23.534 +kerning first=75  second=118 amount=-2  
  23.535 +kerning first=75  second=119 amount=-1  
  23.536 +kerning first=75  second=121 amount=-2  
  23.537 +kerning first=75  second=199 amount=-2  
  23.538 +kerning first=75  second=214 amount=-2  
  23.539 +kerning first=75  second=231 amount=-1  
  23.540 +kerning first=75  second=233 amount=-1  
  23.541 +kerning first=75  second=232 amount=-1  
  23.542 +kerning first=75  second=234 amount=-1  
  23.543 +kerning first=75  second=235 amount=-1  
  23.544 +kerning first=75  second=237 amount=-1  
  23.545 +kerning first=75  second=239 amount=1   
  23.546 +kerning first=75  second=243 amount=-1  
  23.547 +kerning first=75  second=242 amount=-1  
  23.548 +kerning first=75  second=244 amount=-1  
  23.549 +kerning first=75  second=246 amount=-1  
  23.550 +kerning first=75  second=245 amount=-1  
  23.551 +kerning first=75  second=216 amount=-2  
  23.552 +kerning first=75  second=213 amount=-2  
  23.553 +kerning first=197 second=89  amount=-4  
  23.554 +kerning first=197 second=87  amount=-2  
  23.555 +kerning first=75  second=255 amount=-2  
  23.556 +kerning first=197 second=86  amount=-3  
  23.557 +kerning first=197 second=84  amount=-3  
  23.558 +kerning first=75  second=211 amount=-2  
  23.559 +kerning first=75  second=212 amount=-2  
  23.560 +kerning first=75  second=210 amount=-2  
  23.561 +kerning first=197 second=74  amount=2   
  23.562 +kerning first=75  second=253 amount=-2  
  23.563 +kerning first=196 second=221 amount=-3  
  23.564 +kerning first=196 second=89  amount=-4  
  23.565 +kerning first=196 second=87  amount=-2  
  23.566 +kerning first=196 second=86  amount=-3  
  23.567 +kerning first=196 second=84  amount=-3  
  23.568 +kerning first=196 second=74  amount=2   
  23.569 +kerning first=123 second=106 amount=4   
  23.570 +kerning first=121 second=63  amount=-1  
  23.571 +kerning first=121 second=46  amount=-3  
  23.572 +kerning first=121 second=44  amount=-3  
  23.573 +kerning first=121 second=39  amount=1   
  23.574 +kerning first=121 second=34  amount=1   
  23.575 +kerning first=120 second=245 amount=-1  
  23.576 +kerning first=120 second=246 amount=-1  
  23.577 +kerning first=120 second=244 amount=-1  
  23.578 +kerning first=120 second=242 amount=-1  
  23.579 +kerning first=120 second=243 amount=-1  
  23.580 +kerning first=120 second=235 amount=-1  
  23.581 +kerning first=120 second=234 amount=-1  
  23.582 +kerning first=120 second=232 amount=-1  
  23.583 +kerning first=120 second=233 amount=-1  
  23.584 +kerning first=120 second=113 amount=-1  
  23.585 +kerning first=120 second=111 amount=-1  
  23.586 +kerning first=120 second=103 amount=-1  
  23.587 +kerning first=120 second=101 amount=-1  
  23.588 +kerning first=120 second=100 amount=-1  
  23.589 +kerning first=120 second=99  amount=-1  
  23.590 +kerning first=119 second=46  amount=-2  
  23.591 +kerning first=119 second=44  amount=-2  
  23.592 +kerning first=118 second=230 amount=-1  
  23.593 +kerning first=118 second=229 amount=-1  
  23.594 +kerning first=118 second=227 amount=-1  
  23.595 +kerning first=118 second=228 amount=-1  
  23.596 +kerning first=118 second=226 amount=-1  
  23.597 +kerning first=118 second=224 amount=-1  
  23.598 +kerning first=118 second=225 amount=-1  
  23.599 +kerning first=118 second=97  amount=-1  
  23.600 +kerning first=118 second=46  amount=-3  
  23.601 +kerning first=118 second=44  amount=-3  
  23.602 +kerning first=117 second=39  amount=-2  
  23.603 +kerning first=117 second=34  amount=-1  
  23.604 +kerning first=116 second=187 amount=1   
  23.605 +kerning first=116 second=231 amount=-1  
  23.606 +kerning first=116 second=120 amount=1   
  23.607 +kerning first=76  second=42  amount=-5  
  23.608 +kerning first=76  second=63  amount=-2  
  23.609 +kerning first=76  second=65  amount=1   
  23.610 +kerning first=76  second=67  amount=-1  
  23.611 +kerning first=76  second=71  amount=-1  
  23.612 +kerning first=76  second=74  amount=2   
  23.613 +kerning first=76  second=79  amount=-1  
  23.614 +kerning first=76  second=81  amount=-1  
  23.615 +kerning first=76  second=84  amount=-3  
  23.616 +kerning first=76  second=85  amount=-1  
  23.617 +kerning first=76  second=86  amount=-3  
  23.618 +kerning first=76  second=87  amount=-1  
  23.619 +kerning first=76  second=89  amount=-3  
  23.620 +kerning first=76  second=90  amount=1   
  23.621 +kerning first=76  second=116 amount=-1  
  23.622 +kerning first=76  second=118 amount=-2  
  23.623 +kerning first=76  second=119 amount=-2  
  23.624 +kerning first=76  second=121 amount=-2  
  23.625 +kerning first=76  second=199 amount=-1  
  23.626 +kerning first=76  second=214 amount=-1  
  23.627 +kerning first=76  second=220 amount=-1  
  23.628 +kerning first=116 second=63  amount=-2  
  23.629 +kerning first=76  second=216 amount=-1  
  23.630 +kerning first=76  second=213 amount=-1  
  23.631 +kerning first=114 second=253 amount=2   
  23.632 +kerning first=114 second=122 amount=1   
  23.633 +kerning first=114 second=121 amount=2   
  23.634 +kerning first=114 second=120 amount=1   
  23.635 +kerning first=114 second=119 amount=2   
  23.636 +kerning first=76  second=255 amount=-2  
  23.637 +kerning first=114 second=118 amount=2   
  23.638 +kerning first=114 second=116 amount=1   
  23.639 +kerning first=114 second=113 amount=-1  
  23.640 +kerning first=76  second=211 amount=-1  
  23.641 +kerning first=76  second=212 amount=-1  
  23.642 +kerning first=76  second=210 amount=-1  
  23.643 +kerning first=76  second=218 amount=-1  
  23.644 +kerning first=76  second=219 amount=-1  
  23.645 +kerning first=76  second=217 amount=-1  
  23.646 +kerning first=114 second=102 amount=1   
  23.647 +kerning first=76  second=221 amount=-3  
  23.648 +kerning first=76  second=253 amount=-2  
  23.649 +kerning first=114 second=59  amount=2   
  23.650 +kerning first=114 second=58  amount=2   
  23.651 +kerning first=114 second=46  amount=-4  
  23.652 +kerning first=114 second=44  amount=-4  
  23.653 +kerning first=113 second=106 amount=2   
  23.654 +kerning first=112 second=230 amount=-1  
  23.655 +kerning first=112 second=229 amount=-1  
  23.656 +kerning first=112 second=227 amount=-1  
  23.657 +kerning first=112 second=228 amount=-1  
  23.658 +kerning first=112 second=226 amount=-1  
  23.659 +kerning first=112 second=224 amount=-1  
  23.660 +kerning first=112 second=225 amount=-1  
  23.661 +kerning first=112 second=120 amount=-1  
  23.662 +kerning first=112 second=102 amount=-1  
  23.663 +kerning first=112 second=97  amount=-1  
  23.664 +kerning first=111 second=230 amount=-1  
  23.665 +kerning first=111 second=229 amount=-1  
  23.666 +kerning first=111 second=227 amount=-1  
  23.667 +kerning first=111 second=228 amount=-1  
  23.668 +kerning first=111 second=226 amount=-1  
  23.669 +kerning first=111 second=224 amount=-1  
  23.670 +kerning first=111 second=225 amount=-1  
  23.671 +kerning first=111 second=120 amount=-1  
  23.672 +kerning first=111 second=102 amount=-1  
  23.673 +kerning first=111 second=97  amount=-1  
  23.674 +kerning first=111 second=39  amount=-4  
  23.675 +kerning first=111 second=34  amount=-3  
  23.676 +kerning first=110 second=39  amount=-3  
  23.677 +kerning first=110 second=34  amount=-2  
  23.678 +kerning first=107 second=245 amount=-1  
  23.679 +kerning first=107 second=246 amount=-1  
  23.680 +kerning first=107 second=244 amount=-1  
  23.681 +kerning first=107 second=242 amount=-1  
  23.682 +kerning first=107 second=243 amount=-1  
  23.683 +kerning first=107 second=235 amount=-1  
  23.684 +kerning first=107 second=234 amount=-1  
  23.685 +kerning first=107 second=232 amount=-1  
  23.686 +kerning first=107 second=233 amount=-1  
  23.687 +kerning first=107 second=231 amount=-1  
  23.688 +kerning first=107 second=113 amount=-1  
  23.689 +kerning first=107 second=111 amount=-1  
  23.690 +kerning first=107 second=103 amount=-1  
  23.691 +kerning first=107 second=101 amount=-1  
  23.692 +kerning first=79  second=44  amount=-2  
  23.693 +kerning first=79  second=46  amount=-2  
  23.694 +kerning first=79  second=65  amount=-1  
  23.695 +kerning first=107 second=100 amount=-1  
  23.696 +kerning first=79  second=84  amount=-2  
  23.697 +kerning first=79  second=88  amount=-1  
  23.698 +kerning first=79  second=89  amount=-1  
  23.699 +kerning first=79  second=90  amount=-1  
  23.700 +kerning first=79  second=196 amount=-1  
  23.701 +kerning first=79  second=197 amount=-1  
  23.702 +kerning first=107 second=99  amount=-1  
  23.703 +kerning first=79  second=192 amount=-1  
  23.704 +kerning first=79  second=195 amount=-1  
  23.705 +kerning first=107 second=59  amount=2   
  23.706 +kerning first=107 second=58  amount=2   
  23.707 +kerning first=107 second=46  amount=2   
  23.708 +kerning first=79  second=194 amount=-1  
  23.709 +kerning first=79  second=193 amount=-1  
  23.710 +kerning first=107 second=44  amount=2   
  23.711 +kerning first=79  second=221 amount=-1  
  23.712 +kerning first=106 second=106 amount=1   
  23.713 +kerning first=103 second=106 amount=1   
  23.714 +kerning first=102 second=253 amount=1   
  23.715 +kerning first=102 second=187 amount=1   
  23.716 +kerning first=102 second=239 amount=3   
  23.717 +kerning first=102 second=238 amount=1   
  23.718 +kerning first=102 second=236 amount=1   
  23.719 +kerning first=102 second=125 amount=2   
  23.720 +kerning first=102 second=121 amount=1   
  23.721 +kerning first=102 second=119 amount=1   
  23.722 +kerning first=102 second=118 amount=1   
  23.723 +kerning first=102 second=116 amount=1   
  23.724 +kerning first=102 second=98  amount=1   
  23.725 +kerning first=80  second=44  amount=-8  
  23.726 +kerning first=80  second=46  amount=-7  
  23.727 +kerning first=80  second=65  amount=-3  
  23.728 +kerning first=102 second=93  amount=3   
  23.729 +kerning first=80  second=74  amount=-3  
  23.730 +kerning first=80  second=87  amount=1   
  23.731 +kerning first=80  second=88  amount=-1  
  23.732 +kerning first=80  second=97  amount=-1  
  23.733 +kerning first=80  second=99  amount=-2  
  23.734 +kerning first=80  second=100 amount=-2  
  23.735 +kerning first=80  second=101 amount=-2  
  23.736 +kerning first=80  second=103 amount=-2  
  23.737 +kerning first=80  second=111 amount=-2  
  23.738 +kerning first=80  second=113 amount=-2  
  23.739 +kerning first=80  second=196 amount=-3  
  23.740 +kerning first=80  second=197 amount=-3  
  23.741 +kerning first=80  second=225 amount=-1  
  23.742 +kerning first=80  second=224 amount=-1  
  23.743 +kerning first=80  second=226 amount=-1  
  23.744 +kerning first=80  second=228 amount=-1  
  23.745 +kerning first=80  second=227 amount=-1  
  23.746 +kerning first=80  second=229 amount=-1  
  23.747 +kerning first=80  second=231 amount=-2  
  23.748 +kerning first=80  second=233 amount=-2  
  23.749 +kerning first=80  second=232 amount=-2  
  23.750 +kerning first=80  second=234 amount=-2  
  23.751 +kerning first=80  second=235 amount=-2  
  23.752 +kerning first=80  second=243 amount=-2  
  23.753 +kerning first=80  second=242 amount=-2  
  23.754 +kerning first=80  second=244 amount=-2  
  23.755 +kerning first=80  second=246 amount=-2  
  23.756 +kerning first=80  second=245 amount=-2  
  23.757 +kerning first=80  second=198 amount=-7  
  23.758 +kerning first=80  second=230 amount=-1  
  23.759 +kerning first=102 second=63  amount=2   
  23.760 +kerning first=80  second=192 amount=-3  
  23.761 +kerning first=80  second=195 amount=-3  
  23.762 +kerning first=102 second=59  amount=2   
  23.763 +kerning first=102 second=58  amount=2   
  23.764 +kerning first=102 second=46  amount=-3  
  23.765 +kerning first=80  second=194 amount=-3  
  23.766 +kerning first=80  second=193 amount=-3  
  23.767 +kerning first=102 second=44  amount=-3  
  23.768 +kerning first=101 second=39  amount=-3  
  23.769 +kerning first=101 second=34  amount=-2  
  23.770 +kerning first=99  second=221 amount=-2  
  23.771 +kerning first=99  second=89  amount=-2  
  23.772 +kerning first=99  second=84  amount=-2  
  23.773 +kerning first=99  second=74  amount=2   
  23.774 +kerning first=98  second=230 amount=-1  
  23.775 +kerning first=98  second=229 amount=-1  
  23.776 +kerning first=98  second=227 amount=-1  
  23.777 +kerning first=98  second=228 amount=-1  
  23.778 +kerning first=98  second=226 amount=-1  
  23.779 +kerning first=98  second=224 amount=-1  
  23.780 +kerning first=98  second=225 amount=-1  
  23.781 +kerning first=98  second=120 amount=-1  
  23.782 +kerning first=98  second=97  amount=-1  
  23.783 +kerning first=91  second=106 amount=5   
  23.784 +kerning first=90  second=253 amount=-1  
  23.785 +kerning first=90  second=255 amount=-1  
  23.786 +kerning first=90  second=187 amount=1   
  23.787 +kerning first=90  second=239 amount=2   
  23.788 +kerning first=90  second=121 amount=-1  
  23.789 +kerning first=90  second=84  amount=1   
  23.790 +kerning first=90  second=74  amount=2   
  23.791 +kerning first=89  second=210 amount=-1  
  23.792 +kerning first=89  second=212 amount=-1  
  23.793 +kerning first=89  second=211 amount=-1  
  23.794 +kerning first=89  second=193 amount=-4  
  23.795 +kerning first=89  second=194 amount=-4  
  23.796 +kerning first=89  second=213 amount=-1  
  23.797 +kerning first=89  second=195 amount=-4  
  23.798 +kerning first=89  second=192 amount=-4  
  23.799 +kerning first=89  second=171 amount=-1  
  23.800 +kerning first=89  second=191 amount=-5  
  23.801 +kerning first=89  second=230 amount=-5  
  23.802 +kerning first=89  second=216 amount=-1  
  23.803 +kerning first=89  second=198 amount=-5  
  23.804 +kerning first=81  second=44  amount=-2  
  23.805 +kerning first=81  second=46  amount=-3  
  23.806 +kerning first=81  second=65  amount=-1  
  23.807 +kerning first=81  second=84  amount=-2  
  23.808 +kerning first=81  second=88  amount=-1  
  23.809 +kerning first=89  second=252 amount=-3  
  23.810 +kerning first=81  second=90  amount=-1  
  23.811 +kerning first=81  second=196 amount=-1  
  23.812 +kerning first=81  second=197 amount=-1  
  23.813 +kerning first=89  second=251 amount=-3  
  23.814 +kerning first=81  second=192 amount=-1  
  23.815 +kerning first=81  second=195 amount=-1  
  23.816 +kerning first=89  second=249 amount=-3  
  23.817 +kerning first=89  second=250 amount=-3  
  23.818 +kerning first=89  second=245 amount=-4  
  23.819 +kerning first=81  second=194 amount=-1  
  23.820 +kerning first=81  second=193 amount=-1  
  23.821 +kerning first=89  second=246 amount=-4  
  23.822 +kerning first=89  second=244 amount=-4  
  23.823 +kerning first=89  second=242 amount=-4  
  23.824 +kerning first=89  second=243 amount=-4  
  23.825 +kerning first=89  second=241 amount=-3  
  23.826 +kerning first=89  second=239 amount=2   
  23.827 +kerning first=89  second=235 amount=-4  
  23.828 +kerning first=89  second=234 amount=-4  
  23.829 +kerning first=89  second=232 amount=-4  
  23.830 +kerning first=89  second=233 amount=-4  
  23.831 +kerning first=89  second=231 amount=-4  
  23.832 +kerning first=89  second=229 amount=-5  
  23.833 +kerning first=89  second=227 amount=-4  
  23.834 +kerning first=89  second=228 amount=-3  
  23.835 +kerning first=82  second=59  amount=2   
  23.836 +kerning first=82  second=67  amount=-1  
  23.837 +kerning first=82  second=71  amount=-1  
  23.838 +kerning first=82  second=74  amount=1   
  23.839 +kerning first=89  second=226 amount=-5  
  23.840 +kerning first=89  second=224 amount=-5  
  23.841 +kerning first=82  second=84  amount=-1  
  23.842 +kerning first=82  second=89  amount=-1  
  23.843 +kerning first=82  second=99  amount=-1  
  23.844 +kerning first=82  second=100 amount=-1  
  23.845 +kerning first=82  second=101 amount=-1  
  23.846 +kerning first=82  second=103 amount=-1  
  23.847 +kerning first=82  second=111 amount=-1  
  23.848 +kerning first=82  second=113 amount=-1  
  23.849 +kerning first=82  second=199 amount=-1  
  23.850 +kerning first=89  second=225 amount=-5  
  23.851 +kerning first=82  second=231 amount=-1  
  23.852 +kerning first=82  second=233 amount=-1  
  23.853 +kerning first=82  second=232 amount=-1  
  23.854 +kerning first=82  second=234 amount=-1  
  23.855 +kerning first=82  second=235 amount=-1  
  23.856 +kerning first=82  second=243 amount=-1  
  23.857 +kerning first=82  second=242 amount=-1  
  23.858 +kerning first=82  second=244 amount=-1  
  23.859 +kerning first=82  second=246 amount=-1  
  23.860 +kerning first=82  second=245 amount=-1  
  23.861 +kerning first=89  second=214 amount=-1  
  23.862 +kerning first=89  second=199 amount=-1  
  23.863 +kerning first=89  second=197 amount=-4  
  23.864 +kerning first=89  second=196 amount=-4  
  23.865 +kerning first=89  second=117 amount=-3  
  23.866 +kerning first=89  second=115 amount=-3  
  23.867 +kerning first=89  second=114 amount=-3  
  23.868 +kerning first=89  second=113 amount=-4  
  23.869 +kerning first=82  second=221 amount=-1  
  23.870 +kerning first=89  second=112 amount=-3  
  23.871 +kerning first=89  second=111 amount=-4  
  23.872 +kerning first=89  second=110 amount=-3  
  23.873 +kerning first=89  second=109 amount=-3  
  23.874 +kerning first=89  second=103 amount=-4  
  23.875 +kerning first=89  second=102 amount=-1  
  23.876 +kerning first=89  second=101 amount=-4  
  23.877 +kerning first=89  second=100 amount=-4  
  23.878 +kerning first=89  second=99  amount=-4  
  23.879 +kerning first=89  second=97  amount=-5  
  23.880 +kerning first=89  second=84  amount=1   
  23.881 +kerning first=89  second=83  amount=-1  
  23.882 +kerning first=89  second=81  amount=-1  
  23.883 +kerning first=89  second=79  amount=-1  
  23.884 +kerning first=89  second=74  amount=-2  
  23.885 +kerning first=89  second=71  amount=-1  
  23.886 +kerning first=89  second=67  amount=-1  
  23.887 +kerning first=89  second=65  amount=-4  
  23.888 +kerning first=89  second=46  amount=-5  
  23.889 +kerning first=89  second=44  amount=-5  
  23.890 +kerning first=88  second=210 amount=-1  
  23.891 +kerning first=88  second=212 amount=-1  
  23.892 +kerning first=88  second=211 amount=-1  
  23.893 +kerning first=88  second=213 amount=-1  
  23.894 +kerning first=88  second=216 amount=-1  
  23.895 +kerning first=88  second=239 amount=2   
  23.896 +kerning first=88  second=214 amount=-1  
  23.897 +kerning first=88  second=199 amount=-1  
  23.898 +kerning first=88  second=84  amount=1   
  23.899 +kerning first=88  second=81  amount=-1  
  23.900 +kerning first=88  second=79  amount=-1  
  23.901 +kerning first=88  second=74  amount=2   
  23.902 +kerning first=88  second=71  amount=-1  
  23.903 +kerning first=88  second=67  amount=-1  
  23.904 +kerning first=88  second=59  amount=2   
  23.905 +kerning first=83  second=116 amount=-1  
  23.906 +kerning first=83  second=118 amount=-1  
  23.907 +kerning first=83  second=119 amount=-1  
  23.908 +kerning first=83  second=121 amount=-1  
  23.909 +kerning first=83  second=255 amount=-1  
  23.910 +kerning first=88  second=46  amount=1   
  23.911 +kerning first=88  second=44  amount=2   
  23.912 +kerning first=83  second=253 amount=-1  
  23.913 +kerning first=87  second=193 amount=-2  
  23.914 +kerning first=87  second=194 amount=-2  
  23.915 +kerning first=87  second=195 amount=-2  
  23.916 +kerning first=87  second=192 amount=-2  
  23.917 +kerning first=87  second=187 amount=1   
  23.918 +kerning first=87  second=171 amount=-1  
  23.919 +kerning first=87  second=191 amount=-2  
  23.920 +kerning first=87  second=230 amount=-2  
  23.921 +kerning first=87  second=198 amount=-3  
  23.922 +kerning first=84  second=44  amount=-3  
  23.923 +kerning first=84  second=46  amount=-4  
  23.924 +kerning first=87  second=245 amount=-1  
  23.925 +kerning first=87  second=246 amount=-1  
  23.926 +kerning first=84  second=65  amount=-4  
  23.927 +kerning first=84  second=67  amount=-2  
  23.928 +kerning first=84  second=71  amount=-2  
  23.929 +kerning first=84  second=74  amount=-3  
  23.930 +kerning first=84  second=79  amount=-2  
  23.931 +kerning first=84  second=81  amount=-2  
  23.932 +kerning first=84  second=84  amount=1   
  23.933 +kerning first=84  second=86  amount=1   
  23.934 +kerning first=84  second=87  amount=1   
  23.935 +kerning first=87  second=244 amount=-1  
  23.936 +kerning first=84  second=89  amount=1   
  23.937 +kerning first=84  second=97  amount=-5  
  23.938 +kerning first=84  second=99  amount=-5  
  23.939 +kerning first=84  second=100 amount=-5  
  23.940 +kerning first=84  second=101 amount=-5  
  23.941 +kerning first=84  second=102 amount=-2  
  23.942 +kerning first=84  second=103 amount=-5  
  23.943 +kerning first=84  second=109 amount=-4  
  23.944 +kerning first=84  second=110 amount=-4  
  23.945 +kerning first=84  second=111 amount=-5  
  23.946 +kerning first=84  second=112 amount=-4  
  23.947 +kerning first=84  second=113 amount=-5  
  23.948 +kerning first=84  second=114 amount=-4  
  23.949 +kerning first=84  second=115 amount=-4  
  23.950 +kerning first=84  second=117 amount=-4  
  23.951 +kerning first=84  second=118 amount=-2  
  23.952 +kerning first=84  second=119 amount=-2  
  23.953 +kerning first=84  second=120 amount=-4  
  23.954 +kerning first=84  second=121 amount=-2  
  23.955 +kerning first=84  second=122 amount=-3  
  23.956 +kerning first=84  second=196 amount=-3  
  23.957 +kerning first=84  second=197 amount=-3  
  23.958 +kerning first=84  second=199 amount=-2  
  23.959 +kerning first=84  second=214 amount=-2  
  23.960 +kerning first=84  second=225 amount=-5  
  23.961 +kerning first=84  second=224 amount=-5  
  23.962 +kerning first=84  second=226 amount=-5  
  23.963 +kerning first=84  second=228 amount=-5  
  23.964 +kerning first=84  second=227 amount=-4  
  23.965 +kerning first=84  second=229 amount=-5  
  23.966 +kerning first=84  second=231 amount=-5  
  23.967 +kerning first=84  second=233 amount=-5  
  23.968 +kerning first=84  second=232 amount=-5  
  23.969 +kerning first=84  second=234 amount=-5  
  23.970 +kerning first=84  second=235 amount=-5  
  23.971 +kerning first=87  second=242 amount=-1  
  23.972 +kerning first=84  second=238 amount=1   
  23.973 +kerning first=84  second=239 amount=3   
  23.974 +kerning first=84  second=241 amount=-4  
  23.975 +kerning first=84  second=243 amount=-5  
  23.976 +kerning first=84  second=242 amount=-5  
  23.977 +kerning first=84  second=244 amount=-5  
  23.978 +kerning first=84  second=246 amount=-5  
  23.979 +kerning first=84  second=245 amount=-5  
  23.980 +kerning first=84  second=250 amount=-4  
  23.981 +kerning first=84  second=249 amount=-4  
  23.982 +kerning first=84  second=251 amount=-4  
  23.983 +kerning first=84  second=252 amount=-4  
  23.984 +kerning first=87  second=243 amount=-1  
  23.985 +kerning first=84  second=198 amount=-6  
  23.986 +kerning first=84  second=216 amount=-2  
  23.987 +kerning first=84  second=230 amount=-5  
  23.988 +kerning first=84  second=171 amount=-2  
  23.989 +kerning first=84  second=187 amount=-1  
  23.990 +kerning first=87  second=239 amount=2   
  23.991 +kerning first=84  second=192 amount=-3  
  23.992 +kerning first=84  second=195 amount=-3  
  23.993 +kerning first=84  second=213 amount=-2  
  23.994 +kerning first=87  second=238 amount=1   
  23.995 +kerning first=87  second=235 amount=-1  
  23.996 +kerning first=87  second=234 amount=-1  
  23.997 +kerning first=87  second=232 amount=-1  
  23.998 +kerning first=84  second=255 amount=-2  
  23.999 +kerning first=87  second=233 amount=-1  
 23.1000 +kerning first=87  second=231 amount=-1  
 23.1001 +kerning first=87  second=229 amount=-2  
 23.1002 +kerning first=87  second=227 amount=-2  
 23.1003 +kerning first=84  second=194 amount=-3  
 23.1004 +kerning first=84  second=193 amount=-3  
 23.1005 +kerning first=84  second=211 amount=-2  
 23.1006 +kerning first=84  second=212 amount=-2  
 23.1007 +kerning first=84  second=210 amount=-2  
 23.1008 +kerning first=87  second=228 amount=-2  
 23.1009 +kerning first=87  second=226 amount=-2  
 23.1010 +kerning first=84  second=221 amount=1   
 23.1011 +kerning first=84  second=253 amount=-2  
 23.1012 +kerning first=87  second=224 amount=-2  
 23.1013 +kerning first=87  second=225 amount=-2  
 23.1014 +kerning first=87  second=197 amount=-2  
 23.1015 +kerning first=87  second=196 amount=-2  
 23.1016 +kerning first=87  second=113 amount=-1  
 23.1017 +kerning first=87  second=111 amount=-1  
 23.1018 +kerning first=87  second=103 amount=-1  
 23.1019 +kerning first=87  second=101 amount=-1  
 23.1020 +kerning first=87  second=100 amount=-1  
 23.1021 +kerning first=87  second=99  amount=-1  
 23.1022 +kerning first=87  second=97  amount=-2  
 23.1023 +kerning first=87  second=84  amount=1   
 23.1024 +kerning first=87  second=65  amount=-2  
 23.1025 +kerning first=87  second=46  amount=-3  
 23.1026 +kerning first=87  second=44  amount=-3  
 23.1027 +kerning first=86  second=193 amount=-3  
 23.1028 +kerning first=86  second=194 amount=-3  
 23.1029 +kerning first=86  second=195 amount=-3  
 23.1030 +kerning first=86  second=192 amount=-3  
 23.1031 +kerning first=86  second=171 amount=-1  
 23.1032 +kerning first=86  second=191 amount=-3  
 23.1033 +kerning first=86  second=230 amount=-4  
 23.1034 +kerning first=86  second=198 amount=-5  
 23.1035 +kerning first=86  second=252 amount=-2  
 23.1036 +kerning first=86  second=251 amount=-2  
 23.1037 +kerning first=86  second=249 amount=-2  
 23.1038 +kerning first=86  second=250 amount=-2  
 23.1039 +kerning first=86  second=245 amount=-3  
 23.1040 +kerning first=86  second=246 amount=-3  
 23.1041 +kerning first=86  second=244 amount=-3  
 23.1042 +kerning first=86  second=242 amount=-3  
 23.1043 +kerning first=86  second=243 amount=-3  
 23.1044 +kerning first=86  second=241 amount=-2  
 23.1045 +kerning first=86  second=239 amount=2   
 23.1046 +kerning first=86  second=238 amount=1   
 23.1047 +kerning first=86  second=235 amount=-3  
 23.1048 +kerning first=86  second=234 amount=-3  
 23.1049 +kerning first=86  second=232 amount=-3  
 23.1050 +kerning first=86  second=233 amount=-3  
 23.1051 +kerning first=86  second=231 amount=-3  
 23.1052 +kerning first=86  second=229 amount=-4  
 23.1053 +kerning first=86  second=227 amount=-4  
 23.1054 +kerning first=86  second=228 amount=-4  
 23.1055 +kerning first=86  second=226 amount=-4  
 23.1056 +kerning first=86  second=224 amount=-4  
 23.1057 +kerning first=86  second=225 amount=-4  
 23.1058 +kerning first=86  second=199 amount=-1  
 23.1059 +kerning first=86  second=197 amount=-3  
 23.1060 +kerning first=86  second=196 amount=-3  
 23.1061 +kerning first=86  second=117 amount=-2  
 23.1062 +kerning first=86  second=115 amount=-2  
 23.1063 +kerning first=86  second=114 amount=-2  
 23.1064 +kerning first=86  second=113 amount=-3  
 23.1065 +kerning first=86  second=112 amount=-2  
 23.1066 +kerning first=86  second=111 amount=-3  
 23.1067 +kerning first=86  second=110 amount=-2  
 23.1068 +kerning first=86  second=109 amount=-2  
 23.1069 +kerning first=86  second=103 amount=-3  
 23.1070 +kerning first=86  second=101 amount=-3  
 23.1071 +kerning first=86  second=100 amount=-3  
 23.1072 +kerning first=86  second=99  amount=-3  
 23.1073 +kerning first=86  second=97  amount=-4  
 23.1074 +kerning first=86  second=84  amount=1   
 23.1075 +kerning first=86  second=83  amount=-1  
 23.1076 +kerning first=86  second=81  amount=-1  
 23.1077 +kerning first=86  second=74  amount=-2  
 23.1078 +kerning first=86  second=71  amount=-1  
 23.1079 +kerning first=86  second=67  amount=-1  
 23.1080 +kerning first=86  second=65  amount=-3  
 23.1081 +kerning first=86  second=46  amount=-5  
 23.1082 +kerning first=86  second=44  amount=-5  
 23.1083 +kerning first=85  second=198 amount=-3  
 23.1084 +kerning first=85  second=65  amount=-1  
    24.1 Binary file resources/fonts/SegoeUI-64pt_smbld_0.png has changed
    25.1 Binary file resources/fonts/SegoeUI-64pt_smbld_1.png has changed
    26.1 Binary file resources/fonts/SegoeUI-64pt_smbld_2.png has changed
    27.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    27.2 +++ b/resources/fonts/SegoeUI-92pt_smbld.fnt	Wed Jul 31 19:28:00 2013 +0200
    27.3 @@ -0,0 +1,1161 @@
    27.4 +info face="Segoe UI Semibold" size=92 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
    27.5 +common lineHeight=92 base=74 scaleW=768 scaleH=768 pages=1 packed=0 alphaChnl=0 redChnl=3 greenChnl=3 blueChnl=3
    27.6 +page id=0 file="SegoeUI-92pt_smbld_0.png"
    27.7 +chars count=192
    27.8 +char id=13   x=22    y=134   width=3     height=1     xoffset=-1    yoffset=91    xadvance=5     page=0  chnl=15
    27.9 +char id=32   x=112   y=67    width=3     height=1     xoffset=-1    yoffset=91    xadvance=19    page=0  chnl=15
   27.10 +char id=33   x=641   y=226   width=11    height=49    xoffset=5     yoffset=26    xadvance=21    page=0  chnl=15
   27.11 +char id=34   x=709   y=361   width=20    height=15    xoffset=5     yoffset=25    xadvance=30    page=0  chnl=15
   27.12 +char id=35   x=237   y=336   width=39    height=44    xoffset=1     yoffset=26    xadvance=41    page=0  chnl=15
   27.13 +char id=36   x=294   y=66    width=31    height=61    xoffset=4     yoffset=20    xadvance=38    page=0  chnl=15
   27.14 +char id=37   x=316   y=182   width=53    height=50    xoffset=2     yoffset=25    xadvance=58    page=0  chnl=15
   27.15 +char id=38   x=419   y=180   width=46    height=50    xoffset=3     yoffset=25    xadvance=49    page=0  chnl=15
   27.16 +char id=39   x=745   y=360   width=8     height=15    xoffset=5     yoffset=25    xadvance=18    page=0  chnl=15
   27.17 +char id=40   x=447   y=65    width=19    height=59    xoffset=4     yoffset=26    xadvance=23    page=0  chnl=15
   27.18 +char id=41   x=427   y=65    width=19    height=59    xoffset=0     yoffset=26    xadvance=23    page=0  chnl=15
   27.19 +char id=42   x=459   y=370   width=26    height=26    xoffset=2     yoffset=26    xadvance=30    page=0  chnl=15
   27.20 +char id=43   x=293   y=378   width=34    height=32    xoffset=7     yoffset=38    xadvance=48    page=0  chnl=15
   27.21 +char id=44   x=696   y=361   width=12    height=17    xoffset=1     yoffset=66    xadvance=17    page=0  chnl=15
   27.22 +char id=45   x=129   y=428   width=20    height=6     xoffset=4     yoffset=52    xadvance=28    page=0  chnl=15
   27.23 +char id=46   x=71    y=428   width=11    height=9     xoffset=3     yoffset=66    xadvance=17    page=0  chnl=15
   27.24 +char id=47   x=594   y=65    width=32    height=56    xoffset=-2    yoffset=26    xadvance=29    page=0  chnl=15
   27.25 +char id=48   x=692   y=174   width=34    height=50    xoffset=2     yoffset=25    xadvance=38    page=0  chnl=15
   27.26 +char id=49   x=620   y=226   width=20    height=49    xoffset=2     yoffset=25    xadvance=28    page=0  chnl=15
   27.27 +char id=50   x=508   y=230   width=32    height=49    xoffset=2     yoffset=25    xadvance=38    page=0  chnl=15
   27.28 +char id=51   x=100   y=240   width=31    height=50    xoffset=3     yoffset=25    xadvance=38    page=0  chnl=15
   27.29 +char id=52   x=506   y=280   width=38    height=48    xoffset=1     yoffset=26    xadvance=40    page=0  chnl=15
   27.30 +char id=53   x=541   y=230   width=30    height=49    xoffset=4     yoffset=26    xadvance=38    page=0  chnl=15
   27.31 +char id=54   x=657   y=175   width=34    height=50    xoffset=3     yoffset=25    xadvance=39    page=0  chnl=15
   27.32 +char id=55   x=35    y=343   width=33    height=48    xoffset=2     yoffset=26    xadvance=37    page=0  chnl=15
   27.33 +char id=56   x=622   y=175   width=34    height=50    xoffset=2     yoffset=25    xadvance=38    page=0  chnl=15
   27.34 +char id=57   x=587   y=175   width=34    height=50    xoffset=2     yoffset=25    xadvance=39    page=0  chnl=15
   27.35 +char id=58   x=612   y=328   width=11    height=37    xoffset=3     yoffset=38    xadvance=17    page=0  chnl=15
   27.36 +char id=59   x=223   y=336   width=13    height=45    xoffset=1     yoffset=38    xadvance=17    page=0  chnl=15
   27.37 +char id=60   x=225   y=382   width=32    height=34    xoffset=8     yoffset=37    xadvance=48    page=0  chnl=15
   27.38 +char id=61   x=640   y=362   width=34    height=20    xoffset=7     yoffset=44    xadvance=48    page=0  chnl=15
   27.39 +char id=62   x=192   y=387   width=32    height=34    xoffset=8     yoffset=36    xadvance=48    page=0  chnl=15
   27.40 +char id=63   x=219   y=235   width=26    height=50    xoffset=3     yoffset=25    xadvance=31    page=0  chnl=15
   27.41 +char id=64   x=659   y=65    width=57    height=55    xoffset=5     yoffset=25    xadvance=66    page=0  chnl=15
   27.42 +char id=65   x=721   y=225   width=46    height=48    xoffset=0     yoffset=26    xadvance=46    page=0  chnl=15
   27.43 +char id=66   x=660   y=275   width=35    height=48    xoffset=5     yoffset=26    xadvance=42    page=0  chnl=15
   27.44 +char id=67   x=509   y=179   width=39    height=50    xoffset=2     yoffset=25    xadvance=43    page=0  chnl=15
   27.45 +char id=68   x=254   y=286   width=43    height=48    xoffset=5     yoffset=26    xadvance=49    page=0  chnl=15
   27.46 +char id=69   x=69    y=343   width=29    height=48    xoffset=5     yoffset=26    xadvance=36    page=0  chnl=15
   27.47 +char id=70   x=159   y=340   width=28    height=48    xoffset=5     yoffset=26    xadvance=35    page=0  chnl=15
   27.48 +char id=71   x=466   y=179   width=42    height=50    xoffset=2     yoffset=25    xadvance=48    page=0  chnl=15
   27.49 +char id=72   x=342   y=283   width=41    height=48    xoffset=5     yoffset=26    xadvance=51    page=0  chnl=15
   27.50 +char id=73   x=188   y=338   width=10    height=48    xoffset=5     yoffset=26    xadvance=20    page=0  chnl=15
   27.51 +char id=74   x=597   y=226   width=22    height=49    xoffset=0     yoffset=26    xadvance=27    page=0  chnl=15
   27.52 +char id=75   x=584   y=279   width=38    height=48    xoffset=5     yoffset=26    xadvance=42    page=0  chnl=15
   27.53 +char id=76   x=129   y=340   width=29    height=48    xoffset=5     yoffset=26    xadvance=34    page=0  chnl=15
   27.54 +char id=77   x=61    y=294   width=54    height=48    xoffset=5     yoffset=26    xadvance=64    page=0  chnl=15
   27.55 +char id=78   x=210   y=287   width=43    height=48    xoffset=5     yoffset=26    xadvance=53    page=0  chnl=15
   27.56 +char id=79   x=370   y=182   width=48    height=50    xoffset=2     yoffset=25    xadvance=52    page=0  chnl=15
   27.57 +char id=80   x=0     y=343   width=34    height=48    xoffset=5     yoffset=26    xadvance=40    page=0  chnl=15
   27.58 +char id=81   x=540   y=65    width=53    height=56    xoffset=2     yoffset=25    xadvance=52    page=0  chnl=15
   27.59 +char id=82   x=466   y=281   width=39    height=48    xoffset=5     yoffset=26    xadvance=43    page=0  chnl=15
   27.60 +char id=83   x=0     y=243   width=33    height=50    xoffset=3     yoffset=25    xadvance=38    page=0  chnl=15
   27.61 +char id=84   x=545   y=280   width=38    height=48    xoffset=0     yoffset=26    xadvance=38    page=0  chnl=15
   27.62 +char id=85   x=434   y=231   width=39    height=49    xoffset=5     yoffset=26    xadvance=49    page=0  chnl=15
   27.63 +char id=86   x=165   y=289   width=44    height=48    xoffset=0     yoffset=26    xadvance=44    page=0  chnl=15
   27.64 +char id=87   x=653   y=226   width=67    height=48    xoffset=0     yoffset=26    xadvance=67    page=0  chnl=15
   27.65 +char id=88   x=298   y=285   width=43    height=48    xoffset=0     yoffset=26    xadvance=43    page=0  chnl=15
   27.66 +char id=89   x=425   y=283   width=40    height=48    xoffset=0     yoffset=26    xadvance=40    page=0  chnl=15
   27.67 +char id=90   x=384   y=283   width=40    height=48    xoffset=0     yoffset=26    xadvance=40    page=0  chnl=15
   27.68 +char id=91   x=506   y=65    width=16    height=59    xoffset=6     yoffset=26    xadvance=23    page=0  chnl=15
   27.69 +char id=92   x=627   y=65    width=31    height=56    xoffset=-1    yoffset=26    xadvance=28    page=0  chnl=15
   27.70 +char id=93   x=523   y=65    width=16    height=59    xoffset=1     yoffset=26    xadvance=23    page=0  chnl=15
   27.71 +char id=94   x=424   y=370   width=34    height=28    xoffset=7     yoffset=25    xadvance=48    page=0  chnl=15
   27.72 +char id=95   x=150   y=428   width=30    height=4     xoffset=-1    yoffset=80    xadvance=29    page=0  chnl=15
   27.73 +char id=96   x=55    y=428   width=15    height=11    xoffset=3     yoffset=22    xadvance=20    page=0  chnl=15
   27.74 +char id=97   x=524   y=329   width=30    height=37    xoffset=2     yoffset=38    xadvance=36    page=0  chnl=15
   27.75 +char id=98   x=604   y=122   width=36    height=52    xoffset=4     yoffset=23    xadvance=42    page=0  chnl=15
   27.76 +char id=99   x=555   y=329   width=29    height=37    xoffset=2     yoffset=38    xadvance=32    page=0  chnl=15
   27.77 +char id=100  x=677   y=121   width=35    height=52    xoffset=2     yoffset=23    xadvance=42    page=0  chnl=15
   27.78 +char id=101  x=490   y=330   width=33    height=37    xoffset=2     yoffset=38    xadvance=37    page=0  chnl=15
   27.79 +char id=102  x=26    y=190   width=24    height=52    xoffset=1     yoffset=22    xadvance=24    page=0  chnl=15
   27.80 +char id=103  x=151   y=130   width=36    height=53    xoffset=2     yoffset=38    xadvance=42    page=0  chnl=15
   27.81 +char id=104  x=200   y=183   width=32    height=51    xoffset=4     yoffset=23    xadvance=40    page=0  chnl=15
   27.82 +char id=105  x=305   y=182   width=10    height=51    xoffset=4     yoffset=23    xadvance=18    page=0  chnl=15
   27.83 +char id=106  x=54    y=0     width=20    height=68    xoffset=-6    yoffset=23    xadvance=18    page=0  chnl=15
   27.84 +char id=107  x=166   y=184   width=33    height=51    xoffset=4     yoffset=23    xadvance=36    page=0  chnl=15
   27.85 +char id=108  x=294   y=182   width=10    height=51    xoffset=4     yoffset=23    xadvance=18    page=0  chnl=15
   27.86 +char id=109  x=624   y=325   width=53    height=36    xoffset=4     yoffset=38    xadvance=61    page=0  chnl=15
   27.87 +char id=110  x=711   y=324   width=32    height=36    xoffset=4     yoffset=38    xadvance=40    page=0  chnl=15
   27.88 +char id=111  x=452   y=332   width=37    height=37    xoffset=2     yoffset=38    xadvance=41    page=0  chnl=15
   27.89 +char id=112  x=567   y=122   width=36    height=52    xoffset=4     yoffset=38    xadvance=42    page=0  chnl=15
   27.90 +char id=113  x=713   y=121   width=35    height=52    xoffset=2     yoffset=38    xadvance=42    page=0  chnl=15
   27.91 +char id=114  x=744   y=323   width=21    height=36    xoffset=5     yoffset=38    xadvance=26    page=0  chnl=15
   27.92 +char id=115  x=585   y=328   width=26    height=37    xoffset=2     yoffset=38    xadvance=30    page=0  chnl=15
   27.93 +char id=116  x=199   y=338   width=23    height=46    xoffset=1     yoffset=29    xadvance=25    page=0  chnl=15
   27.94 +char id=117  x=678   y=324   width=32    height=36    xoffset=4     yoffset=39    xadvance=40    page=0  chnl=15
   27.95 +char id=118  x=89    y=392   width=35    height=35    xoffset=0     yoffset=39    xadvance=35    page=0  chnl=15
   27.96 +char id=119  x=0     y=392   width=52    height=35    xoffset=0     yoffset=39    xadvance=52    page=0  chnl=15
   27.97 +char id=120  x=53    y=392   width=35    height=35    xoffset=0     yoffset=39    xadvance=35    page=0  chnl=15
   27.98 +char id=121  x=641   y=122   width=35    height=52    xoffset=0     yoffset=39    xadvance=35    page=0  chnl=15
   27.99 +char id=122  x=125   y=392   width=31    height=35    xoffset=0     yoffset=39    xadvance=32    page=0  chnl=15
  27.100 +char id=123  x=487   y=65    width=18    height=59    xoffset=3     yoffset=26    xadvance=23    page=0  chnl=15
  27.101 +char id=124  x=9     y=0     width=8     height=70    xoffset=6     yoffset=21    xadvance=19    page=0  chnl=15
  27.102 +char id=125  x=467   y=65    width=19    height=59    xoffset=2     yoffset=26    xadvance=23    page=0  chnl=15
  27.103 +char id=126  x=0     y=428   width=36    height=12    xoffset=6     yoffset=49    xadvance=48    page=0  chnl=15
  27.104 +char id=160  x=18    y=134   width=3     height=1     xoffset=-1    yoffset=91    xadvance=19    page=0  chnl=15
  27.105 +char id=161  x=246   y=235   width=11    height=50    xoffset=5     yoffset=38    xadvance=21    page=0  chnl=15
  27.106 +char id=162  x=163   y=238   width=28    height=50    xoffset=5     yoffset=26    xadvance=38    page=0  chnl=15
  27.107 +char id=163  x=474   y=230   width=33    height=49    xoffset=3     yoffset=25    xadvance=38    page=0  chnl=15
  27.108 +char id=164  x=258   y=381   width=34    height=33    xoffset=2     yoffset=33    xadvance=38    page=0  chnl=15
  27.109 +char id=165  x=623   y=276   width=36    height=48    xoffset=1     yoffset=26    xadvance=38    page=0  chnl=15
  27.110 +char id=166  x=0     y=0     width=8     height=70    xoffset=6     yoffset=21    xadvance=19    page=0  chnl=15
  27.111 +char id=167  x=0     y=190   width=25    height=52    xoffset=4     yoffset=24    xadvance=32    page=0  chnl=15
  27.112 +char id=168  x=83    y=428   width=24    height=8     xoffset=3     yoffset=25    xadvance=30    page=0  chnl=15
  27.113 +char id=169  x=74    y=188   width=53    height=51    xoffset=4     yoffset=25    xadvance=61    page=0  chnl=15
  27.114 +char id=170  x=513   y=368   width=23    height=25    xoffset=2     yoffset=25    xadvance=28    page=0  chnl=15
  27.115 +char id=171  x=537   y=367   width=33    height=23    xoffset=2     yoffset=44    xadvance=37    page=0  chnl=15
  27.116 +char id=172  x=605   y=366   width=34    height=20    xoffset=7     yoffset=46    xadvance=48    page=0  chnl=15
  27.117 +char id=173  x=108   y=428   width=20    height=6     xoffset=4     yoffset=52    xadvance=28    page=0  chnl=15
  27.118 +char id=174  x=353   y=332   width=43    height=40    xoffset=9     yoffset=25    xadvance=61    page=0  chnl=15
  27.119 +char id=175  x=181   y=424   width=30    height=4     xoffset=-1    yoffset=23    xadvance=29    page=0  chnl=15
  27.120 +char id=176  x=675   y=362   width=20    height=19    xoffset=3     yoffset=25    xadvance=26    page=0  chnl=15
  27.121 +char id=177  x=277   y=335   width=34    height=42    xoffset=7     yoffset=32    xadvance=48    page=0  chnl=15
  27.122 +char id=178  x=361   y=373   width=21    height=29    xoffset=3     yoffset=15    xadvance=26    page=0  chnl=15
  27.123 +char id=179  x=404   y=370   width=19    height=29    xoffset=4     yoffset=15    xadvance=26    page=0  chnl=15
  27.124 +char id=180  x=37    y=428   width=17    height=11    xoffset=3     yoffset=22    xadvance=20    page=0  chnl=15
  27.125 +char id=181  x=731   y=274   width=34    height=48    xoffset=4     yoffset=39    xadvance=41    page=0  chnl=15
  27.126 +char id=182  x=99    y=343   width=29    height=48    xoffset=2     yoffset=26    xadvance=33    page=0  chnl=15
  27.127 +char id=183  x=754   y=360   width=11    height=9     xoffset=3     yoffset=48    xadvance=17    page=0  chnl=15
  27.128 +char id=184  x=730   y=361   width=14    height=15    xoffset=1     yoffset=74    xadvance=14    page=0  chnl=15
  27.129 +char id=185  x=383   y=373   width=20    height=29    xoffset=4     yoffset=15    xadvance=26    page=0  chnl=15
  27.130 +char id=186  x=486   y=370   width=26    height=25    xoffset=2     yoffset=25    xadvance=30    page=0  chnl=15
  27.131 +char id=187  x=571   y=367   width=33    height=23    xoffset=2     yoffset=44    xadvance=37    page=0  chnl=15
  27.132 +char id=188  x=376   y=233   width=57    height=49    xoffset=3     yoffset=25    xadvance=64    page=0  chnl=15
  27.133 +char id=189  x=258   y=235   width=58    height=49    xoffset=3     yoffset=25    xadvance=65    page=0  chnl=15
  27.134 +char id=190  x=317   y=233   width=58    height=49    xoffset=4     yoffset=25    xadvance=67    page=0  chnl=15
  27.135 +char id=191  x=192   y=236   width=26    height=50    xoffset=3     yoffset=38    xadvance=31    page=0  chnl=15
  27.136 +char id=192  x=415   y=0     width=46    height=64    xoffset=0     yoffset=10    xadvance=46    page=0  chnl=15
  27.137 +char id=193  x=509   y=0     width=46    height=64    xoffset=0     yoffset=10    xadvance=46    page=0  chnl=15
  27.138 +char id=194  x=462   y=0     width=46    height=64    xoffset=0     yoffset=10    xadvance=46    page=0  chnl=15
  27.139 +char id=195  x=116   y=67    width=46    height=62    xoffset=0     yoffset=12    xadvance=46    page=0  chnl=15
  27.140 +char id=196  x=247   y=66    width=46    height=61    xoffset=0     yoffset=13    xadvance=46    page=0  chnl=15
  27.141 +char id=197  x=380   y=66    width=46    height=59    xoffset=0     yoffset=15    xadvance=46    page=0  chnl=15
  27.142 +char id=198  x=0     y=294   width=60    height=48    xoffset=0     yoffset=26    xadvance=62    page=0  chnl=15
  27.143 +char id=199  x=597   y=0     width=39    height=64    xoffset=2     yoffset=25    xadvance=43    page=0  chnl=15
  27.144 +char id=200  x=637   y=0     width=29    height=64    xoffset=5     yoffset=10    xadvance=36    page=0  chnl=15
  27.145 +char id=201  x=697   y=0     width=29    height=64    xoffset=5     yoffset=10    xadvance=36    page=0  chnl=15
  27.146 +char id=202  x=667   y=0     width=29    height=64    xoffset=5     yoffset=10    xadvance=36    page=0  chnl=15
  27.147 +char id=203  x=326   y=66    width=29    height=61    xoffset=5     yoffset=13    xadvance=36    page=0  chnl=15
  27.148 +char id=204  x=751   y=0     width=16    height=64    xoffset=1     yoffset=10    xadvance=20    page=0  chnl=15
  27.149 +char id=205  x=0     y=71    width=17    height=64    xoffset=4     yoffset=10    xadvance=20    page=0  chnl=15
  27.150 +char id=206  x=727   y=0     width=23    height=64    xoffset=-1    yoffset=10    xadvance=20    page=0  chnl=15
  27.151 +char id=207  x=356   y=66    width=23    height=61    xoffset=-1    yoffset=13    xadvance=20    page=0  chnl=15
  27.152 +char id=208  x=116   y=291   width=48    height=48    xoffset=0     yoffset=26    xadvance=49    page=0  chnl=15
  27.153 +char id=209  x=163   y=66    width=43    height=62    xoffset=5     yoffset=12    xadvance=53    page=0  chnl=15
  27.154 +char id=210  x=246   y=0     width=48    height=65    xoffset=2     yoffset=10    xadvance=52    page=0  chnl=15
  27.155 +char id=211  x=197   y=0     width=48    height=65    xoffset=2     yoffset=10    xadvance=52    page=0  chnl=15
  27.156 +char id=212  x=148   y=0     width=48    height=65    xoffset=2     yoffset=10    xadvance=52    page=0  chnl=15
  27.157 +char id=213  x=18    y=70    width=48    height=63    xoffset=2     yoffset=12    xadvance=52    page=0  chnl=15
  27.158 +char id=214  x=67    y=69    width=48    height=62    xoffset=2     yoffset=13    xadvance=52    page=0  chnl=15
  27.159 +char id=215  x=328   y=376   width=32    height=31    xoffset=8     yoffset=39    xadvance=48    page=0  chnl=15
  27.160 +char id=216  x=518   y=125   width=48    height=52    xoffset=2     yoffset=24    xadvance=52    page=0  chnl=15
  27.161 +char id=217  x=295   y=0     width=39    height=65    xoffset=5     yoffset=10    xadvance=49    page=0  chnl=15
  27.162 +char id=218  x=375   y=0     width=39    height=65    xoffset=5     yoffset=10    xadvance=49    page=0  chnl=15
  27.163 +char id=219  x=335   y=0     width=39    height=65    xoffset=5     yoffset=10    xadvance=49    page=0  chnl=15
  27.164 +char id=220  x=207   y=66    width=39    height=62    xoffset=5     yoffset=13    xadvance=49    page=0  chnl=15
  27.165 +char id=221  x=556   y=0     width=40    height=64    xoffset=0     yoffset=10    xadvance=40    page=0  chnl=15
  27.166 +char id=222  x=696   y=275   width=34    height=48    xoffset=5     yoffset=26    xadvance=40    page=0  chnl=15
  27.167 +char id=223  x=188   y=129   width=35    height=53    xoffset=4     yoffset=22    xadvance=40    page=0  chnl=15
  27.168 +char id=224  x=456   y=125   width=30    height=53    xoffset=2     yoffset=22    xadvance=36    page=0  chnl=15
  27.169 +char id=225  x=425   y=126   width=30    height=53    xoffset=2     yoffset=22    xadvance=36    page=0  chnl=15
  27.170 +char id=226  x=487   y=125   width=30    height=53    xoffset=2     yoffset=22    xadvance=36    page=0  chnl=15
  27.171 +char id=227  x=233   y=183   width=30    height=51    xoffset=2     yoffset=24    xadvance=36    page=0  chnl=15
  27.172 +char id=228  x=132   y=238   width=30    height=50    xoffset=2     yoffset=25    xadvance=36    page=0  chnl=15
  27.173 +char id=229  x=717   y=65    width=30    height=55    xoffset=2     yoffset=20    xadvance=36    page=0  chnl=15
  27.174 +char id=230  x=397   y=332   width=54    height=37    xoffset=2     yoffset=38    xadvance=57    page=0  chnl=15
  27.175 +char id=231  x=264   y=182   width=29    height=51    xoffset=2     yoffset=38    xadvance=32    page=0  chnl=15
  27.176 +char id=232  x=258   y=128   width=33    height=53    xoffset=2     yoffset=22    xadvance=37    page=0  chnl=15
  27.177 +char id=233  x=292   y=128   width=33    height=53    xoffset=2     yoffset=22    xadvance=37    page=0  chnl=15
  27.178 +char id=234  x=224   y=129   width=33    height=53    xoffset=2     yoffset=22    xadvance=37    page=0  chnl=15
  27.179 +char id=235  x=727   y=174   width=33    height=50    xoffset=2     yoffset=25    xadvance=37    page=0  chnl=15
  27.180 +char id=236  x=748   y=65    width=16    height=52    xoffset=0     yoffset=22    xadvance=18    page=0  chnl=15
  27.181 +char id=237  x=749   y=118   width=16    height=52    xoffset=3     yoffset=22    xadvance=18    page=0  chnl=15
  27.182 +char id=238  x=51    y=188   width=22    height=52    xoffset=-2    yoffset=22    xadvance=18    page=0  chnl=15
  27.183 +char id=239  x=572   y=229   width=24    height=49    xoffset=-3    yoffset=25    xadvance=18    page=0  chnl=15
  27.184 +char id=240  x=114   y=132   width=36    height=53    xoffset=2     yoffset=22    xadvance=40    page=0  chnl=15
  27.185 +char id=241  x=34    y=243   width=32    height=50    xoffset=4     yoffset=24    xadvance=40    page=0  chnl=15
  27.186 +char id=242  x=0     y=136   width=37    height=53    xoffset=2     yoffset=22    xadvance=41    page=0  chnl=15
  27.187 +char id=243  x=38    y=134   width=37    height=53    xoffset=2     yoffset=22    xadvance=41    page=0  chnl=15
  27.188 +char id=244  x=76    y=132   width=37    height=53    xoffset=2     yoffset=22    xadvance=41    page=0  chnl=15
  27.189 +char id=245  x=128   y=186   width=37    height=51    xoffset=2     yoffset=24    xadvance=41    page=0  chnl=15
  27.190 +char id=246  x=549   y=178   width=37    height=50    xoffset=2     yoffset=25    xadvance=41    page=0  chnl=15
  27.191 +char id=247  x=157   y=389   width=34    height=34    xoffset=7     yoffset=37    xadvance=48    page=0  chnl=15
  27.192 +char id=248  x=312   y=334   width=40    height=41    xoffset=1     yoffset=36    xadvance=41    page=0  chnl=15
  27.193 +char id=249  x=326   y=128   width=32    height=53    xoffset=4     yoffset=22    xadvance=40    page=0  chnl=15
  27.194 +char id=250  x=359   y=128   width=32    height=53    xoffset=4     yoffset=22    xadvance=40    page=0  chnl=15
  27.195 +char id=251  x=392   y=126   width=32    height=53    xoffset=4     yoffset=22    xadvance=40    page=0  chnl=15
  27.196 +char id=252  x=67    y=241   width=32    height=50    xoffset=4     yoffset=25    xadvance=40    page=0  chnl=15
  27.197 +char id=253  x=18    y=0     width=35    height=69    xoffset=0     yoffset=22    xadvance=35    page=0  chnl=15
  27.198 +char id=254  x=75    y=0     width=36    height=67    xoffset=4     yoffset=23    xadvance=42    page=0  chnl=15
  27.199 +char id=255  x=112   y=0     width=35    height=66    xoffset=0     yoffset=25    xadvance=35    page=0  chnl=15
  27.200 +kernings count=964
  27.201 +kerning first=34  second=114 amount=-2  
  27.202 +kerning first=34  second=115 amount=-2  
  27.203 +kerning first=254 second=230 amount=-1  
  27.204 +kerning first=254 second=229 amount=-1  
  27.205 +kerning first=254 second=227 amount=-1  
  27.206 +kerning first=254 second=228 amount=-1  
  27.207 +kerning first=254 second=226 amount=-1  
  27.208 +kerning first=254 second=224 amount=-1  
  27.209 +kerning first=254 second=225 amount=-1  
  27.210 +kerning first=254 second=120 amount=-1  
  27.211 +kerning first=254 second=97  amount=-1  
  27.212 +kerning first=222 second=193 amount=-5  
  27.213 +kerning first=39  second=114 amount=-2  
  27.214 +kerning first=39  second=115 amount=-3  
  27.215 +kerning first=222 second=194 amount=-5  
  27.216 +kerning first=222 second=195 amount=-5  
  27.217 +kerning first=222 second=192 amount=-5  
  27.218 +kerning first=222 second=230 amount=-2  
  27.219 +kerning first=222 second=198 amount=-9  
  27.220 +kerning first=222 second=245 amount=-2  
  27.221 +kerning first=222 second=246 amount=-2  
  27.222 +kerning first=222 second=244 amount=-2  
  27.223 +kerning first=222 second=242 amount=-2  
  27.224 +kerning first=222 second=243 amount=-2  
  27.225 +kerning first=222 second=235 amount=-2  
  27.226 +kerning first=222 second=234 amount=-2  
  27.227 +kerning first=42  second=65  amount=-5  
  27.228 +kerning first=42  second=74  amount=-5  
  27.229 +kerning first=42  second=99  amount=-3  
  27.230 +kerning first=42  second=100 amount=-3  
  27.231 +kerning first=42  second=101 amount=-3  
  27.232 +kerning first=42  second=103 amount=-3  
  27.233 +kerning first=42  second=111 amount=-3  
  27.234 +kerning first=42  second=113 amount=-3  
  27.235 +kerning first=222 second=232 amount=-2  
  27.236 +kerning first=222 second=233 amount=-2  
  27.237 +kerning first=222 second=231 amount=-2  
  27.238 +kerning first=222 second=229 amount=-2  
  27.239 +kerning first=222 second=227 amount=-2  
  27.240 +kerning first=222 second=228 amount=-2  
  27.241 +kerning first=222 second=226 amount=-2  
  27.242 +kerning first=222 second=224 amount=-2  
  27.243 +kerning first=222 second=225 amount=-2  
  27.244 +kerning first=222 second=197 amount=-5  
  27.245 +kerning first=222 second=196 amount=-5  
  27.246 +kerning first=222 second=113 amount=-2  
  27.247 +kerning first=222 second=111 amount=-2  
  27.248 +kerning first=222 second=103 amount=-2  
  27.249 +kerning first=222 second=101 amount=-2  
  27.250 +kerning first=222 second=100 amount=-2  
  27.251 +kerning first=222 second=99  amount=-2  
  27.252 +kerning first=222 second=97  amount=-2  
  27.253 +kerning first=222 second=88  amount=-2  
  27.254 +kerning first=222 second=87  amount=1   
  27.255 +kerning first=222 second=74  amount=-4  
  27.256 +kerning first=222 second=65  amount=-5  
  27.257 +kerning first=222 second=46  amount=-10 
  27.258 +kerning first=222 second=44  amount=-10 
  27.259 +kerning first=253 second=63  amount=-2  
  27.260 +kerning first=253 second=46  amount=-4  
  27.261 +kerning first=253 second=44  amount=-3  
  27.262 +kerning first=253 second=39  amount=1   
  27.263 +kerning first=253 second=34  amount=1   
  27.264 +kerning first=221 second=210 amount=-1  
  27.265 +kerning first=221 second=212 amount=-1  
  27.266 +kerning first=221 second=211 amount=-1  
  27.267 +kerning first=221 second=193 amount=-5  
  27.268 +kerning first=221 second=194 amount=-5  
  27.269 +kerning first=221 second=213 amount=-1  
  27.270 +kerning first=221 second=195 amount=-5  
  27.271 +kerning first=221 second=192 amount=-5  
  27.272 +kerning first=221 second=171 amount=-2  
  27.273 +kerning first=221 second=191 amount=-7  
  27.274 +kerning first=221 second=230 amount=-6  
  27.275 +kerning first=65  second=42  amount=-4  
  27.276 +kerning first=65  second=44  amount=2   
  27.277 +kerning first=65  second=59  amount=2   
  27.278 +kerning first=65  second=67  amount=-1  
  27.279 +kerning first=65  second=71  amount=-1  
  27.280 +kerning first=65  second=74  amount=3   
  27.281 +kerning first=65  second=79  amount=-1  
  27.282 +kerning first=65  second=84  amount=-5  
  27.283 +kerning first=65  second=85  amount=-1  
  27.284 +kerning first=65  second=86  amount=-4  
  27.285 +kerning first=65  second=87  amount=-2  
  27.286 +kerning first=65  second=89  amount=-5  
  27.287 +kerning first=65  second=90  amount=1   
  27.288 +kerning first=65  second=116 amount=-1  
  27.289 +kerning first=65  second=118 amount=-1  
  27.290 +kerning first=65  second=119 amount=-1  
  27.291 +kerning first=65  second=121 amount=-1  
  27.292 +kerning first=221 second=216 amount=-1  
  27.293 +kerning first=221 second=198 amount=-6  
  27.294 +kerning first=221 second=252 amount=-4  
  27.295 +kerning first=221 second=251 amount=-4  
  27.296 +kerning first=221 second=249 amount=-4  
  27.297 +kerning first=65  second=255 amount=-2  
  27.298 +kerning first=221 second=250 amount=-4  
  27.299 +kerning first=221 second=245 amount=-6  
  27.300 +kerning first=65  second=221 amount=-5  
  27.301 +kerning first=65  second=253 amount=-1  
  27.302 +kerning first=221 second=246 amount=-6  
  27.303 +kerning first=221 second=244 amount=-6  
  27.304 +kerning first=221 second=242 amount=-6  
  27.305 +kerning first=221 second=243 amount=-6  
  27.306 +kerning first=221 second=241 amount=-4  
  27.307 +kerning first=221 second=239 amount=3   
  27.308 +kerning first=221 second=235 amount=-6  
  27.309 +kerning first=221 second=234 amount=-6  
  27.310 +kerning first=221 second=232 amount=-6  
  27.311 +kerning first=221 second=233 amount=-6  
  27.312 +kerning first=221 second=231 amount=-6  
  27.313 +kerning first=221 second=229 amount=-6  
  27.314 +kerning first=221 second=227 amount=-5  
  27.315 +kerning first=221 second=228 amount=-4  
  27.316 +kerning first=221 second=226 amount=-6  
  27.317 +kerning first=221 second=224 amount=-6  
  27.318 +kerning first=221 second=225 amount=-6  
  27.319 +kerning first=221 second=214 amount=-1  
  27.320 +kerning first=221 second=199 amount=-2  
  27.321 +kerning first=221 second=197 amount=-5  
  27.322 +kerning first=221 second=196 amount=-5  
  27.323 +kerning first=221 second=117 amount=-4  
  27.324 +kerning first=221 second=115 amount=-4  
  27.325 +kerning first=221 second=114 amount=-4  
  27.326 +kerning first=221 second=113 amount=-6  
  27.327 +kerning first=221 second=112 amount=-4  
  27.328 +kerning first=221 second=111 amount=-6  
  27.329 +kerning first=221 second=110 amount=-4  
  27.330 +kerning first=221 second=109 amount=-4  
  27.331 +kerning first=221 second=103 amount=-6  
  27.332 +kerning first=221 second=102 amount=-1  
  27.333 +kerning first=221 second=101 amount=-6  
  27.334 +kerning first=221 second=100 amount=-6  
  27.335 +kerning first=221 second=99  amount=-6  
  27.336 +kerning first=221 second=97  amount=-6  
  27.337 +kerning first=221 second=84  amount=1   
  27.338 +kerning first=221 second=83  amount=-1  
  27.339 +kerning first=221 second=81  amount=-1  
  27.340 +kerning first=66  second=84  amount=-2  
  27.341 +kerning first=66  second=89  amount=-2  
  27.342 +kerning first=221 second=79  amount=-1  
  27.343 +kerning first=221 second=74  amount=-2  
  27.344 +kerning first=221 second=71  amount=-1  
  27.345 +kerning first=66  second=221 amount=-2  
  27.346 +kerning first=221 second=67  amount=-1  
  27.347 +kerning first=221 second=65  amount=-5  
  27.348 +kerning first=221 second=46  amount=-6  
  27.349 +kerning first=221 second=44  amount=-5  
  27.350 +kerning first=208 second=193 amount=-1  
  27.351 +kerning first=208 second=194 amount=-1  
  27.352 +kerning first=67  second=67  amount=-2  
  27.353 +kerning first=67  second=71  amount=-2  
  27.354 +kerning first=67  second=79  amount=-1  
  27.355 +kerning first=67  second=81  amount=-2  
  27.356 +kerning first=67  second=199 amount=-2  
  27.357 +kerning first=67  second=214 amount=-2  
  27.358 +kerning first=67  second=239 amount=1   
  27.359 +kerning first=67  second=216 amount=-2  
  27.360 +kerning first=67  second=171 amount=-2  
  27.361 +kerning first=67  second=213 amount=-2  
  27.362 +kerning first=208 second=195 amount=-1  
  27.363 +kerning first=208 second=192 amount=-1  
  27.364 +kerning first=67  second=211 amount=-2  
  27.365 +kerning first=67  second=212 amount=-2  
  27.366 +kerning first=67  second=210 amount=-2  
  27.367 +kerning first=208 second=198 amount=-2  
  27.368 +kerning first=208 second=197 amount=-1  
  27.369 +kerning first=208 second=196 amount=-1  
  27.370 +kerning first=208 second=90  amount=-2  
  27.371 +kerning first=208 second=88  amount=-2  
  27.372 +kerning first=208 second=84  amount=-3  
  27.373 +kerning first=208 second=65  amount=-1  
  27.374 +kerning first=208 second=46  amount=-4  
  27.375 +kerning first=208 second=44  amount=-4  
  27.376 +kerning first=210 second=90  amount=-2  
  27.377 +kerning first=210 second=88  amount=-1  
  27.378 +kerning first=210 second=84  amount=-3  
  27.379 +kerning first=210 second=65  amount=-1  
  27.380 +kerning first=212 second=90  amount=-2  
  27.381 +kerning first=68  second=44  amount=-4  
  27.382 +kerning first=68  second=46  amount=-4  
  27.383 +kerning first=68  second=65  amount=-1  
  27.384 +kerning first=68  second=84  amount=-3  
  27.385 +kerning first=68  second=88  amount=-2  
  27.386 +kerning first=68  second=90  amount=-2  
  27.387 +kerning first=68  second=196 amount=-1  
  27.388 +kerning first=68  second=197 amount=-1  
  27.389 +kerning first=68  second=198 amount=-3  
  27.390 +kerning first=212 second=88  amount=-1  
  27.391 +kerning first=68  second=192 amount=-1  
  27.392 +kerning first=68  second=195 amount=-1  
  27.393 +kerning first=212 second=84  amount=-3  
  27.394 +kerning first=212 second=65  amount=-1  
  27.395 +kerning first=211 second=90  amount=-2  
  27.396 +kerning first=68  second=194 amount=-1  
  27.397 +kerning first=68  second=193 amount=-1  
  27.398 +kerning first=211 second=88  amount=-1  
  27.399 +kerning first=211 second=84  amount=-3  
  27.400 +kerning first=211 second=65  amount=-1  
  27.401 +kerning first=200 second=74  amount=2   
  27.402 +kerning first=203 second=74  amount=2   
  27.403 +kerning first=193 second=221 amount=-5  
  27.404 +kerning first=193 second=89  amount=-5  
  27.405 +kerning first=193 second=87  amount=-2  
  27.406 +kerning first=193 second=86  amount=-4  
  27.407 +kerning first=193 second=84  amount=-5  
  27.408 +kerning first=193 second=74  amount=3   
  27.409 +kerning first=69  second=65  amount=1   
  27.410 +kerning first=69  second=74  amount=2   
  27.411 +kerning first=202 second=74  amount=2   
  27.412 +kerning first=69  second=87  amount=1   
  27.413 +kerning first=69  second=88  amount=1   
  27.414 +kerning first=69  second=196 amount=1   
  27.415 +kerning first=69  second=197 amount=1   
  27.416 +kerning first=69  second=239 amount=1   
  27.417 +kerning first=69  second=192 amount=1   
  27.418 +kerning first=69  second=195 amount=1   
  27.419 +kerning first=69  second=194 amount=1   
  27.420 +kerning first=69  second=193 amount=1   
  27.421 +kerning first=194 second=221 amount=-5  
  27.422 +kerning first=194 second=89  amount=-5  
  27.423 +kerning first=194 second=87  amount=-2  
  27.424 +kerning first=194 second=86  amount=-4  
  27.425 +kerning first=194 second=84  amount=-5  
  27.426 +kerning first=194 second=74  amount=3   
  27.427 +kerning first=255 second=113 amount=-1  
  27.428 +kerning first=255 second=111 amount=-1  
  27.429 +kerning first=255 second=103 amount=-1  
  27.430 +kerning first=255 second=101 amount=-1  
  27.431 +kerning first=255 second=100 amount=-1  
  27.432 +kerning first=255 second=99  amount=-1  
  27.433 +kerning first=213 second=90  amount=-2  
  27.434 +kerning first=213 second=88  amount=-1  
  27.435 +kerning first=213 second=84  amount=-3  
  27.436 +kerning first=213 second=65  amount=-1  
  27.437 +kerning first=70  second=44  amount=-5  
  27.438 +kerning first=70  second=46  amount=-5  
  27.439 +kerning first=70  second=65  amount=-4  
  27.440 +kerning first=70  second=74  amount=-2  
  27.441 +kerning first=70  second=83  amount=-1  
  27.442 +kerning first=70  second=84  amount=1   
  27.443 +kerning first=70  second=97  amount=-2  
  27.444 +kerning first=195 second=221 amount=-5  
  27.445 +kerning first=70  second=196 amount=-4  
  27.446 +kerning first=70  second=197 amount=-4  
  27.447 +kerning first=70  second=239 amount=2   
  27.448 +kerning first=70  second=198 amount=-6  
  27.449 +kerning first=195 second=89  amount=-5  
  27.450 +kerning first=70  second=192 amount=-4  
  27.451 +kerning first=70  second=195 amount=-4  
  27.452 +kerning first=195 second=87  amount=-2  
  27.453 +kerning first=195 second=86  amount=-4  
  27.454 +kerning first=70  second=194 amount=-4  
  27.455 +kerning first=70  second=193 amount=-4  
  27.456 +kerning first=195 second=84  amount=-5  
  27.457 +kerning first=195 second=74  amount=3   
  27.458 +kerning first=192 second=221 amount=-5  
  27.459 +kerning first=192 second=89  amount=-5  
  27.460 +kerning first=192 second=87  amount=-2  
  27.461 +kerning first=192 second=86  amount=-4  
  27.462 +kerning first=192 second=84  amount=-5  
  27.463 +kerning first=192 second=74  amount=3   
  27.464 +kerning first=187 second=221 amount=-3  
  27.465 +kerning first=187 second=89  amount=-3  
  27.466 +kerning first=187 second=87  amount=-2  
  27.467 +kerning first=187 second=86  amount=-2  
  27.468 +kerning first=187 second=84  amount=-2  
  27.469 +kerning first=171 second=90  amount=3   
  27.470 +kerning first=171 second=87  amount=3   
  27.471 +kerning first=171 second=84  amount=-2  
  27.472 +kerning first=171 second=74  amount=3   
  27.473 +kerning first=161 second=106 amount=4   
  27.474 +kerning first=191 second=221 amount=-3  
  27.475 +kerning first=71  second=84  amount=-2  
  27.476 +kerning first=71  second=86  amount=-1  
  27.477 +kerning first=71  second=121 amount=-1  
  27.478 +kerning first=71  second=255 amount=-1  
  27.479 +kerning first=71  second=253 amount=-1  
  27.480 +kerning first=191 second=106 amount=6   
  27.481 +kerning first=191 second=89  amount=-3  
  27.482 +kerning first=248 second=120 amount=-1  
  27.483 +kerning first=248 second=102 amount=-1  
  27.484 +kerning first=248 second=97  amount=-1  
  27.485 +kerning first=74  second=44  amount=-3  
  27.486 +kerning first=74  second=46  amount=-3  
  27.487 +kerning first=74  second=65  amount=-2  
  27.488 +kerning first=74  second=74  amount=-2  
  27.489 +kerning first=74  second=97  amount=-1  
  27.490 +kerning first=74  second=196 amount=-2  
  27.491 +kerning first=74  second=197 amount=-2  
  27.492 +kerning first=74  second=225 amount=-1  
  27.493 +kerning first=74  second=224 amount=-1  
  27.494 +kerning first=74  second=226 amount=-1  
  27.495 +kerning first=74  second=228 amount=-1  
  27.496 +kerning first=74  second=227 amount=-1  
  27.497 +kerning first=74  second=229 amount=-1  
  27.498 +kerning first=74  second=198 amount=-4  
  27.499 +kerning first=74  second=230 amount=-1  
  27.500 +kerning first=216 second=90  amount=-2  
  27.501 +kerning first=74  second=192 amount=-2  
  27.502 +kerning first=74  second=195 amount=-2  
  27.503 +kerning first=216 second=88  amount=-1  
  27.504 +kerning first=216 second=84  amount=-3  
  27.505 +kerning first=74  second=194 amount=-2  
  27.506 +kerning first=74  second=193 amount=-2  
  27.507 +kerning first=216 second=65  amount=-1  
  27.508 +kerning first=198 second=74  amount=1   
  27.509 +kerning first=245 second=120 amount=-1  
  27.510 +kerning first=245 second=102 amount=-1  
  27.511 +kerning first=245 second=97  amount=-1  
  27.512 +kerning first=246 second=120 amount=-1  
  27.513 +kerning first=246 second=102 amount=-1  
  27.514 +kerning first=246 second=97  amount=-1  
  27.515 +kerning first=244 second=120 amount=-1  
  27.516 +kerning first=244 second=102 amount=-1  
  27.517 +kerning first=244 second=97  amount=-1  
  27.518 +kerning first=75  second=44  amount=2   
  27.519 +kerning first=75  second=59  amount=2   
  27.520 +kerning first=75  second=67  amount=-3  
  27.521 +kerning first=75  second=71  amount=-3  
  27.522 +kerning first=75  second=74  amount=3   
  27.523 +kerning first=75  second=79  amount=-3  
  27.524 +kerning first=75  second=81  amount=-3  
  27.525 +kerning first=75  second=88  amount=1   
  27.526 +kerning first=75  second=90  amount=1   
  27.527 +kerning first=75  second=99  amount=-1  
  27.528 +kerning first=75  second=100 amount=-1  
  27.529 +kerning first=75  second=101 amount=-1  
  27.530 +kerning first=75  second=103 amount=-1  
  27.531 +kerning first=75  second=111 amount=-1  
  27.532 +kerning first=75  second=113 amount=-1  
  27.533 +kerning first=75  second=116 amount=-2  
  27.534 +kerning first=75  second=118 amount=-2  
  27.535 +kerning first=75  second=119 amount=-2  
  27.536 +kerning first=75  second=121 amount=-3  
  27.537 +kerning first=75  second=199 amount=-3  
  27.538 +kerning first=75  second=214 amount=-3  
  27.539 +kerning first=75  second=231 amount=-1  
  27.540 +kerning first=75  second=233 amount=-1  
  27.541 +kerning first=75  second=232 amount=-1  
  27.542 +kerning first=75  second=234 amount=-1  
  27.543 +kerning first=75  second=235 amount=-1  
  27.544 +kerning first=75  second=237 amount=-2  
  27.545 +kerning first=75  second=239 amount=2   
  27.546 +kerning first=75  second=243 amount=-1  
  27.547 +kerning first=75  second=242 amount=-1  
  27.548 +kerning first=75  second=244 amount=-1  
  27.549 +kerning first=75  second=246 amount=-1  
  27.550 +kerning first=75  second=245 amount=-1  
  27.551 +kerning first=75  second=216 amount=-3  
  27.552 +kerning first=75  second=213 amount=-3  
  27.553 +kerning first=242 second=120 amount=-1  
  27.554 +kerning first=242 second=102 amount=-1  
  27.555 +kerning first=75  second=255 amount=-3  
  27.556 +kerning first=242 second=97  amount=-1  
  27.557 +kerning first=243 second=120 amount=-1  
  27.558 +kerning first=75  second=211 amount=-3  
  27.559 +kerning first=75  second=212 amount=-3  
  27.560 +kerning first=75  second=210 amount=-3  
  27.561 +kerning first=243 second=102 amount=-1  
  27.562 +kerning first=75  second=253 amount=-3  
  27.563 +kerning first=243 second=97  amount=-1  
  27.564 +kerning first=214 second=90  amount=-2  
  27.565 +kerning first=214 second=88  amount=-1  
  27.566 +kerning first=214 second=84  amount=-3  
  27.567 +kerning first=214 second=65  amount=-1  
  27.568 +kerning first=201 second=74  amount=2   
  27.569 +kerning first=199 second=81  amount=-2  
  27.570 +kerning first=199 second=79  amount=-2  
  27.571 +kerning first=199 second=71  amount=-2  
  27.572 +kerning first=199 second=67  amount=-2  
  27.573 +kerning first=197 second=221 amount=-5  
  27.574 +kerning first=197 second=89  amount=-5  
  27.575 +kerning first=197 second=87  amount=-2  
  27.576 +kerning first=197 second=86  amount=-4  
  27.577 +kerning first=197 second=84  amount=-5  
  27.578 +kerning first=197 second=74  amount=3   
  27.579 +kerning first=196 second=221 amount=-5  
  27.580 +kerning first=196 second=89  amount=-5  
  27.581 +kerning first=196 second=87  amount=-3  
  27.582 +kerning first=196 second=86  amount=-4  
  27.583 +kerning first=196 second=84  amount=-5  
  27.584 +kerning first=196 second=74  amount=3   
  27.585 +kerning first=123 second=106 amount=6   
  27.586 +kerning first=121 second=245 amount=-1  
  27.587 +kerning first=121 second=246 amount=-1  
  27.588 +kerning first=121 second=244 amount=-1  
  27.589 +kerning first=121 second=242 amount=-1  
  27.590 +kerning first=121 second=243 amount=-1  
  27.591 +kerning first=121 second=235 amount=-1  
  27.592 +kerning first=121 second=234 amount=-1  
  27.593 +kerning first=121 second=232 amount=-1  
  27.594 +kerning first=121 second=233 amount=-1  
  27.595 +kerning first=121 second=231 amount=-1  
  27.596 +kerning first=121 second=113 amount=-1  
  27.597 +kerning first=121 second=111 amount=-1  
  27.598 +kerning first=121 second=103 amount=-1  
  27.599 +kerning first=121 second=101 amount=-1  
  27.600 +kerning first=121 second=100 amount=-1  
  27.601 +kerning first=121 second=99  amount=-1  
  27.602 +kerning first=121 second=63  amount=-1  
  27.603 +kerning first=121 second=46  amount=-4  
  27.604 +kerning first=121 second=44  amount=-4  
  27.605 +kerning first=121 second=39  amount=1   
  27.606 +kerning first=121 second=34  amount=1   
  27.607 +kerning first=76  second=42  amount=-7  
  27.608 +kerning first=76  second=63  amount=-3  
  27.609 +kerning first=76  second=65  amount=2   
  27.610 +kerning first=76  second=67  amount=-2  
  27.611 +kerning first=76  second=71  amount=-2  
  27.612 +kerning first=76  second=74  amount=3   
  27.613 +kerning first=76  second=79  amount=-2  
  27.614 +kerning first=76  second=81  amount=-2  
  27.615 +kerning first=76  second=84  amount=-4  
  27.616 +kerning first=76  second=85  amount=-1  
  27.617 +kerning first=76  second=86  amount=-4  
  27.618 +kerning first=76  second=87  amount=-2  
  27.619 +kerning first=76  second=89  amount=-5  
  27.620 +kerning first=76  second=90  amount=2   
  27.621 +kerning first=76  second=116 amount=-1  
  27.622 +kerning first=76  second=118 amount=-3  
  27.623 +kerning first=76  second=119 amount=-2  
  27.624 +kerning first=76  second=121 amount=-2  
  27.625 +kerning first=76  second=199 amount=-2  
  27.626 +kerning first=76  second=214 amount=-2  
  27.627 +kerning first=76  second=220 amount=-1  
  27.628 +kerning first=120 second=245 amount=-1  
  27.629 +kerning first=76  second=216 amount=-2  
  27.630 +kerning first=76  second=213 amount=-2  
  27.631 +kerning first=120 second=246 amount=-1  
  27.632 +kerning first=120 second=244 amount=-1  
  27.633 +kerning first=120 second=242 amount=-1  
  27.634 +kerning first=120 second=243 amount=-1  
  27.635 +kerning first=120 second=235 amount=-1  
  27.636 +kerning first=76  second=255 amount=-2  
  27.637 +kerning first=120 second=234 amount=-1  
  27.638 +kerning first=120 second=232 amount=-1  
  27.639 +kerning first=120 second=233 amount=-1  
  27.640 +kerning first=76  second=211 amount=-2  
  27.641 +kerning first=76  second=212 amount=-2  
  27.642 +kerning first=76  second=210 amount=-2  
  27.643 +kerning first=76  second=218 amount=-1  
  27.644 +kerning first=76  second=219 amount=-1  
  27.645 +kerning first=76  second=217 amount=-1  
  27.646 +kerning first=120 second=231 amount=-1  
  27.647 +kerning first=76  second=221 amount=-4  
  27.648 +kerning first=76  second=253 amount=-2  
  27.649 +kerning first=120 second=113 amount=-1  
  27.650 +kerning first=120 second=111 amount=-1  
  27.651 +kerning first=120 second=103 amount=-1  
  27.652 +kerning first=120 second=101 amount=-1  
  27.653 +kerning first=120 second=100 amount=-1  
  27.654 +kerning first=120 second=99  amount=-1  
  27.655 +kerning first=119 second=46  amount=-3  
  27.656 +kerning first=119 second=44  amount=-3  
  27.657 +kerning first=118 second=230 amount=-1  
  27.658 +kerning first=118 second=245 amount=-1  
  27.659 +kerning first=118 second=246 amount=-1  
  27.660 +kerning first=118 second=244 amount=-1  
  27.661 +kerning first=118 second=242 amount=-1  
  27.662 +kerning first=118 second=243 amount=-1  
  27.663 +kerning first=118 second=235 amount=-1  
  27.664 +kerning first=118 second=234 amount=-1  
  27.665 +kerning first=118 second=232 amount=-1  
  27.666 +kerning first=118 second=233 amount=-1  
  27.667 +kerning first=118 second=229 amount=-1  
  27.668 +kerning first=118 second=227 amount=-1  
  27.669 +kerning first=118 second=228 amount=-1  
  27.670 +kerning first=118 second=226 amount=-1  
  27.671 +kerning first=118 second=224 amount=-1  
  27.672 +kerning first=118 second=225 amount=-1  
  27.673 +kerning first=118 second=113 amount=-1  
  27.674 +kerning first=118 second=111 amount=-1  
  27.675 +kerning first=118 second=103 amount=-1  
  27.676 +kerning first=118 second=101 amount=-1  
  27.677 +kerning first=118 second=100 amount=-1  
  27.678 +kerning first=118 second=97  amount=-1  
  27.679 +kerning first=118 second=46  amount=-4  
  27.680 +kerning first=118 second=44  amount=-4  
  27.681 +kerning first=117 second=39  amount=-2  
  27.682 +kerning first=117 second=34  amount=-2  
  27.683 +kerning first=116 second=187 amount=1   
  27.684 +kerning first=116 second=231 amount=-1  
  27.685 +kerning first=116 second=120 amount=1   
  27.686 +kerning first=116 second=100 amount=-1  
  27.687 +kerning first=116 second=99  amount=-1  
  27.688 +kerning first=116 second=63  amount=-2  
  27.689 +kerning first=114 second=253 amount=3   
  27.690 +kerning first=114 second=245 amount=-1  
  27.691 +kerning first=114 second=246 amount=-1  
  27.692 +kerning first=79  second=44  amount=-3  
  27.693 +kerning first=79  second=46  amount=-3  
  27.694 +kerning first=79  second=65  amount=-1  
  27.695 +kerning first=79  second=74  amount=-1  
  27.696 +kerning first=79  second=84  amount=-3  
  27.697 +kerning first=79  second=88  amount=-1  
  27.698 +kerning first=79  second=89  amount=-1  
  27.699 +kerning first=79  second=90  amount=-2  
  27.700 +kerning first=79  second=196 amount=-1  
  27.701 +kerning first=79  second=197 amount=-1  
  27.702 +kerning first=114 second=244 amount=-1  
  27.703 +kerning first=79  second=192 amount=-1  
  27.704 +kerning first=79  second=195 amount=-1  
  27.705 +kerning first=114 second=242 amount=-1  
  27.706 +kerning first=114 second=243 amount=-1  
  27.707 +kerning first=114 second=235 amount=-1  
  27.708 +kerning first=79  second=194 amount=-1  
  27.709 +kerning first=79  second=193 amount=-1  
  27.710 +kerning first=114 second=234 amount=-1  
  27.711 +kerning first=79  second=221 amount=-1  
  27.712 +kerning first=114 second=232 amount=-1  
  27.713 +kerning first=114 second=233 amount=-1  
  27.714 +kerning first=114 second=231 amount=-1  
  27.715 +kerning first=114 second=122 amount=1   
  27.716 +kerning first=114 second=121 amount=3   
  27.717 +kerning first=114 second=120 amount=2   
  27.718 +kerning first=114 second=119 amount=3   
  27.719 +kerning first=114 second=118 amount=3   
  27.720 +kerning first=114 second=116 amount=2   
  27.721 +kerning first=114 second=113 amount=-1  
  27.722 +kerning first=114 second=111 amount=-1  
  27.723 +kerning first=114 second=103 amount=-1  
  27.724 +kerning first=114 second=102 amount=1   
  27.725 +kerning first=80  second=44  amount=-11 
  27.726 +kerning first=80  second=46  amount=-11 
  27.727 +kerning first=80  second=65  amount=-5  
  27.728 +kerning first=114 second=101 amount=-1  
  27.729 +kerning first=80  second=74  amount=-4  
  27.730 +kerning first=80  second=87  amount=1   
  27.731 +kerning first=80  second=88  amount=-2  
  27.732 +kerning first=80  second=97  amount=-2  
  27.733 +kerning first=80  second=99  amount=-2  
  27.734 +kerning first=80  second=100 amount=-2  
  27.735 +kerning first=80  second=101 amount=-2  
  27.736 +kerning first=80  second=103 amount=-2  
  27.737 +kerning first=80  second=111 amount=-2  
  27.738 +kerning first=80  second=113 amount=-2  
  27.739 +kerning first=80  second=196 amount=-5  
  27.740 +kerning first=80  second=197 amount=-5  
  27.741 +kerning first=80  second=225 amount=-2  
  27.742 +kerning first=80  second=224 amount=-2  
  27.743 +kerning first=80  second=226 amount=-2  
  27.744 +kerning first=80  second=228 amount=-2  
  27.745 +kerning first=80  second=227 amount=-2  
  27.746 +kerning first=80  second=229 amount=-2  
  27.747 +kerning first=80  second=231 amount=-2  
  27.748 +kerning first=80  second=233 amount=-2  
  27.749 +kerning first=80  second=232 amount=-2  
  27.750 +kerning first=80  second=234 amount=-2  
  27.751 +kerning first=80  second=235 amount=-2  
  27.752 +kerning first=80  second=243 amount=-2  
  27.753 +kerning first=80  second=242 amount=-2  
  27.754 +kerning first=80  second=244 amount=-2  
  27.755 +kerning first=80  second=246 amount=-2  
  27.756 +kerning first=80  second=245 amount=-2  
  27.757 +kerning first=80  second=198 amount=-10 
  27.758 +kerning first=80  second=230 amount=-2  
  27.759 +kerning first=114 second=100 amount=-1  
  27.760 +kerning first=80  second=192 amount=-5  
  27.761 +kerning first=80  second=195 amount=-5  
  27.762 +kerning first=114 second=99  amount=-1  
  27.763 +kerning first=114 second=59  amount=3   
  27.764 +kerning first=114 second=58  amount=3   
  27.765 +kerning first=80  second=194 amount=-5  
  27.766 +kerning first=80  second=193 amount=-5  
  27.767 +kerning first=114 second=46  amount=-6  
  27.768 +kerning first=114 second=44  amount=-5  
  27.769 +kerning first=113 second=106 amount=3   
  27.770 +kerning first=112 second=230 amount=-1  
  27.771 +kerning first=112 second=229 amount=-1  
  27.772 +kerning first=112 second=227 amount=-1  
  27.773 +kerning first=112 second=228 amount=-1  
  27.774 +kerning first=112 second=226 amount=-1  
  27.775 +kerning first=112 second=224 amount=-1  
  27.776 +kerning first=112 second=225 amount=-1  
  27.777 +kerning first=112 second=120 amount=-1  
  27.778 +kerning first=112 second=102 amount=-1  
  27.779 +kerning first=112 second=97  amount=-1  
  27.780 +kerning first=111 second=230 amount=-1  
  27.781 +kerning first=111 second=229 amount=-1  
  27.782 +kerning first=111 second=227 amount=-1  
  27.783 +kerning first=111 second=228 amount=-1  
  27.784 +kerning first=111 second=226 amount=-1  
  27.785 +kerning first=111 second=224 amount=-1  
  27.786 +kerning first=111 second=225 amount=-1  
  27.787 +kerning first=111 second=120 amount=-1  
  27.788 +kerning first=111 second=102 amount=-1  
  27.789 +kerning first=111 second=97  amount=-1  
  27.790 +kerning first=111 second=39  amount=-5  
  27.791 +kerning first=111 second=34  amount=-4  
  27.792 +kerning first=110 second=39  amount=-4  
  27.793 +kerning first=110 second=34  amount=-3  
  27.794 +kerning first=107 second=245 amount=-1  
  27.795 +kerning first=107 second=246 amount=-1  
  27.796 +kerning first=107 second=244 amount=-1  
  27.797 +kerning first=107 second=242 amount=-1  
  27.798 +kerning first=107 second=243 amount=-1  
  27.799 +kerning first=107 second=235 amount=-1  
  27.800 +kerning first=107 second=234 amount=-1  
  27.801 +kerning first=107 second=232 amount=-1  
  27.802 +kerning first=107 second=233 amount=-1  
  27.803 +kerning first=107 second=231 amount=-1  
  27.804 +kerning first=81  second=44  amount=-3  
  27.805 +kerning first=81  second=46  amount=-4  
  27.806 +kerning first=81  second=65  amount=-1  
  27.807 +kerning first=81  second=84  amount=-3  
  27.808 +kerning first=81  second=88  amount=-1  
  27.809 +kerning first=81  second=89  amount=-1  
  27.810 +kerning first=81  second=90  amount=-2  
  27.811 +kerning first=81  second=196 amount=-1  
  27.812 +kerning first=81  second=197 amount=-1  
  27.813 +kerning first=107 second=113 amount=-1  
  27.814 +kerning first=81  second=192 amount=-1  
  27.815 +kerning first=81  second=195 amount=-1  
  27.816 +kerning first=107 second=111 amount=-1  
  27.817 +kerning first=107 second=103 amount=-1  
  27.818 +kerning first=107 second=101 amount=-1  
  27.819 +kerning first=81  second=194 amount=-1  
  27.820 +kerning first=81  second=193 amount=-1  
  27.821 +kerning first=107 second=100 amount=-1  
  27.822 +kerning first=107 second=99  amount=-1  
  27.823 +kerning first=107 second=59  amount=3   
  27.824 +kerning first=107 second=58  amount=3   
  27.825 +kerning first=107 second=46  amount=3   
  27.826 +kerning first=107 second=44  amount=3   
  27.827 +kerning first=106 second=106 amount=1   
  27.828 +kerning first=103 second=106 amount=1   
  27.829 +kerning first=102 second=254 amount=1   
  27.830 +kerning first=102 second=253 amount=1   
  27.831 +kerning first=102 second=187 amount=1   
  27.832 +kerning first=102 second=239 amount=5   
  27.833 +kerning first=102 second=238 amount=1   
  27.834 +kerning first=102 second=236 amount=2   
  27.835 +kerning first=82  second=59  amount=3   
  27.836 +kerning first=82  second=67  amount=-1  
  27.837 +kerning first=82  second=71  amount=-1  
  27.838 +kerning first=82  second=74  amount=2   
  27.839 +kerning first=82  second=79  amount=-1  
  27.840 +kerning first=82  second=81  amount=-1  
  27.841 +kerning first=82  second=84  amount=-2  
  27.842 +kerning first=82  second=89  amount=-1  
  27.843 +kerning first=82  second=99  amount=-2  
  27.844 +kerning first=82  second=100 amount=-2  
  27.845 +kerning first=82  second=101 amount=-2  
  27.846 +kerning first=82  second=103 amount=-2  
  27.847 +kerning first=82  second=111 amount=-2  
  27.848 +kerning first=82  second=113 amount=-2  
  27.849 +kerning first=82  second=199 amount=-1  
  27.850 +kerning first=82  second=214 amount=-1  
  27.851 +kerning first=82  second=231 amount=-2  
  27.852 +kerning first=82  second=233 amount=-2  
  27.853 +kerning first=82  second=232 amount=-2  
  27.854 +kerning first=82  second=234 amount=-2  
  27.855 +kerning first=82  second=235 amount=-2  
  27.856 +kerning first=82  second=243 amount=-2  
  27.857 +kerning first=82  second=242 amount=-2  
  27.858 +kerning first=82  second=244 amount=-2  
  27.859 +kerning first=82  second=246 amount=-2  
  27.860 +kerning first=82  second=245 amount=-2  
  27.861 +kerning first=82  second=216 amount=-1  
  27.862 +kerning first=82  second=213 amount=-1  
  27.863 +kerning first=102 second=125 amount=2   
  27.864 +kerning first=102 second=121 amount=1   
  27.865 +kerning first=102 second=120 amount=1   
  27.866 +kerning first=82  second=211 amount=-1  
  27.867 +kerning first=82  second=212 amount=-1  
  27.868 +kerning first=82  second=210 amount=-1  
  27.869 +kerning first=82  second=221 amount=-1  
  27.870 +kerning first=102 second=119 amount=1   
  27.871 +kerning first=102 second=118 amount=1   
  27.872 +kerning first=102 second=116 amount=1   
  27.873 +kerning first=102 second=104 amount=1   
  27.874 +kerning first=102 second=98  amount=1   
  27.875 +kerning first=102 second=93  amount=4   
  27.876 +kerning first=102 second=63  amount=2   
  27.877 +kerning first=102 second=59  amount=3   
  27.878 +kerning first=102 second=58  amount=3   
  27.879 +kerning first=102 second=46  amount=-4  
  27.880 +kerning first=102 second=44  amount=-4  
  27.881 +kerning first=101 second=39  amount=-4  
  27.882 +kerning first=101 second=34  amount=-3  
  27.883 +kerning first=99  second=221 amount=-2  
  27.884 +kerning first=99  second=89  amount=-2  
  27.885 +kerning first=99  second=84  amount=-3  
  27.886 +kerning first=99  second=74  amount=2   
  27.887 +kerning first=98  second=230 amount=-1  
  27.888 +kerning first=98  second=229 amount=-1  
  27.889 +kerning first=98  second=227 amount=-1  
  27.890 +kerning first=98  second=228 amount=-1  
  27.891 +kerning first=98  second=226 amount=-1  
  27.892 +kerning first=98  second=224 amount=-1  
  27.893 +kerning first=98  second=225 amount=-1  
  27.894 +kerning first=98  second=120 amount=-1  
  27.895 +kerning first=98  second=97  amount=-1  
  27.896 +kerning first=91  second=106 amount=7   
  27.897 +kerning first=90  second=253 amount=-2  
  27.898 +kerning first=90  second=255 amount=-2  
  27.899 +kerning first=90  second=187 amount=1   
  27.900 +kerning first=90  second=239 amount=2   
  27.901 +kerning first=90  second=121 amount=-2  
  27.902 +kerning first=90  second=84  amount=1   
  27.903 +kerning first=90  second=74  amount=2   
  27.904 +kerning first=89  second=210 amount=-2  
  27.905 +kerning first=83  second=116 amount=-2  
  27.906 +kerning first=83  second=118 amount=-2  
  27.907 +kerning first=83  second=119 amount=-1  
  27.908 +kerning first=83  second=121 amount=-2  
  27.909 +kerning first=83  second=255 amount=-2  
  27.910 +kerning first=89  second=212 amount=-2  
  27.911 +kerning first=89  second=211 amount=-2  
  27.912 +kerning first=83  second=253 amount=-1  
  27.913 +kerning first=89  second=193 amount=-5  
  27.914 +kerning first=89  second=194 amount=-5  
  27.915 +kerning first=89  second=213 amount=-2  
  27.916 +kerning first=89  second=195 amount=-5  
  27.917 +kerning first=89  second=192 amount=-5  
  27.918 +kerning first=89  second=171 amount=-2  
  27.919 +kerning first=89  second=191 amount=-7  
  27.920 +kerning first=89  second=230 amount=-6  
  27.921 +kerning first=89  second=216 amount=-2  
  27.922 +kerning first=84  second=44  amount=-5  
  27.923 +kerning first=84  second=46  amount=-6  
  27.924 +kerning first=84  second=58  amount=-1  
  27.925 +kerning first=84  second=59  amount=-1  
  27.926 +kerning first=84  second=65  amount=-5  
  27.927 +kerning first=84  second=67  amount=-3  
  27.928 +kerning first=84  second=71  amount=-3  
  27.929 +kerning first=84  second=74  amount=-4  
  27.930 +kerning first=84  second=79  amount=-3  
  27.931 +kerning first=84  second=81  amount=-3  
  27.932 +kerning first=84  second=84  amount=1   
  27.933 +kerning first=84  second=86  amount=2   
  27.934 +kerning first=84  second=87  amount=1   
  27.935 +kerning first=89  second=198 amount=-7  
  27.936 +kerning first=84  second=89  amount=1   
  27.937 +kerning first=84  second=97  amount=-7  
  27.938 +kerning first=84  second=99  amount=-7  
  27.939 +kerning first=84  second=100 amount=-7  
  27.940 +kerning first=84  second=101 amount=-7  
  27.941 +kerning first=84  second=102 amount=-3  
  27.942 +kerning first=84  second=103 amount=-7  
  27.943 +kerning first=84  second=109 amount=-5  
  27.944 +kerning first=84  second=110 amount=-5  
  27.945 +kerning first=84  second=111 amount=-7  
  27.946 +kerning first=84  second=112 amount=-5  
  27.947 +kerning first=84  second=113 amount=-7  
  27.948 +kerning first=84  second=114 amount=-6  
  27.949 +kerning first=84  second=115 amount=-5  
  27.950 +kerning first=84  second=117 amount=-5  
  27.951 +kerning first=84  second=118 amount=-3  
  27.952 +kerning first=84  second=119 amount=-4  
  27.953 +kerning first=84  second=120 amount=-6  
  27.954 +kerning first=84  second=121 amount=-4  
  27.955 +kerning first=84  second=122 amount=-4  
  27.956 +kerning first=84  second=196 amount=-5  
  27.957 +kerning first=84  second=197 amount=-5  
  27.958 +kerning first=84  second=199 amount=-3  
  27.959 +kerning first=84  second=214 amount=-3  
  27.960 +kerning first=84  second=225 amount=-7  
  27.961 +kerning first=84  second=224 amount=-7  
  27.962 +kerning first=84  second=226 amount=-7  
  27.963 +kerning first=84  second=228 amount=-7  
  27.964 +kerning first=84  second=227 amount=-6  
  27.965 +kerning first=84  second=229 amount=-7  
  27.966 +kerning first=84  second=231 amount=-7  
  27.967 +kerning first=84  second=233 amount=-7  
  27.968 +kerning first=84  second=232 amount=-7  
  27.969 +kerning first=84  second=234 amount=-7  
  27.970 +kerning first=84  second=235 amount=-7  
  27.971 +kerning first=84  second=237 amount=-1  
  27.972 +kerning first=84  second=238 amount=2   
  27.973 +kerning first=84  second=239 amount=4   
  27.974 +kerning first=84  second=241 amount=-6  
  27.975 +kerning first=84  second=243 amount=-7  
  27.976 +kerning first=84  second=242 amount=-7  
  27.977 +kerning first=84  second=244 amount=-7  
  27.978 +kerning first=84  second=246 amount=-7  
  27.979 +kerning first=84  second=245 amount=-7  
  27.980 +kerning first=84  second=250 amount=-5  
  27.981 +kerning first=84  second=249 amount=-5  
  27.982 +kerning first=84  second=251 amount=-5  
  27.983 +kerning first=84  second=252 amount=-5  
  27.984 +kerning first=89  second=252 amount=-5  
  27.985 +kerning first=84  second=198 amount=-9  
  27.986 +kerning first=84  second=216 amount=-3  
  27.987 +kerning first=84  second=230 amount=-7  
  27.988 +kerning first=84  second=171 amount=-3  
  27.989 +kerning first=84  second=187 amount=-2  
  27.990 +kerning first=89  second=251 amount=-5  
  27.991 +kerning first=84  second=192 amount=-5  
  27.992 +kerning first=84  second=195 amount=-5  
  27.993 +kerning first=84  second=213 amount=-3  
  27.994 +kerning first=89  second=249 amount=-5  
  27.995 +kerning first=89  second=250 amount=-5  
  27.996 +kerning first=89  second=245 amount=-6  
  27.997 +kerning first=89  second=246 amount=-6  
  27.998 +kerning first=84  second=255 amount=-4  
  27.999 +kerning first=89  second=244 amount=-6  
 27.1000 +kerning first=89  second=242 amount=-6  
 27.1001 +kerning first=89  second=243 amount=-6  
 27.1002 +kerning first=89  second=241 amount=-5  
 27.1003 +kerning first=84  second=194 amount=-5  
 27.1004 +kerning first=84  second=193 amount=-5  
 27.1005 +kerning first=84  second=211 amount=-3  
 27.1006 +kerning first=84  second=212 amount=-3  
 27.1007 +kerning first=84  second=210 amount=-3  
 27.1008 +kerning first=89  second=239 amount=3   
 27.1009 +kerning first=89  second=235 amount=-6  
 27.1010 +kerning first=84  second=221 amount=1   
 27.1011 +kerning first=84  second=253 amount=-3  
 27.1012 +kerning first=89  second=234 amount=-6  
 27.1013 +kerning first=89  second=232 amount=-6  
 27.1014 +kerning first=89  second=233 amount=-6  
 27.1015 +kerning first=89  second=231 amount=-6  
 27.1016 +kerning first=89  second=229 amount=-6  
 27.1017 +kerning first=89  second=227 amount=-5  
 27.1018 +kerning first=89  second=228 amount=-5  
 27.1019 +kerning first=89  second=226 amount=-6  
 27.1020 +kerning first=89  second=224 amount=-6  
 27.1021 +kerning first=89  second=225 amount=-6  
 27.1022 +kerning first=89  second=214 amount=-2  
 27.1023 +kerning first=89  second=199 amount=-2  
 27.1024 +kerning first=89  second=197 amount=-5  
 27.1025 +kerning first=89  second=196 amount=-5  
 27.1026 +kerning first=89  second=117 amount=-5  
 27.1027 +kerning first=89  second=115 amount=-4  
 27.1028 +kerning first=89  second=114 amount=-5  
 27.1029 +kerning first=89  second=113 amount=-6  
 27.1030 +kerning first=89  second=112 amount=-5  
 27.1031 +kerning first=89  second=111 amount=-6  
 27.1032 +kerning first=89  second=110 amount=-5  
 27.1033 +kerning first=89  second=109 amount=-5  
 27.1034 +kerning first=89  second=103 amount=-6  
 27.1035 +kerning first=89  second=102 amount=-1  
 27.1036 +kerning first=89  second=101 amount=-6  
 27.1037 +kerning first=89  second=100 amount=-6  
 27.1038 +kerning first=89  second=99  amount=-6  
 27.1039 +kerning first=89  second=97  amount=-6  
 27.1040 +kerning first=89  second=84  amount=1   
 27.1041 +kerning first=89  second=83  amount=-1  
 27.1042 +kerning first=89  second=81  amount=-2  
 27.1043 +kerning first=89  second=79  amount=-2  
 27.1044 +kerning first=89  second=74  amount=-3  
 27.1045 +kerning first=89  second=71  amount=-2  
 27.1046 +kerning first=89  second=67  amount=-2  
 27.1047 +kerning first=89  second=65  amount=-5  
 27.1048 +kerning first=89  second=46  amount=-7  
 27.1049 +kerning first=89  second=44  amount=-7  
 27.1050 +kerning first=88  second=210 amount=-1  
 27.1051 +kerning first=88  second=212 amount=-1  
 27.1052 +kerning first=88  second=211 amount=-1  
 27.1053 +kerning first=88  second=213 amount=-1  
 27.1054 +kerning first=88  second=216 amount=-1  
 27.1055 +kerning first=88  second=239 amount=3   
 27.1056 +kerning first=88  second=214 amount=-1  
 27.1057 +kerning first=88  second=199 amount=-1  
 27.1058 +kerning first=88  second=84  amount=1   
 27.1059 +kerning first=88  second=81  amount=-1  
 27.1060 +kerning first=88  second=79  amount=-1  
 27.1061 +kerning first=88  second=74  amount=3   
 27.1062 +kerning first=88  second=71  amount=-1  
 27.1063 +kerning first=88  second=67  amount=-1  
 27.1064 +kerning first=88  second=59  amount=2   
 27.1065 +kerning first=88  second=46  amount=2   
 27.1066 +kerning first=88  second=44  amount=2   
 27.1067 +kerning first=87  second=193 amount=-2  
 27.1068 +kerning first=87  second=194 amount=-2  
 27.1069 +kerning first=87  second=195 amount=-2  
 27.1070 +kerning first=87  second=192 amount=-2  
 27.1071 +kerning first=87  second=187 amount=1   
 27.1072 +kerning first=87  second=171 amount=-2  
 27.1073 +kerning first=87  second=191 amount=-3  
 27.1074 +kerning first=87  second=230 amount=-3  
 27.1075 +kerning first=87  second=198 amount=-4  
 27.1076 +kerning first=87  second=245 amount=-2  
 27.1077 +kerning first=87  second=246 amount=-2  
 27.1078 +kerning first=87  second=244 amount=-2  
 27.1079 +kerning first=87  second=242 amount=-2  
 27.1080 +kerning first=87  second=243 amount=-2  
 27.1081 +kerning first=87  second=239 amount=4   
 27.1082 +kerning first=87  second=238 amount=2   
 27.1083 +kerning first=87  second=235 amount=-2  
 27.1084 +kerning first=87  second=234 amount=-2  
 27.1085 +kerning first=87  second=232 amount=-2  
 27.1086 +kerning first=87  second=233 amount=-2  
 27.1087 +kerning first=87  second=231 amount=-2  
 27.1088 +kerning first=85  second=65  amount=-1  
 27.1089 +kerning first=85  second=198 amount=-4  
 27.1090 +kerning first=87  second=229 amount=-3  
 27.1091 +kerning first=87  second=227 amount=-3  
 27.1092 +kerning first=87  second=228 amount=-3  
 27.1093 +kerning first=87  second=226 amount=-3  
 27.1094 +kerning first=87  second=224 amount=-3  
 27.1095 +kerning first=87  second=225 amount=-3  
 27.1096 +kerning first=87  second=197 amount=-2  
 27.1097 +kerning first=86  second=44  amount=-7  
 27.1098 +kerning first=86  second=46  amount=-7  
 27.1099 +kerning first=86  second=65  amount=-4  
 27.1100 +kerning first=86  second=67  amount=-1  
 27.1101 +kerning first=86  second=71  amount=-1  
 27.1102 +kerning first=86  second=74  amount=-3  
 27.1103 +kerning first=87  second=196 amount=-2  
 27.1104 +kerning first=86  second=81  amount=-1  
 27.1105 +kerning first=86  second=83  amount=-1  
 27.1106 +kerning first=86  second=84  amount=1   
 27.1107 +kerning first=86  second=97  amount=-5  
 27.1108 +kerning first=86  second=99  amount=-4  
 27.1109 +kerning first=86  second=100 amount=-4  
 27.1110 +kerning first=86  second=101 amount=-4  
 27.1111 +kerning first=86  second=103 amount=-4  
 27.1112 +kerning first=86  second=109 amount=-2  
 27.1113 +kerning first=86  second=110 amount=-2  
 27.1114 +kerning first=86  second=111 amount=-4  
 27.1115 +kerning first=86  second=112 amount=-2  
 27.1116 +kerning first=86  second=113 amount=-4  
 27.1117 +kerning first=86  second=114 amount=-2  
 27.1118 +kerning first=86  second=115 amount=-2  
 27.1119 +kerning first=86  second=117 amount=-2  
 27.1120 +kerning first=86  second=196 amount=-4  
 27.1121 +kerning first=86  second=197 amount=-4  
 27.1122 +kerning first=86  second=199 amount=-1  
 27.1123 +kerning first=87  second=113 amount=-2  
 27.1124 +kerning first=86  second=225 amount=-5  
 27.1125 +kerning first=86  second=224 amount=-5  
 27.1126 +kerning first=86  second=226 amount=-5  
 27.1127 +kerning first=86  second=228 amount=-5  
 27.1128 +kerning first=86  second=227 amount=-5  
 27.1129 +kerning first=86  second=229 amount=-5  
 27.1130 +kerning first=86  second=231 amount=-4  
 27.1131 +kerning first=86  second=233 amount=-4  
 27.1132 +kerning first=86  second=232 amount=-4  
 27.1133 +kerning first=86  second=234 amount=-4  
 27.1134 +kerning first=86  second=235 amount=-4  
 27.1135 +kerning first=86  second=238 amount=1   
 27.1136 +kerning first=86  second=239 amount=3   
 27.1137 +kerning first=86  second=241 amount=-2  
 27.1138 +kerning first=86  second=243 amount=-4  
 27.1139 +kerning first=86  second=242 amount=-4  
 27.1140 +kerning first=86  second=244 amount=-4  
 27.1141 +kerning first=86  second=246 amount=-4  
 27.1142 +kerning first=86  second=245 amount=-4  
 27.1143 +kerning first=86  second=250 amount=-2  
 27.1144 +kerning first=86  second=249 amount=-2  
 27.1145 +kerning first=86  second=251 amount=-2  
 27.1146 +kerning first=86  second=252 amount=-2  
 27.1147 +kerning first=87  second=111 amount=-2  
 27.1148 +kerning first=86  second=198 amount=-7  
 27.1149 +kerning first=87  second=103 amount=-2  
 27.1150 +kerning first=86  second=230 amount=-5  
 27.1151 +kerning first=86  second=191 amount=-4  
 27.1152 +kerning first=86  second=171 amount=-2  
 27.1153 +kerning first=87  second=101 amount=-2  
 27.1154 +kerning first=86  second=192 amount=-4  
 27.1155 +kerning first=86  second=195 amount=-4  
 27.1156 +kerning first=87  second=100 amount=-2  
 27.1157 +kerning first=87  second=99  amount=-2  
 27.1158 +kerning first=87  second=97  amount=-3  
 27.1159 +kerning first=87  second=84  amount=1   
 27.1160 +kerning first=87  second=65  amount=-2  
 27.1161 +kerning first=87  second=46  amount=-4  
 27.1162 +kerning first=86  second=194 amount=-4  
 27.1163 +kerning first=86  second=193 amount=-4  
 27.1164 +kerning first=87  second=44  amount=-4  
    28.1 Binary file resources/fonts/SegoeUI-92pt_smbld_0.png has changed
    29.1 Binary file resources/fonts/SegoeUI-92pt_smbld_1.png has changed
    30.1 Binary file resources/images/amaico_114.png has changed
    31.1 Binary file resources/images/amaico_99.png has changed
    32.1 Binary file resources/images/butback.png has changed
    33.1 Binary file resources/images/buttadd.png has changed
    34.1 Binary file resources/images/buttdel1.png has changed
    35.1 Binary file resources/images/butthelp.png has changed
    36.1 Binary file resources/images/buttinfo.png has changed
    37.1 Binary file resources/images/splashscreen.png has changed
    38.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    38.2 +++ b/resources/main.lua	Wed Jul 31 19:28:00 2013 +0200
    38.3 @@ -0,0 +1,11 @@
    38.4 +-- Your app starts here!
    38.5 +--require('mobdebug').start()
    38.6 +
    38.7 +-- Load scene blocks
    38.8 +sceneMain = dofile('scenemain.lua')
    38.9 +sceneAbout = dofile('sceneabout.lua')
   38.10 +sceneHelp = dofile('scenehelp.lua')
   38.11 +
   38.12 +-- Bootstrap initial scene
   38.13 +director:setCurrentScene(nil)
   38.14 +director:moveToScene(sceneMain)
    39.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    39.2 +++ b/resources/sceneabout.lua	Wed Jul 31 19:28:00 2013 +0200
    39.3 @@ -0,0 +1,85 @@
    39.4 +-- Initiate scene management
    39.5 +local sceneloc = director:createScene()
    39.6 +sceneloc.name = 'Scene: About'
    39.7 +
    39.8 +-- Constants calculated
    39.9 +local dsw = director.displayWidth
   39.10 +local dsh = director.displayHeight
   39.11 +
   39.12 +-- Fonts created
   39.13 +local fontarial = director:createFont('fonts/Arial-96pt_bold.fnt')
   39.14 +local fontklein = director:createFont('fonts/SegoeUI-64pt_smbld.fnt')
   39.15 +
   39.16 +function sceneloc:setUp(event)
   39.17 +    dbg.print('sceneloc:setUp')
   39.18 +
   39.19 +    -- Print background
   39.20 +    local imgback = director:createSprite(0, 0, 'textures/skynorm.png')
   39.21 +    imgback.xScale = dsw / imgback.w
   39.22 +    imgback.yScale = (dsh - fontarial.height * 1.5) / imgback.h
   39.23 +
   39.24 +    -- Heading labels
   39.25 +    local labtitle = director:createLabel({
   39.26 +        x=0, y=-fontarial.height*1.5/6,
   39.27 +        hAlignment='centre', vAlignment='top',
   39.28 +        font=fontarial,
   39.29 +        text='About',
   39.30 +        color={0xe0, 0xe0, 0xff}
   39.31 +    })
   39.32 +    local butback = director:createSprite(0, 0, 'images/butback.png')
   39.33 +    butback.x = fontarial.height*1.5/2
   39.34 +    butback.y = dsh-fontarial.height*1.5/2
   39.35 +    butback.xAnchor = 0.5
   39.36 +    butback.yAnchor = 0.5
   39.37 +
   39.38 +    -- Body text labels
   39.39 +    local rectalph = director:createRectangle(fontklein.height, fontklein.height, dsw - fontklein.height * 2, dsh - fontarial.height * 1.5 - fontklein.height * 2)
   39.40 +    rectalph.color = color.white
   39.41 +    rectalph.color.a = 64
   39.42 +    local labcont = director:createLabel({
   39.43 +        x=fontklein.height*1.5, y=-fontarial.height * 2 - fontklein.height * .5,
   39.44 +        w=dsw-fontklein.height*3, h=0,
   39.45 +        hAlignment='left', vAlignment='top',
   39.46 +        font=fontklein,
   39.47 +        text='Amalog\n\nAmateur Radio Logbook 0.7\nAmalog stores call records (QSOs) typically logged by amateur radio enthusiasts.\nVisit the Amalog Homepage\n\nCopyright 2012-2013\nMichael Schloh von Bennewitz\nMade with Marmalade SDK\n\nThis software is distributed under the terms of the European Union Public Licence (EUPL) version 1.1'
   39.48 +    })
   39.49 +
   39.50 +    -- Good transitions: slideInL/R, shrinkGrow, crossFade, fadeTR/BL, pageTurn, progressVertical
   39.51 +    local transoptl = {transitionType = 'slideInL', transitionTime = 0.5}
   39.52 +
   39.53 +    function butback:touch(event)
   39.54 +        if event.phase == 'began' then
   39.55 +            director:moveToScene(sceneMain, transoptl)
   39.56 +        end
   39.57 +    end
   39.58 +    butback:addEventListener('touch', butback)
   39.59 +end
   39.60 +
   39.61 +function sceneloc:tearDown(event)
   39.62 +    dbg.print('sceneloc:tearDown')
   39.63 +    --self.obj0:removeFromParent()
   39.64 +    --self.obj1:removeFromParent()
   39.65 +    --self.obj0 = nil
   39.66 +    --self.obj1 = nil
   39.67 +end
   39.68 +
   39.69 +function sceneloc:enterPreTransition(event)
   39.70 +    dbg.print('sceneloc:enterPreTransition')
   39.71 +end
   39.72 +
   39.73 +function sceneloc:enterPostTransition(event)
   39.74 +    dbg.print('sceneloc:enterPostTransition')
   39.75 +end
   39.76 +
   39.77 +function sceneloc:exitPreTransition(event)
   39.78 +    dbg.print('sceneloc:exitPreTransition')
   39.79 +end
   39.80 +
   39.81 +function sceneloc:exitPostTransition(event)
   39.82 +    dbg.print('sceneloc:exitPostTransition')
   39.83 +end
   39.84 +
   39.85 +sceneloc:addEventListener({'setUp', 'tearDown', 'enterPreTransition',
   39.86 +    'enterPostTransition', 'exitPreTransition', 'exitPostTransition'}, sceneloc)
   39.87 +
   39.88 +return sceneloc
    40.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    40.2 +++ b/resources/scenehelp.lua	Wed Jul 31 19:28:00 2013 +0200
    40.3 @@ -0,0 +1,84 @@
    40.4 +-- Initiate scene management
    40.5 +local sceneloc = director:createScene()
    40.6 +sceneloc.name = 'Scene: Help'
    40.7 +
    40.8 +-- Constants calculated
    40.9 +local dsw = director.displayWidth
   40.10 +local dsh = director.displayHeight
   40.11 +
   40.12 +-- Fonts created
   40.13 +local fontarial = director:createFont('fonts/Arial-96pt_bold.fnt')
   40.14 +local fontklein = director:createFont('fonts/SegoeUI-64pt_smbld.fnt')
   40.15 +
   40.16 +function sceneloc:setUp(event)
   40.17 +    dbg.print('sceneloc:setUp')
   40.18 +
   40.19 +    -- Print background
   40.20 +    local imgback = director:createSprite(0, 0, 'textures/skynorm.png')
   40.21 +    imgback.xScale = dsw / imgback.w
   40.22 +    imgback.yScale = (dsh - fontarial.height * 1.5) / imgback.h
   40.23 +
   40.24 +    -- Heading labels
   40.25 +    local labtitle = director:createLabel({
   40.26 +        x=0, y=-fontarial.height*1.5/6,
   40.27 +        hAlignment='centre', vAlignment='top',
   40.28 +        font=fontarial,
   40.29 +        text='Help',
   40.30 +        color={0xe0, 0xe0, 0xff}
   40.31 +    })
   40.32 +    local butback = director:createSprite(0, 0, 'images/butback.png')
   40.33 +    butback.x = fontarial.height*1.5/2
   40.34 +    butback.y = dsh-fontarial.height*1.5/2
   40.35 +    butback.xAnchor = 0.5
   40.36 +    butback.yAnchor = 0.5
   40.37 +
   40.38 +    -- Body text labels
   40.39 +    local rectalph = director:createRectangle(fontklein.height, fontklein.height, dsw - fontklein.height * 2, dsh - fontarial.height * 1.5 - fontklein.height * 2)
   40.40 +    rectalph.color = color.white
   40.41 +    rectalph.color.a = 64
   40.42 +    local labcont = director:createLabel({
   40.43 +        x=fontklein.height*1.5, y=-fontarial.height * 2 - fontklein.height * .5,
   40.44 +        w=dsw-fontklein.height*3, h=0,
   40.45 +        hAlignment='left', vAlignment='top',
   40.46 +        font=fontklein,
   40.47 +        text='To start using Amalog now\n    1. Press \'Add\' to add a QSO call entry:\n    2. Enter free text into the add field\n    3. Press \'Okay\' to store the new entry\n    4. Repeat steps 1-3 as appropriate\n\nTo delete a QSO call entry\n    1. Press a entry in the list to highlight\n    2. Press \'Delete\' at the bottom to delete'
   40.48 +    })
   40.49 +    -- Good transitions: slideInL/R, shrinkGrow, crossFade, fadeTR/BL, pageTurn, progressVertical
   40.50 +    local transoptl = {transitionType = 'slideInL', transitionTime = 0.5}
   40.51 +
   40.52 +    function butback:touch(event)
   40.53 +        if event.phase == 'began' then
   40.54 +            director:moveToScene(sceneMain, transoptl)
   40.55 +        end
   40.56 +    end
   40.57 +    butback:addEventListener('touch', butback)
   40.58 +end
   40.59 +
   40.60 +function sceneloc:tearDown(event)
   40.61 +    dbg.print('sceneloc:tearDown')
   40.62 +    --self.obj0:removeFromParent()
   40.63 +    --self.obj1:removeFromParent()
   40.64 +    --self.obj0 = nil
   40.65 +    --self.obj1 = nil
   40.66 +end
   40.67 +
   40.68 +function sceneloc:enterPreTransition(event)
   40.69 +    dbg.print('sceneloc:enterPreTransition')
   40.70 +end
   40.71 +
   40.72 +function sceneloc:enterPostTransition(event)
   40.73 +    dbg.print('sceneloc:enterPostTransition')
   40.74 +end
   40.75 +
   40.76 +function sceneloc:exitPreTransition(event)
   40.77 +    dbg.print('sceneloc:exitPreTransition')
   40.78 +end
   40.79 +
   40.80 +function sceneloc:exitPostTransition(event)
   40.81 +    dbg.print('sceneloc:exitPostTransition')
   40.82 +end
   40.83 +
   40.84 +sceneloc:addEventListener({'setUp', 'tearDown', 'enterPreTransition',
   40.85 +    'enterPostTransition', 'exitPreTransition', 'exitPostTransition'}, sceneloc)
   40.86 +
   40.87 +return sceneloc
    41.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    41.2 +++ b/resources/scenemain.lua	Wed Jul 31 19:28:00 2013 +0200
    41.3 @@ -0,0 +1,2587 @@
    41.4 +-- Initiate scene management
    41.5 +local sceneloc = director:createScene()
    41.6 +sceneloc.name = 'Scene: Main'
    41.7 +
    41.8 +-- Database instantiated
    41.9 +local debe
   41.10 +local pathStor = system:getFilePath('storage')
   41.11 +debe = sqlite3.open(pathStor .. 'amalog.sql')
   41.12 +debe:exec[=[
   41.13 +    CREATE TABLE qsos(id INTEGER PRIMARY KEY, call TEXT);
   41.14 +]=]
   41.15 +debe:close()
   41.16 +debe = nil
   41.17 +
   41.18 +-- Constants calculated
   41.19 +local dsw = director.displayWidth
   41.20 +local dsh = director.displayHeight
   41.21 +local dmw = director.displayCenterX
   41.22 +local dmh = director.displayCenterY
   41.23 +
   41.24 +-- Fonts created
   41.25 +local fontsegoe = director:createFont('fonts/SegoeUI-92pt_smbld.fnt')
   41.26 +local fontarial = director:createFont('fonts/Arial-96pt_bold.fnt')
   41.27 +
   41.28 +-- Tables of indexed and marked db rows
   41.29 +local dbIdx = {0, 0, 0, 0, 0, 0, 0}
   41.30 +local dbMrk = {0, 0, 0, 0, 0, 0, 0}
   41.31 +
   41.32 +-- Scrolling index
   41.33 +local nScroll = 0
   41.34 +
   41.35 +-- Scrolling placeholder
   41.36 +local posMove = 0
   41.37 +
   41.38 +function sceneloc:setUp(event)
   41.39 +    dbg.print('sceneloc:setUp')
   41.40 +    --self.obj0 = director:createLabel(4, dh/2, 'MAIN MENU')
   41.41 +    --self.obj1 = director:createRectangle(
   41.42 +
   41.43 +    -- Print background
   41.44 +    local imgback = director:createSprite(0, dsh - fontarial.height * 12, 'textures/skynorm.png')
   41.45 +    imgback.xScale = dsw / imgback.w
   41.46 +    imgback.yScale = fontarial.height * 10.5 / imgback.h
   41.47 +
   41.48 +    -- Declare defaults
   41.49 +    --director:setNodesColor(32, 32, 32, 128)
   41.50 +    --director:setNodesColor(112, 128, 144, 255)
   41.51 +    director:setNodesColor(192, 192, 192)
   41.52 +
   41.53 +    -- Heading labels
   41.54 +    --    x=0, y=dsh-fontarial.height,
   41.55 +    --    x=dsw/2, y=dsh-fontarial.height,
   41.56 +    --    textTouchableBorder=0
   41.57 +    local labnull = director:createLabel()
   41.58 +    --labnull.isVisible = false
   41.59 +    --    x=-dsw/4, y=-fontarial.height*1.5/6,
   41.60 +    --    x=dsw/4, y=-fontarial.height*1.5/6,
   41.61 +    --    hAlignment='centre', vAlignment='top',
   41.62 +    local labtitle = director:createLabel({
   41.63 +        x=0, y=-fontarial.height*1.5/6,
   41.64 +        hAlignment='centre', vAlignment='top',
   41.65 +        font=fontarial,
   41.66 +        text='Amalog',
   41.67 +        color={0xe0, 0xe0, 0xff}
   41.68 +    })
   41.69 +    local butabout = director:createSprite(0, 0, 'images/buttinfo.png')
   41.70 +    butabout.x = fontarial.height*1.5/2
   41.71 +    butabout.y = dsh-fontarial.height*1.5/2
   41.72 +    butabout.xAnchor = 0.5
   41.73 +    butabout.yAnchor = 0.5
   41.74 +    local buthelp = director:createSprite(0, 0, 'images/butthelp.png')
   41.75 +    buthelp.x = dsw-fontarial.height*1.5/2
   41.76 +    buthelp.y = dsh-fontarial.height*1.5/2
   41.77 +    buthelp.xAnchor = 0.5
   41.78 +    buthelp.yAnchor = 0.5
   41.79 +    --tween:dissolve(labnull, butabout, 1, 0)
   41.80 +    --tween:dissolve(labnull, buthelp, 1, 0)
   41.81 +
   41.82 +    --local rectest = director:createRectangle(0, (dsh - fontarial.height * 4.5), dsw, fontarial.height * 1.5)
   41.83 +    rectoddy = director:createRectangle(0, (dsh - fontarial.height * 3), dsw, fontarial.height * 1.5)
   41.84 +    --rectoddy.color = color.black; rectoddy.color.a = 224;
   41.85 +    rectoddy.color = color.lightGrey
   41.86 +    recteven = director:createRectangle(0, (dsh - fontarial.height * 4.5), dsw, fontarial.height * 1.5)
   41.87 +    recthree = director:createRectangle(0, (dsh - fontarial.height * 6), dsw, fontarial.height * 1.5)
   41.88 +    --recthree.color = color.black; recthree.color.a = 224;
   41.89 +    recthree.color = color.lightGrey
   41.90 +    rectfour = director:createRectangle(0, (dsh - fontarial.height * 7.5), dsw, fontarial.height * 1.5)
   41.91 +    rectfive = director:createRectangle(0, (dsh - fontarial.height * 9), dsw, fontarial.height * 1.5)
   41.92 +    --rectfive.color = color.black; rectfive.color.a = 224;
   41.93 +    rectfive.color = color.lightGrey
   41.94 +    rectseis = director:createRectangle(0, (dsh - fontarial.height * 10.5), dsw, fontarial.height * 1.5)
   41.95 +    rectsieb = director:createRectangle(0, (dsh - fontarial.height * 12), dsw, fontarial.height * 1.5)
   41.96 +    --rectsieb.color = color.black; rectsieb.color.a = 224;
   41.97 +    rectsieb.color = color.lightGrey
   41.98 +
   41.99 +    ----local labtext = director:createLabel(0, 0, 'Excusez moi Welt!')
  41.100 +    --local labheight = director:createLabel({x=0, y=0, font=fontsegoe, color=color.white, text=dsh})
  41.101 +    --local labwidth  = director:createLabel({x=0, y=fontsegoe.height, font=fontsegoe, color=color.yellow, text=dsw})
  41.102 +    --local labmith  = director:createLabel({x=0, y=2*fontsegoe.height, font=fontsegoe, color=color.green, text=dmh})
  41.103 +    --local labmitw  = director:createLabel({x=0, y=3*fontsegoe.height, font=fontsegoe, color=color.blue, text=dmw})
  41.104 +
  41.105 +    function rectoddy:touch(event)
  41.106 +        if event.phase == 'began' then
  41.107 +            posMove = event.y
  41.108 +            local nBase = event.y - (dsh - fontarial.height * 12)
  41.109 +            local nRect = fontarial.height * 1.5
  41.110 +            local nTemp = nBase / nRect
  41.111 +            local nIdx  = 7 - math.floor(nTemp)
  41.112 +            if dbIdx[nIdx] == 0 then
  41.113 +                return
  41.114 +            elseif rectoddy.color.r == 240 and rectoddy.color.g == 230 and rectoddy.color.b == 140 then
  41.115 +                rectoddy.color = color.lightGrey
  41.116 +                dbMrk[nIdx] = 0
  41.117 +            else
  41.118 +                rectoddy.color = color.khaki
  41.119 +                dbMrk[nIdx] = dbIdx[nIdx]
  41.120 +            end
  41.121 +        end
  41.122 +
  41.123 +        --if event.phase == 'moved' then
  41.124 +        --    posMove = event.y
  41.125 +        --end
  41.126 +
  41.127 +        if event.phase == 'ended' then
  41.128 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.129 +                -- Provide callback to count rows in table
  41.130 +                local nCount = 0
  41.131 +                function countrows(udata, cols, values, names)
  41.132 +                    assert(udata == 'dingdong')
  41.133 +                    nCount = tonumber(values[1])
  41.134 +                    return 0
  41.135 +                end
  41.136 +
  41.137 +                -- Repopulate UI conditionally
  41.138 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.139 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.140 +                debe:close()
  41.141 +                debe = nil
  41.142 +
  41.143 +                if event.y - posMove > 0 then  -- Gesture upward
  41.144 +                    if nScroll + 7 < nCount then
  41.145 +                        nScroll = nScroll + 7
  41.146 +                    else
  41.147 +                        return
  41.148 +                    end
  41.149 +                else -- Gesture downward
  41.150 +                    if nScroll - 7 >= 0 then
  41.151 +                        nScroll = nScroll - 7
  41.152 +                    else
  41.153 +                        return
  41.154 +                    end
  41.155 +                end
  41.156 +
  41.157 +                -- Kludge stucked event handlers
  41.158 +                rectoddy:removeEventListener('touch', rectoddy)
  41.159 +                recteven:removeEventListener('touch', recteven)
  41.160 +                recthree:removeEventListener('touch', recthree)
  41.161 +                rectfour:removeEventListener('touch', rectfour)
  41.162 +                rectfive:removeEventListener('touch', rectfive)
  41.163 +                rectseis:removeEventListener('touch', rectseis)
  41.164 +                rectsieb:removeEventListener('touch', rectsieb)
  41.165 +
  41.166 +                -- Clear viewport
  41.167 +                for nIter = 0, 6 do
  41.168 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.169 +
  41.170 +                    function rectfresh:touch(event)
  41.171 +                        if event.phase == 'began' then
  41.172 +                            posMove = event.y
  41.173 +                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.174 +                            local nRect = fontarial.height * 1.5
  41.175 +                            local nTemp = nBase / nRect
  41.176 +                            local nIdx  = 7 - math.floor(nTemp)
  41.177 +                            if dbIdx[nIdx] == 0 then
  41.178 +                                return
  41.179 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.180 +                                event.target.color = color.lightGrey
  41.181 +                                dbMrk[nIdx] = 0
  41.182 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.183 +                                event.target.color = {192, 192, 192}
  41.184 +                                dbMrk[nIdx] = 0
  41.185 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.186 +                                event.target.color = {220, 210, 120}
  41.187 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.188 +                            else
  41.189 +                                event.target.color = color.khaki
  41.190 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.191 +                            end
  41.192 +                        end
  41.193 +                        if event.phase == 'ended' then
  41.194 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.195 +                                -- Provide callback to count rows in table
  41.196 +                                local nCount = 0
  41.197 +                                function countrows(udata, cols, values, names)
  41.198 +                                    assert(udata == 'dingdong')
  41.199 +                                    nCount = tonumber(values[1])
  41.200 +                                    return 0
  41.201 +                                end
  41.202 +                       
  41.203 +                                -- Repopulate UI conditionally
  41.204 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.205 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.206 +                                debe:close()
  41.207 +                                debe = nil
  41.208 +                       
  41.209 +                                if event.y - posMove > 0 then  -- Gesture upward
  41.210 +                                    if nScroll + 7 < nCount then
  41.211 +                                        nScroll = nScroll + 7
  41.212 +                                    else
  41.213 +                                        return
  41.214 +                                    end
  41.215 +                                else -- Gesture downward
  41.216 +                                    if nScroll - 7 >= 0 then
  41.217 +                                        nScroll = nScroll - 7
  41.218 +                                    else
  41.219 +                                        return
  41.220 +                                    end
  41.221 +                                end
  41.222 +                       
  41.223 +                                -- Kludge stucked event handlers
  41.224 +                                rectoddy:removeEventListener('touch', rectoddy)
  41.225 +                                recteven:removeEventListener('touch', recteven)
  41.226 +                                recthree:removeEventListener('touch', recthree)
  41.227 +                                rectfour:removeEventListener('touch', rectfour)
  41.228 +                                rectfive:removeEventListener('touch', rectfive)
  41.229 +                                rectseis:removeEventListener('touch', rectseis)
  41.230 +                                rectsieb:removeEventListener('touch', rectsieb)
  41.231 +
  41.232 +                                -- Clear viewport
  41.233 +                                for nIter = 0, 6 do
  41.234 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.235 +                       
  41.236 +                                    function rectfresh:touch(event)
  41.237 +                                        if event.phase == 'began' then
  41.238 +                                            posMove = event.y
  41.239 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.240 +                                            local nRect = fontarial.height * 1.5
  41.241 +                                            local nTemp = nBase / nRect
  41.242 +                                            local nIdx  = 7 - math.floor(nTemp)
  41.243 +                                            if dbIdx[nIdx] == 0 then
  41.244 +                                                return
  41.245 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.246 +                                                event.target.color = color.lightGrey
  41.247 +                                                dbMrk[nIdx] = 0
  41.248 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.249 +                                                event.target.color = {192, 192, 192}
  41.250 +                                                dbMrk[nIdx] = 0
  41.251 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.252 +                                                event.target.color = {220, 210, 120}
  41.253 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.254 +                                            else
  41.255 +                                                event.target.color = color.khaki
  41.256 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.257 +                                            end
  41.258 +                                        end
  41.259 +                                    end
  41.260 +                                    rectfresh:addEventListener('touch', rectfresh)
  41.261 +                       
  41.262 +                                    if nIter % 2 == 0 then
  41.263 +                                        rectfresh.color = color.lightGrey
  41.264 +                                    else
  41.265 +                                        rectfresh.color = {192, 192, 192}
  41.266 +                                    end
  41.267 +                       
  41.268 +                                    -- Clear indexes
  41.269 +                                    dbIdx[nIter+1] = 0
  41.270 +                                    dbMrk[nIter+1] = 0
  41.271 +                                end
  41.272 +                       
  41.273 +                                -- Redraw labels
  41.274 +                                local nIter = 6
  41.275 +                                --for nIter = 0, 7 do
  41.276 +                                local nTemp = nCount - nScroll
  41.277 +                                if nTemp < 7 then
  41.278 +                                    nIter = nTemp - 1
  41.279 +                                end
  41.280 +                       
  41.281 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.282 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.283 +                                    if nTemp < 8 then
  41.284 +                                        if nTemp < 0 then break end
  41.285 +                                        if nIter < 0 then break end
  41.286 +                                        local labrepop = director:createLabel({
  41.287 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.288 +                                            hAlignment='left', vAlignment='bottom',
  41.289 +                                            font=fontsegoe,
  41.290 +                                            text=dbRows['call']
  41.291 +                                        })
  41.292 +                                        dbIdx[nIter+1] = dbRows['id']
  41.293 +                                        nIter = nIter - 1
  41.294 +                                        nTemp = nTemp - 1
  41.295 +                                    else
  41.296 +                                        nTemp = nTemp - 1
  41.297 +                                    end
  41.298 +                                end
  41.299 +                                debe:close()
  41.300 +                                debe = nil
  41.301 +                            end
  41.302 +                            posMove = 0
  41.303 +                        end
  41.304 +                    end
  41.305 +                    rectfresh:addEventListener('touch', rectfresh)
  41.306 +
  41.307 +                    if nIter % 2 == 0 then
  41.308 +                        rectfresh.color = color.lightGrey
  41.309 +                    else
  41.310 +                        rectfresh.color = {192, 192, 192}
  41.311 +                    end
  41.312 +
  41.313 +                    -- Clear indexes
  41.314 +                    dbIdx[nIter+1] = 0
  41.315 +                    dbMrk[nIter+1] = 0
  41.316 +                end
  41.317 +
  41.318 +                -- Redraw labels
  41.319 +                local nIter = 6
  41.320 +                --for nIter = 0, 7 do
  41.321 +                local nTemp = nCount - nScroll
  41.322 +                if nTemp < 7 then
  41.323 +                    nIter = nTemp - 1
  41.324 +                end
  41.325 +
  41.326 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.327 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.328 +                    if nTemp < 8 then
  41.329 +                        if nTemp < 0 then break end
  41.330 +                        if nIter < 0 then break end
  41.331 +                        local labrepop = director:createLabel({
  41.332 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.333 +                            hAlignment='left', vAlignment='bottom',
  41.334 +                            font=fontsegoe,
  41.335 +                            text=dbRows['call']
  41.336 +                        })
  41.337 +                        dbIdx[nIter+1] = dbRows['id']
  41.338 +                        nIter = nIter - 1
  41.339 +                        nTemp = nTemp - 1
  41.340 +                    else
  41.341 +                        nTemp = nTemp - 1
  41.342 +                    end
  41.343 +                end
  41.344 +                debe:close()
  41.345 +                debe = nil
  41.346 +            end
  41.347 +            posMove = 0
  41.348 +        end
  41.349 +    end
  41.350 +    rectoddy:addEventListener('touch', rectoddy)
  41.351 +
  41.352 +    function recteven:touch(event)
  41.353 +        if event.phase == 'began' then
  41.354 +            posMove = event.y
  41.355 +            local nBase = event.y - (dsh - fontarial.height * 12)
  41.356 +            local nRect = fontarial.height * 1.5
  41.357 +            local nTemp = nBase / nRect
  41.358 +            local nIdx  = 7 - math.floor(nTemp)
  41.359 +            if dbIdx[nIdx] == 0 then
  41.360 +                return
  41.361 +            elseif recteven.color.r == 220 and recteven.color.g == 210 and recteven.color.b == 120 then
  41.362 +                recteven.color = {192, 192, 192}
  41.363 +                dbMrk[nIdx] = 0
  41.364 +            else
  41.365 +                recteven.color = {220, 210, 120}
  41.366 +                dbMrk[nIdx] = dbIdx[nIdx]
  41.367 +            end
  41.368 +        end
  41.369 +
  41.370 +        if event.phase == 'ended' then
  41.371 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.372 +                -- Provide callback to count rows in table
  41.373 +                local nCount = 0
  41.374 +                function countrows(udata, cols, values, names)
  41.375 +                    assert(udata == 'dingdong')
  41.376 +                    nCount = tonumber(values[1])
  41.377 +                    return 0
  41.378 +                end
  41.379 +
  41.380 +                -- Repopulate UI conditionally
  41.381 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.382 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.383 +                debe:close()
  41.384 +                debe = nil
  41.385 +
  41.386 +                if event.y - posMove > 0 then  -- Gesture upward
  41.387 +                    if nScroll + 7 < nCount then
  41.388 +                        nScroll = nScroll + 7
  41.389 +                    else
  41.390 +                        return
  41.391 +                    end
  41.392 +                else -- Gesture downward
  41.393 +                    if nScroll - 7 >= 0 then
  41.394 +                        nScroll = nScroll - 7
  41.395 +                    else
  41.396 +                        return
  41.397 +                    end
  41.398 +                end
  41.399 +
  41.400 +                -- Kludge stucked event handlers
  41.401 +                rectoddy:removeEventListener('touch', rectoddy)
  41.402 +                recteven:removeEventListener('touch', recteven)
  41.403 +                recthree:removeEventListener('touch', recthree)
  41.404 +                rectfour:removeEventListener('touch', rectfour)
  41.405 +                rectfive:removeEventListener('touch', rectfive)
  41.406 +                rectseis:removeEventListener('touch', rectseis)
  41.407 +                rectsieb:removeEventListener('touch', rectsieb)
  41.408 +
  41.409 +                -- Clear viewport
  41.410 +                for nIter = 0, 6 do
  41.411 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.412 +
  41.413 +                    function rectfresh:touch(event)
  41.414 +                        if event.phase == 'began' then
  41.415 +                            posMove = event.y
  41.416 +                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.417 +                            local nRect = fontarial.height * 1.5
  41.418 +                            local nTemp = nBase / nRect
  41.419 +                            local nIdx  = 7 - math.floor(nTemp)
  41.420 +                            if dbIdx[nIdx] == 0 then
  41.421 +                                return
  41.422 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.423 +                                event.target.color = color.lightGrey
  41.424 +                                dbMrk[nIdx] = 0
  41.425 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.426 +                                event.target.color = {192, 192, 192}
  41.427 +                                dbMrk[nIdx] = 0
  41.428 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.429 +                                event.target.color = {220, 210, 120}
  41.430 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.431 +                            else
  41.432 +                                event.target.color = color.khaki
  41.433 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.434 +                            end
  41.435 +                        end
  41.436 +                        if event.phase == 'ended' then
  41.437 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.438 +                                -- Provide callback to count rows in table
  41.439 +                                local nCount = 0
  41.440 +                                function countrows(udata, cols, values, names)
  41.441 +                                    assert(udata == 'dingdong')
  41.442 +                                    nCount = tonumber(values[1])
  41.443 +                                    return 0
  41.444 +                                end
  41.445 +                       
  41.446 +                                -- Repopulate UI conditionally
  41.447 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.448 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.449 +                                debe:close()
  41.450 +                                debe = nil
  41.451 +                       
  41.452 +                                if event.y - posMove > 0 then  -- Gesture upward
  41.453 +                                    if nScroll + 7 < nCount then
  41.454 +                                        nScroll = nScroll + 7
  41.455 +                                    else
  41.456 +                                        return
  41.457 +                                    end
  41.458 +                                else -- Gesture downward
  41.459 +                                    if nScroll - 7 >= 0 then
  41.460 +                                        nScroll = nScroll - 7
  41.461 +                                    else
  41.462 +                                        return
  41.463 +                                    end
  41.464 +                                end
  41.465 +                       
  41.466 +                                -- Kludge stucked event handlers
  41.467 +                                rectoddy:removeEventListener('touch', rectoddy)
  41.468 +                                recteven:removeEventListener('touch', recteven)
  41.469 +                                recthree:removeEventListener('touch', recthree)
  41.470 +                                rectfour:removeEventListener('touch', rectfour)
  41.471 +                                rectfive:removeEventListener('touch', rectfive)
  41.472 +                                rectseis:removeEventListener('touch', rectseis)
  41.473 +                                rectsieb:removeEventListener('touch', rectsieb)
  41.474 +
  41.475 +                                -- Clear viewport
  41.476 +                                for nIter = 0, 6 do
  41.477 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.478 +                       
  41.479 +                                    function rectfresh:touch(event)
  41.480 +                                        if event.phase == 'began' then
  41.481 +                                            posMove = event.y
  41.482 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.483 +                                            local nRect = fontarial.height * 1.5
  41.484 +                                            local nTemp = nBase / nRect
  41.485 +                                            local nIdx  = 7 - math.floor(nTemp)
  41.486 +                                            if dbIdx[nIdx] == 0 then
  41.487 +                                                return
  41.488 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.489 +                                                event.target.color = color.lightGrey
  41.490 +                                                dbMrk[nIdx] = 0
  41.491 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.492 +                                                event.target.color = {192, 192, 192}
  41.493 +                                                dbMrk[nIdx] = 0
  41.494 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.495 +                                                event.target.color = {220, 210, 120}
  41.496 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.497 +                                            else
  41.498 +                                                event.target.color = color.khaki
  41.499 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.500 +                                            end
  41.501 +                                        end
  41.502 +                                    end
  41.503 +                                    rectfresh:addEventListener('touch', rectfresh)
  41.504 +                       
  41.505 +                                    if nIter % 2 == 0 then
  41.506 +                                        rectfresh.color = color.lightGrey
  41.507 +                                    else
  41.508 +                                        rectfresh.color = {192, 192, 192}
  41.509 +                                    end
  41.510 +                       
  41.511 +                                    -- Clear indexes
  41.512 +                                    dbIdx[nIter+1] = 0
  41.513 +                                    dbMrk[nIter+1] = 0
  41.514 +                                end
  41.515 +                       
  41.516 +                                -- Redraw labels
  41.517 +                                local nIter = 6
  41.518 +                                --for nIter = 0, 7 do
  41.519 +                                local nTemp = nCount - nScroll
  41.520 +                                if nTemp < 7 then
  41.521 +                                    nIter = nTemp - 1
  41.522 +                                end
  41.523 +                       
  41.524 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.525 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.526 +                                    if nTemp < 8 then
  41.527 +                                        if nTemp < 0 then break end
  41.528 +                                        if nIter < 0 then break end
  41.529 +                                        local labrepop = director:createLabel({
  41.530 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.531 +                                            hAlignment='left', vAlignment='bottom',
  41.532 +                                            font=fontsegoe,
  41.533 +                                            text=dbRows['call']
  41.534 +                                        })
  41.535 +                                        dbIdx[nIter+1] = dbRows['id']
  41.536 +                                        nIter = nIter - 1
  41.537 +                                        nTemp = nTemp - 1
  41.538 +                                    else
  41.539 +                                        nTemp = nTemp - 1
  41.540 +                                    end
  41.541 +                                end
  41.542 +                                debe:close()
  41.543 +                                debe = nil
  41.544 +                            end
  41.545 +                            posMove = 0
  41.546 +                        end
  41.547 +                    end
  41.548 +                    rectfresh:addEventListener('touch', rectfresh)
  41.549 +
  41.550 +                    if nIter % 2 == 0 then
  41.551 +                        rectfresh.color = color.lightGrey
  41.552 +                    else
  41.553 +                        rectfresh.color = {192, 192, 192}
  41.554 +                    end
  41.555 +
  41.556 +                    -- Clear indexes
  41.557 +                    dbIdx[nIter+1] = 0
  41.558 +                    dbMrk[nIter+1] = 0
  41.559 +                end
  41.560 +
  41.561 +                -- Redraw labels
  41.562 +                local nIter = 6
  41.563 +                --for nIter = 0, 7 do
  41.564 +                local nTemp = nCount - nScroll
  41.565 +                if nTemp < 7 then
  41.566 +                    nIter = nTemp - 1
  41.567 +                end
  41.568 +
  41.569 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.570 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.571 +                    if nTemp < 8 then
  41.572 +                        if nTemp < 0 then break end
  41.573 +                        if nIter < 0 then break end
  41.574 +                        local labrepop = director:createLabel({
  41.575 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.576 +                            hAlignment='left', vAlignment='bottom',
  41.577 +                            font=fontsegoe,
  41.578 +                            text=dbRows['call']
  41.579 +                        })
  41.580 +                        dbIdx[nIter+1] = dbRows['id']
  41.581 +                        nIter = nIter - 1
  41.582 +                        nTemp = nTemp - 1
  41.583 +                    else
  41.584 +                        nTemp = nTemp - 1
  41.585 +                    end
  41.586 +                end
  41.587 +                debe:close()
  41.588 +                debe = nil
  41.589 +            end
  41.590 +            posMove = 0
  41.591 +        end
  41.592 +    end
  41.593 +    recteven:addEventListener('touch', recteven)
  41.594 +
  41.595 +    function recthree:touch(event)
  41.596 +        if event.phase == 'began' then
  41.597 +            posMove = event.y
  41.598 +            local nBase = event.y - (dsh - fontarial.height * 12)
  41.599 +            local nRect = fontarial.height * 1.5
  41.600 +            local nTemp = nBase / nRect
  41.601 +            local nIdx  = 7 - math.floor(nTemp)
  41.602 +            if dbIdx[nIdx] == 0 then
  41.603 +                return
  41.604 +            elseif recthree.color.r == 240 and recthree.color.g == 230 and recthree.color.b == 140 then
  41.605 +                recthree.color = color.lightGrey
  41.606 +                dbMrk[nIdx] = 0
  41.607 +            else
  41.608 +                recthree.color = color.khaki
  41.609 +                dbMrk[nIdx] = dbIdx[nIdx]
  41.610 +            end
  41.611 +        end
  41.612 +
  41.613 +        if event.phase == 'ended' then
  41.614 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.615 +                -- Provide callback to count rows in table
  41.616 +                local nCount = 0
  41.617 +                function countrows(udata, cols, values, names)
  41.618 +                    assert(udata == 'dingdong')
  41.619 +                    nCount = tonumber(values[1])
  41.620 +                    return 0
  41.621 +                end
  41.622 +
  41.623 +                -- Repopulate UI conditionally
  41.624 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.625 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.626 +                debe:close()
  41.627 +                debe = nil
  41.628 +
  41.629 +                if event.y - posMove > 0 then  -- Gesture upward
  41.630 +                    if nScroll + 7 < nCount then
  41.631 +                        nScroll = nScroll + 7
  41.632 +                    else
  41.633 +                        return
  41.634 +                    end
  41.635 +                else -- Gesture downward
  41.636 +                    if nScroll - 7 >= 0 then
  41.637 +                        nScroll = nScroll - 7
  41.638 +                    else
  41.639 +                        return
  41.640 +                    end
  41.641 +                end
  41.642 +
  41.643 +                -- Kludge stucked event handlers
  41.644 +                rectoddy:removeEventListener('touch', rectoddy)
  41.645 +                recteven:removeEventListener('touch', recteven)
  41.646 +                recthree:removeEventListener('touch', recthree)
  41.647 +                rectfour:removeEventListener('touch', rectfour)
  41.648 +                rectfive:removeEventListener('touch', rectfive)
  41.649 +                rectseis:removeEventListener('touch', rectseis)
  41.650 +                rectsieb:removeEventListener('touch', rectsieb)
  41.651 +
  41.652 +                -- Clear viewport
  41.653 +                for nIter = 0, 6 do
  41.654 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.655 +
  41.656 +                    function rectfresh:touch(event)
  41.657 +                        if event.phase == 'began' then
  41.658 +                            posMove = event.y
  41.659 +                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.660 +                            local nRect = fontarial.height * 1.5
  41.661 +                            local nTemp = nBase / nRect
  41.662 +                            local nIdx  = 7 - math.floor(nTemp)
  41.663 +                            if dbIdx[nIdx] == 0 then
  41.664 +                                return
  41.665 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.666 +                                event.target.color = color.lightGrey
  41.667 +                                dbMrk[nIdx] = 0
  41.668 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.669 +                                event.target.color = {192, 192, 192}
  41.670 +                                dbMrk[nIdx] = 0
  41.671 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.672 +                                event.target.color = {220, 210, 120}
  41.673 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.674 +                            else
  41.675 +                                event.target.color = color.khaki
  41.676 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.677 +                            end
  41.678 +                        end
  41.679 +                        if event.phase == 'ended' then
  41.680 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.681 +                                -- Provide callback to count rows in table
  41.682 +                                local nCount = 0
  41.683 +                                function countrows(udata, cols, values, names)
  41.684 +                                    assert(udata == 'dingdong')
  41.685 +                                    nCount = tonumber(values[1])
  41.686 +                                    return 0
  41.687 +                                end
  41.688 +                       
  41.689 +                                -- Repopulate UI conditionally
  41.690 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.691 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.692 +                                debe:close()
  41.693 +                                debe = nil
  41.694 +                       
  41.695 +                                if event.y - posMove > 0 then  -- Gesture upward
  41.696 +                                    if nScroll + 7 < nCount then
  41.697 +                                        nScroll = nScroll + 7
  41.698 +                                    else
  41.699 +                                        return
  41.700 +                                    end
  41.701 +                                else -- Gesture downward
  41.702 +                                    if nScroll - 7 >= 0 then
  41.703 +                                        nScroll = nScroll - 7
  41.704 +                                    else
  41.705 +                                        return
  41.706 +                                    end
  41.707 +                                end
  41.708 +                       
  41.709 +                                -- Kludge stucked event handlers
  41.710 +                                rectoddy:removeEventListener('touch', rectoddy)
  41.711 +                                recteven:removeEventListener('touch', recteven)
  41.712 +                                recthree:removeEventListener('touch', recthree)
  41.713 +                                rectfour:removeEventListener('touch', rectfour)
  41.714 +                                rectfive:removeEventListener('touch', rectfive)
  41.715 +                                rectseis:removeEventListener('touch', rectseis)
  41.716 +                                rectsieb:removeEventListener('touch', rectsieb)
  41.717 +
  41.718 +                                -- Clear viewport
  41.719 +                                for nIter = 0, 6 do
  41.720 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.721 +                       
  41.722 +                                    function rectfresh:touch(event)
  41.723 +                                        if event.phase == 'began' then
  41.724 +                                            posMove = event.y
  41.725 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.726 +                                            local nRect = fontarial.height * 1.5
  41.727 +                                            local nTemp = nBase / nRect
  41.728 +                                            local nIdx  = 7 - math.floor(nTemp)
  41.729 +                                            if dbIdx[nIdx] == 0 then
  41.730 +                                                return
  41.731 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.732 +                                                event.target.color = color.lightGrey
  41.733 +                                                dbMrk[nIdx] = 0
  41.734 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.735 +                                                event.target.color = {192, 192, 192}
  41.736 +                                                dbMrk[nIdx] = 0
  41.737 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.738 +                                                event.target.color = {220, 210, 120}
  41.739 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.740 +                                            else
  41.741 +                                                event.target.color = color.khaki
  41.742 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.743 +                                            end
  41.744 +                                        end
  41.745 +                                    end
  41.746 +                                    rectfresh:addEventListener('touch', rectfresh)
  41.747 +                       
  41.748 +                                    if nIter % 2 == 0 then
  41.749 +                                        rectfresh.color = color.lightGrey
  41.750 +                                    else
  41.751 +                                        rectfresh.color = {192, 192, 192}
  41.752 +                                    end
  41.753 +                       
  41.754 +                                    -- Clear indexes
  41.755 +                                    dbIdx[nIter+1] = 0
  41.756 +                                    dbMrk[nIter+1] = 0
  41.757 +                                end
  41.758 +                       
  41.759 +                                -- Redraw labels
  41.760 +                                local nIter = 6
  41.761 +                                --for nIter = 0, 7 do
  41.762 +                                local nTemp = nCount - nScroll
  41.763 +                                if nTemp < 7 then
  41.764 +                                    nIter = nTemp - 1
  41.765 +                                end
  41.766 +                       
  41.767 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.768 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.769 +                                    if nTemp < 8 then
  41.770 +                                        if nTemp < 0 then break end
  41.771 +                                        if nIter < 0 then break end
  41.772 +                                        local labrepop = director:createLabel({
  41.773 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.774 +                                            hAlignment='left', vAlignment='bottom',
  41.775 +                                            font=fontsegoe,
  41.776 +                                            text=dbRows['call']
  41.777 +                                        })
  41.778 +                                        dbIdx[nIter+1] = dbRows['id']
  41.779 +                                        nIter = nIter - 1
  41.780 +                                        nTemp = nTemp - 1
  41.781 +                                    else
  41.782 +                                        nTemp = nTemp - 1
  41.783 +                                    end
  41.784 +                                end
  41.785 +                                debe:close()
  41.786 +                                debe = nil
  41.787 +                            end
  41.788 +                            posMove = 0
  41.789 +                        end
  41.790 +                    end
  41.791 +                    rectfresh:addEventListener('touch', rectfresh)
  41.792 +
  41.793 +                    if nIter % 2 == 0 then
  41.794 +                        rectfresh.color = color.lightGrey
  41.795 +                    else
  41.796 +                        rectfresh.color = {192, 192, 192}
  41.797 +                    end
  41.798 +
  41.799 +                    -- Clear indexes
  41.800 +                    dbIdx[nIter+1] = 0
  41.801 +                    dbMrk[nIter+1] = 0
  41.802 +                end
  41.803 +
  41.804 +                -- Redraw labels
  41.805 +                local nIter = 6
  41.806 +                --for nIter = 0, 7 do
  41.807 +                local nTemp = nCount - nScroll
  41.808 +                if nTemp < 7 then
  41.809 +                    nIter = nTemp - 1
  41.810 +                end
  41.811 +
  41.812 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.813 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
  41.814 +                    if nTemp < 8 then
  41.815 +                        if nTemp < 0 then break end
  41.816 +                        if nIter < 0 then break end
  41.817 +                        local labrepop = director:createLabel({
  41.818 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
  41.819 +                            hAlignment='left', vAlignment='bottom',
  41.820 +                            font=fontsegoe,
  41.821 +                            text=dbRows['call']
  41.822 +                        })
  41.823 +                        dbIdx[nIter+1] = dbRows['id']
  41.824 +                        nIter = nIter - 1
  41.825 +                        nTemp = nTemp - 1
  41.826 +                    else
  41.827 +                        nTemp = nTemp - 1
  41.828 +                    end
  41.829 +                end
  41.830 +                debe:close()
  41.831 +                debe = nil
  41.832 +            end
  41.833 +            posMove = 0
  41.834 +        end
  41.835 +    end
  41.836 +    recthree:addEventListener('touch', recthree)
  41.837 +
  41.838 +    function rectfour:touch(event)
  41.839 +        if event.phase == 'began' then
  41.840 +            posMove = event.y
  41.841 +            local nBase = event.y - (dsh - fontarial.height * 12)
  41.842 +            local nRect = fontarial.height * 1.5
  41.843 +            local nTemp = nBase / nRect
  41.844 +            local nIdx  = 7 - math.floor(nTemp)
  41.845 +            if dbIdx[nIdx] == 0 then
  41.846 +                return
  41.847 +            elseif rectfour.color.r == 220 and rectfour.color.g == 210 and rectfour.color.b == 120 then
  41.848 +                rectfour.color = {192, 192, 192}
  41.849 +                dbMrk[nIdx] = 0
  41.850 +            else
  41.851 +                rectfour.color = {220, 210, 120}
  41.852 +                dbMrk[nIdx] = dbIdx[nIdx]
  41.853 +            end
  41.854 +        end
  41.855 +
  41.856 +        if event.phase == 'ended' then
  41.857 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.858 +                -- Provide callback to count rows in table
  41.859 +                local nCount = 0
  41.860 +                function countrows(udata, cols, values, names)
  41.861 +                    assert(udata == 'dingdong')
  41.862 +                    nCount = tonumber(values[1])
  41.863 +                    return 0
  41.864 +                end
  41.865 +
  41.866 +                -- Repopulate UI conditionally
  41.867 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.868 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.869 +                debe:close()
  41.870 +                debe = nil
  41.871 +
  41.872 +                if event.y - posMove > 0 then  -- Gesture upward
  41.873 +                    if nScroll + 7 < nCount then
  41.874 +                        nScroll = nScroll + 7
  41.875 +                    else
  41.876 +                        return
  41.877 +                    end
  41.878 +                else -- Gesture downward
  41.879 +                    if nScroll - 7 >= 0 then
  41.880 +                        nScroll = nScroll - 7
  41.881 +                    else
  41.882 +                        return
  41.883 +                    end
  41.884 +                end
  41.885 +
  41.886 +                -- Kludge stucked event handlers
  41.887 +                rectoddy:removeEventListener('touch', rectoddy)
  41.888 +                recteven:removeEventListener('touch', recteven)
  41.889 +                recthree:removeEventListener('touch', recthree)
  41.890 +                rectfour:removeEventListener('touch', rectfour)
  41.891 +                rectfive:removeEventListener('touch', rectfive)
  41.892 +                rectseis:removeEventListener('touch', rectseis)
  41.893 +                rectsieb:removeEventListener('touch', rectsieb)
  41.894 +
  41.895 +                -- Clear viewport
  41.896 +                for nIter = 0, 6 do
  41.897 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.898 +
  41.899 +                    function rectfresh:touch(event)
  41.900 +                        if event.phase == 'began' then
  41.901 +                            posMove = event.y
  41.902 +                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.903 +                            local nRect = fontarial.height * 1.5
  41.904 +                            local nTemp = nBase / nRect
  41.905 +                            local nIdx  = 7 - math.floor(nTemp)
  41.906 +                            if dbIdx[nIdx] == 0 then
  41.907 +                                return
  41.908 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.909 +                                event.target.color = color.lightGrey
  41.910 +                                dbMrk[nIdx] = 0
  41.911 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.912 +                                event.target.color = {192, 192, 192}
  41.913 +                                dbMrk[nIdx] = 0
  41.914 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.915 +                                event.target.color = {220, 210, 120}
  41.916 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.917 +                            else
  41.918 +                                event.target.color = color.khaki
  41.919 +                                dbMrk[nIdx] = dbIdx[nIdx]
  41.920 +                            end
  41.921 +                        end
  41.922 +                        if event.phase == 'ended' then
  41.923 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
  41.924 +                                -- Provide callback to count rows in table
  41.925 +                                local nCount = 0
  41.926 +                                function countrows(udata, cols, values, names)
  41.927 +                                    assert(udata == 'dingdong')
  41.928 +                                    nCount = tonumber(values[1])
  41.929 +                                    return 0
  41.930 +                                end
  41.931 +                       
  41.932 +                                -- Repopulate UI conditionally
  41.933 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
  41.934 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
  41.935 +                                debe:close()
  41.936 +                                debe = nil
  41.937 +                       
  41.938 +                                if event.y - posMove > 0 then  -- Gesture upward
  41.939 +                                    if nScroll + 7 < nCount then
  41.940 +                                        nScroll = nScroll + 7
  41.941 +                                    else
  41.942 +                                        return
  41.943 +                                    end
  41.944 +                                else -- Gesture downward
  41.945 +                                    if nScroll - 7 >= 0 then
  41.946 +                                        nScroll = nScroll - 7
  41.947 +                                    else
  41.948 +                                        return
  41.949 +                                    end
  41.950 +                                end
  41.951 +                       
  41.952 +                                -- Kludge stucked event handlers
  41.953 +                                rectoddy:removeEventListener('touch', rectoddy)
  41.954 +                                recteven:removeEventListener('touch', recteven)
  41.955 +                                recthree:removeEventListener('touch', recthree)
  41.956 +                                rectfour:removeEventListener('touch', rectfour)
  41.957 +                                rectfive:removeEventListener('touch', rectfive)
  41.958 +                                rectseis:removeEventListener('touch', rectseis)
  41.959 +                                rectsieb:removeEventListener('touch', rectsieb)
  41.960 +
  41.961 +                                -- Clear viewport
  41.962 +                                for nIter = 0, 6 do
  41.963 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
  41.964 +                       
  41.965 +                                    function rectfresh:touch(event)
  41.966 +                                        if event.phase == 'began' then
  41.967 +                                            posMove = event.y
  41.968 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
  41.969 +                                            local nRect = fontarial.height * 1.5
  41.970 +                                            local nTemp = nBase / nRect
  41.971 +                                            local nIdx  = 7 - math.floor(nTemp)
  41.972 +                                            if dbIdx[nIdx] == 0 then
  41.973 +                                                return
  41.974 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
  41.975 +                                                event.target.color = color.lightGrey
  41.976 +                                                dbMrk[nIdx] = 0
  41.977 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
  41.978 +                                                event.target.color = {192, 192, 192}
  41.979 +                                                dbMrk[nIdx] = 0
  41.980 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
  41.981 +                                                event.target.color = {220, 210, 120}
  41.982 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.983 +                                            else
  41.984 +                                                event.target.color = color.khaki
  41.985 +                                                dbMrk[nIdx] = dbIdx[nIdx]
  41.986 +                                            end
  41.987 +                                        end
  41.988 +                                    end
  41.989 +                                    rectfresh:addEventListener('touch', rectfresh)
  41.990 +                       
  41.991 +                                    if nIter % 2 == 0 then
  41.992 +                                        rectfresh.color = color.lightGrey
  41.993 +                                    else
  41.994 +                                        rectfresh.color = {192, 192, 192}
  41.995 +                                    end
  41.996 +                       
  41.997 +                                    -- Clear indexes
  41.998 +                                    dbIdx[nIter+1] = 0
  41.999 +                                    dbMrk[nIter+1] = 0
 41.1000 +                                end
 41.1001 +                       
 41.1002 +                                -- Redraw labels
 41.1003 +                                local nIter = 6
 41.1004 +                                --for nIter = 0, 7 do
 41.1005 +                                local nTemp = nCount - nScroll
 41.1006 +                                if nTemp < 7 then
 41.1007 +                                    nIter = nTemp - 1
 41.1008 +                                end
 41.1009 +                       
 41.1010 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1011 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1012 +                                    if nTemp < 8 then
 41.1013 +                                        if nTemp < 0 then break end
 41.1014 +                                        if nIter < 0 then break end
 41.1015 +                                        local labrepop = director:createLabel({
 41.1016 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1017 +                                            hAlignment='left', vAlignment='bottom',
 41.1018 +                                            font=fontsegoe,
 41.1019 +                                            text=dbRows['call']
 41.1020 +                                        })
 41.1021 +                                        dbIdx[nIter+1] = dbRows['id']
 41.1022 +                                        nIter = nIter - 1
 41.1023 +                                        nTemp = nTemp - 1
 41.1024 +                                    else
 41.1025 +                                        nTemp = nTemp - 1
 41.1026 +                                    end
 41.1027 +                                end
 41.1028 +                                debe:close()
 41.1029 +                                debe = nil
 41.1030 +                            end
 41.1031 +                            posMove = 0
 41.1032 +                        end
 41.1033 +                    end
 41.1034 +                    rectfresh:addEventListener('touch', rectfresh)
 41.1035 +
 41.1036 +                    if nIter % 2 == 0 then
 41.1037 +                        rectfresh.color = color.lightGrey
 41.1038 +                    else
 41.1039 +                        rectfresh.color = {192, 192, 192}
 41.1040 +                    end
 41.1041 +
 41.1042 +                    -- Clear indexes
 41.1043 +                    dbIdx[nIter+1] = 0
 41.1044 +                    dbMrk[nIter+1] = 0
 41.1045 +                end
 41.1046 +
 41.1047 +                -- Redraw labels
 41.1048 +                local nIter = 6
 41.1049 +                --for nIter = 0, 7 do
 41.1050 +                local nTemp = nCount - nScroll
 41.1051 +                if nTemp < 7 then
 41.1052 +                    nIter = nTemp - 1
 41.1053 +                end
 41.1054 +
 41.1055 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1056 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1057 +                    if nTemp < 8 then
 41.1058 +                        if nTemp < 0 then break end
 41.1059 +                        if nIter < 0 then break end
 41.1060 +                        local labrepop = director:createLabel({
 41.1061 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1062 +                            hAlignment='left', vAlignment='bottom',
 41.1063 +                            font=fontsegoe,
 41.1064 +                            text=dbRows['call']
 41.1065 +                        })
 41.1066 +                        dbIdx[nIter+1] = dbRows['id']
 41.1067 +                        nIter = nIter - 1
 41.1068 +                        nTemp = nTemp - 1
 41.1069 +                    else
 41.1070 +                        nTemp = nTemp - 1
 41.1071 +                    end
 41.1072 +                end
 41.1073 +                debe:close()
 41.1074 +                debe = nil
 41.1075 +            end
 41.1076 +            posMove = 0
 41.1077 +        end
 41.1078 +    end
 41.1079 +    rectfour:addEventListener('touch', rectfour)
 41.1080 +
 41.1081 +    function rectfive:touch(event)
 41.1082 +        if event.phase == 'began' then
 41.1083 +            posMove = event.y
 41.1084 +            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1085 +            local nRect = fontarial.height * 1.5
 41.1086 +            local nTemp = nBase / nRect
 41.1087 +            local nIdx  = 7 - math.floor(nTemp)
 41.1088 +            if dbIdx[nIdx] == 0 then
 41.1089 +                return
 41.1090 +            elseif rectfive.color.r == 240 and rectfive.color.g == 230 and rectfive.color.b == 140 then
 41.1091 +                rectfive.color = color.lightGrey
 41.1092 +                dbMrk[nIdx] = 0
 41.1093 +            else
 41.1094 +                rectfive.color = color.khaki
 41.1095 +                dbMrk[nIdx] = dbIdx[nIdx]
 41.1096 +            end
 41.1097 +        end
 41.1098 +
 41.1099 +        if event.phase == 'ended' then
 41.1100 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1101 +                -- Provide callback to count rows in table
 41.1102 +                local nCount = 0
 41.1103 +                function countrows(udata, cols, values, names)
 41.1104 +                    assert(udata == 'dingdong')
 41.1105 +                    nCount = tonumber(values[1])
 41.1106 +                    return 0
 41.1107 +                end
 41.1108 +
 41.1109 +                -- Repopulate UI conditionally
 41.1110 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1111 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1112 +                debe:close()
 41.1113 +                debe = nil
 41.1114 +
 41.1115 +                if event.y - posMove > 0 then  -- Gesture upward
 41.1116 +                    if nScroll + 7 < nCount then
 41.1117 +                        nScroll = nScroll + 7
 41.1118 +                    else
 41.1119 +                        return
 41.1120 +                    end
 41.1121 +                else -- Gesture downward
 41.1122 +                    if nScroll - 7 >= 0 then
 41.1123 +                        nScroll = nScroll - 7
 41.1124 +                    else
 41.1125 +                        return
 41.1126 +                    end
 41.1127 +                end
 41.1128 +
 41.1129 +                -- Kludge stucked event handlers
 41.1130 +                rectoddy:removeEventListener('touch', rectoddy)
 41.1131 +                recteven:removeEventListener('touch', recteven)
 41.1132 +                recthree:removeEventListener('touch', recthree)
 41.1133 +                rectfour:removeEventListener('touch', rectfour)
 41.1134 +                rectfive:removeEventListener('touch', rectfive)
 41.1135 +                rectseis:removeEventListener('touch', rectseis)
 41.1136 +                rectsieb:removeEventListener('touch', rectsieb)
 41.1137 +
 41.1138 +                -- Clear viewport
 41.1139 +                for nIter = 0, 6 do
 41.1140 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1141 +
 41.1142 +                    function rectfresh:touch(event)
 41.1143 +                        if event.phase == 'began' then
 41.1144 +                            posMove = event.y
 41.1145 +                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1146 +                            local nRect = fontarial.height * 1.5
 41.1147 +                            local nTemp = nBase / nRect
 41.1148 +                            local nIdx  = 7 - math.floor(nTemp)
 41.1149 +                            if dbIdx[nIdx] == 0 then
 41.1150 +                                return
 41.1151 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1152 +                                event.target.color = color.lightGrey
 41.1153 +                                dbMrk[nIdx] = 0
 41.1154 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1155 +                                event.target.color = {192, 192, 192}
 41.1156 +                                dbMrk[nIdx] = 0
 41.1157 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1158 +                                event.target.color = {220, 210, 120}
 41.1159 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1160 +                            else
 41.1161 +                                event.target.color = color.khaki
 41.1162 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1163 +                            end
 41.1164 +                        end
 41.1165 +                        if event.phase == 'ended' then
 41.1166 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1167 +                                -- Provide callback to count rows in table
 41.1168 +                                local nCount = 0
 41.1169 +                                function countrows(udata, cols, values, names)
 41.1170 +                                    assert(udata == 'dingdong')
 41.1171 +                                    nCount = tonumber(values[1])
 41.1172 +                                    return 0
 41.1173 +                                end
 41.1174 +                       
 41.1175 +                                -- Repopulate UI conditionally
 41.1176 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1177 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1178 +                                debe:close()
 41.1179 +                                debe = nil
 41.1180 +                       
 41.1181 +                                if event.y - posMove > 0 then  -- Gesture upward
 41.1182 +                                    if nScroll + 7 < nCount then
 41.1183 +                                        nScroll = nScroll + 7
 41.1184 +                                    else
 41.1185 +                                        return
 41.1186 +                                    end
 41.1187 +                                else -- Gesture downward
 41.1188 +                                    if nScroll - 7 >= 0 then
 41.1189 +                                        nScroll = nScroll - 7
 41.1190 +                                    else
 41.1191 +                                        return
 41.1192 +                                    end
 41.1193 +                                end
 41.1194 +                       
 41.1195 +                                -- Kludge stucked event handlers
 41.1196 +                                rectoddy:removeEventListener('touch', rectoddy)
 41.1197 +                                recteven:removeEventListener('touch', recteven)
 41.1198 +                                recthree:removeEventListener('touch', recthree)
 41.1199 +                                rectfour:removeEventListener('touch', rectfour)
 41.1200 +                                rectfive:removeEventListener('touch', rectfive)
 41.1201 +                                rectseis:removeEventListener('touch', rectseis)
 41.1202 +                                rectsieb:removeEventListener('touch', rectsieb)
 41.1203 +
 41.1204 +                                -- Clear viewport
 41.1205 +                                for nIter = 0, 6 do
 41.1206 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1207 +                       
 41.1208 +                                    function rectfresh:touch(event)
 41.1209 +                                        if event.phase == 'began' then
 41.1210 +                                            posMove = event.y
 41.1211 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1212 +                                            local nRect = fontarial.height * 1.5
 41.1213 +                                            local nTemp = nBase / nRect
 41.1214 +                                            local nIdx  = 7 - math.floor(nTemp)
 41.1215 +                                            if dbIdx[nIdx] == 0 then
 41.1216 +                                                return
 41.1217 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1218 +                                                event.target.color = color.lightGrey
 41.1219 +                                                dbMrk[nIdx] = 0
 41.1220 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1221 +                                                event.target.color = {192, 192, 192}
 41.1222 +                                                dbMrk[nIdx] = 0
 41.1223 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1224 +                                                event.target.color = {220, 210, 120}
 41.1225 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1226 +                                            else
 41.1227 +                                                event.target.color = color.khaki
 41.1228 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1229 +                                            end
 41.1230 +                                        end
 41.1231 +                                    end
 41.1232 +                                    rectfresh:addEventListener('touch', rectfresh)
 41.1233 +                       
 41.1234 +                                    if nIter % 2 == 0 then
 41.1235 +                                        rectfresh.color = color.lightGrey
 41.1236 +                                    else
 41.1237 +                                        rectfresh.color = {192, 192, 192}
 41.1238 +                                    end
 41.1239 +                       
 41.1240 +                                    -- Clear indexes
 41.1241 +                                    dbIdx[nIter+1] = 0
 41.1242 +                                    dbMrk[nIter+1] = 0
 41.1243 +                                end
 41.1244 +                       
 41.1245 +                                -- Redraw labels
 41.1246 +                                local nIter = 6
 41.1247 +                                --for nIter = 0, 7 do
 41.1248 +                                local nTemp = nCount - nScroll
 41.1249 +                                if nTemp < 7 then
 41.1250 +                                    nIter = nTemp - 1
 41.1251 +                                end
 41.1252 +                       
 41.1253 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1254 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1255 +                                    if nTemp < 8 then
 41.1256 +                                        if nTemp < 0 then break end
 41.1257 +                                        if nIter < 0 then break end
 41.1258 +                                        local labrepop = director:createLabel({
 41.1259 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1260 +                                            hAlignment='left', vAlignment='bottom',
 41.1261 +                                            font=fontsegoe,
 41.1262 +                                            text=dbRows['call']
 41.1263 +                                        })
 41.1264 +                                        dbIdx[nIter+1] = dbRows['id']
 41.1265 +                                        nIter = nIter - 1
 41.1266 +                                        nTemp = nTemp - 1
 41.1267 +                                    else
 41.1268 +                                        nTemp = nTemp - 1
 41.1269 +                                    end
 41.1270 +                                end
 41.1271 +                                debe:close()
 41.1272 +                                debe = nil
 41.1273 +                            end
 41.1274 +                            posMove = 0
 41.1275 +                        end
 41.1276 +                    end
 41.1277 +                    rectfresh:addEventListener('touch', rectfresh)
 41.1278 +
 41.1279 +                    if nIter % 2 == 0 then
 41.1280 +                        rectfresh.color = color.lightGrey
 41.1281 +                    else
 41.1282 +                        rectfresh.color = {192, 192, 192}
 41.1283 +                    end
 41.1284 +
 41.1285 +                    -- Clear indexes
 41.1286 +                    dbIdx[nIter+1] = 0
 41.1287 +                    dbMrk[nIter+1] = 0
 41.1288 +                end
 41.1289 +
 41.1290 +                -- Redraw labels
 41.1291 +                local nIter = 6
 41.1292 +                --for nIter = 0, 7 do
 41.1293 +                local nTemp = nCount - nScroll
 41.1294 +                if nTemp < 7 then
 41.1295 +                    nIter = nTemp - 1
 41.1296 +                end
 41.1297 +
 41.1298 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1299 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1300 +                    if nTemp < 8 then
 41.1301 +                        if nTemp < 0 then break end
 41.1302 +                        if nIter < 0 then break end
 41.1303 +                        local labrepop = director:createLabel({
 41.1304 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1305 +                            hAlignment='left', vAlignment='bottom',
 41.1306 +                            font=fontsegoe,
 41.1307 +                            text=dbRows['call']
 41.1308 +                        })
 41.1309 +                        dbIdx[nIter+1] = dbRows['id']
 41.1310 +                        nIter = nIter - 1
 41.1311 +                        nTemp = nTemp - 1
 41.1312 +                    else
 41.1313 +                        nTemp = nTemp - 1
 41.1314 +                    end
 41.1315 +                end
 41.1316 +                debe:close()
 41.1317 +                debe = nil
 41.1318 +            end
 41.1319 +            posMove = 0
 41.1320 +        end
 41.1321 +    end
 41.1322 +    rectfive:addEventListener('touch', rectfive)
 41.1323 +
 41.1324 +    function rectseis:touch(event)
 41.1325 +        if event.phase == 'began' then
 41.1326 +            posMove = event.y
 41.1327 +            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1328 +            local nRect = fontarial.height * 1.5
 41.1329 +            local nTemp = nBase / nRect
 41.1330 +            local nIdx  = 7 - math.floor(nTemp)
 41.1331 +            if dbIdx[nIdx] == 0 then
 41.1332 +                return
 41.1333 +            elseif rectseis.color.r == 220 and rectseis.color.g == 210 and rectseis.color.b == 120 then
 41.1334 +                rectseis.color = {192, 192, 192}
 41.1335 +                dbMrk[nIdx] = 0
 41.1336 +            else
 41.1337 +                rectseis.color = {220, 210, 120}
 41.1338 +                dbMrk[nIdx] = dbIdx[nIdx]
 41.1339 +            end
 41.1340 +        end
 41.1341 +
 41.1342 +        if event.phase == 'ended' then
 41.1343 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1344 +                -- Provide callback to count rows in table
 41.1345 +                local nCount = 0
 41.1346 +                function countrows(udata, cols, values, names)
 41.1347 +                    assert(udata == 'dingdong')
 41.1348 +                    nCount = tonumber(values[1])
 41.1349 +                    return 0
 41.1350 +                end
 41.1351 +
 41.1352 +                -- Repopulate UI conditionally
 41.1353 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1354 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1355 +                debe:close()
 41.1356 +                debe = nil
 41.1357 +
 41.1358 +                if event.y - posMove > 0 then  -- Gesture upward
 41.1359 +                    if nScroll + 7 < nCount then
 41.1360 +                        nScroll = nScroll + 7
 41.1361 +                    else
 41.1362 +                        return
 41.1363 +                    end
 41.1364 +                else -- Gesture downward
 41.1365 +                    if nScroll - 7 >= 0 then
 41.1366 +                        nScroll = nScroll - 7
 41.1367 +                    else
 41.1368 +                        return
 41.1369 +                    end
 41.1370 +                end
 41.1371 +
 41.1372 +                -- Kludge stucked event handlers
 41.1373 +                rectoddy:removeEventListener('touch', rectoddy)
 41.1374 +                recteven:removeEventListener('touch', recteven)
 41.1375 +                recthree:removeEventListener('touch', recthree)
 41.1376 +                rectfour:removeEventListener('touch', rectfour)
 41.1377 +                rectfive:removeEventListener('touch', rectfive)
 41.1378 +                rectseis:removeEventListener('touch', rectseis)
 41.1379 +                rectsieb:removeEventListener('touch', rectsieb)
 41.1380 +
 41.1381 +                -- Clear viewport
 41.1382 +                for nIter = 0, 6 do
 41.1383 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1384 +
 41.1385 +                    function rectfresh:touch(event)
 41.1386 +                        if event.phase == 'began' then
 41.1387 +                            posMove = event.y
 41.1388 +                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1389 +                            local nRect = fontarial.height * 1.5
 41.1390 +                            local nTemp = nBase / nRect
 41.1391 +                            local nIdx  = 7 - math.floor(nTemp)
 41.1392 +                            if dbIdx[nIdx] == 0 then
 41.1393 +                                return
 41.1394 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1395 +                                event.target.color = color.lightGrey
 41.1396 +                                dbMrk[nIdx] = 0
 41.1397 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1398 +                                event.target.color = {192, 192, 192}
 41.1399 +                                dbMrk[nIdx] = 0
 41.1400 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1401 +                                event.target.color = {220, 210, 120}
 41.1402 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1403 +                            else
 41.1404 +                                event.target.color = color.khaki
 41.1405 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1406 +                            end
 41.1407 +                        end
 41.1408 +                        if event.phase == 'ended' then
 41.1409 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1410 +                                -- Provide callback to count rows in table
 41.1411 +                                local nCount = 0
 41.1412 +                                function countrows(udata, cols, values, names)
 41.1413 +                                    assert(udata == 'dingdong')
 41.1414 +                                    nCount = tonumber(values[1])
 41.1415 +                                    return 0
 41.1416 +                                end
 41.1417 +                       
 41.1418 +                                -- Repopulate UI conditionally
 41.1419 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1420 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1421 +                                debe:close()
 41.1422 +                                debe = nil
 41.1423 +                       
 41.1424 +                                if event.y - posMove > 0 then  -- Gesture upward
 41.1425 +                                    if nScroll + 7 < nCount then
 41.1426 +                                        nScroll = nScroll + 7
 41.1427 +                                    else
 41.1428 +                                        return
 41.1429 +                                    end
 41.1430 +                                else -- Gesture downward
 41.1431 +                                    if nScroll - 7 >= 0 then
 41.1432 +                                        nScroll = nScroll - 7
 41.1433 +                                    else
 41.1434 +                                        return
 41.1435 +                                    end
 41.1436 +                                end
 41.1437 +                       
 41.1438 +                                -- Kludge stucked event handlers
 41.1439 +                                rectoddy:removeEventListener('touch', rectoddy)
 41.1440 +                                recteven:removeEventListener('touch', recteven)
 41.1441 +                                recthree:removeEventListener('touch', recthree)
 41.1442 +                                rectfour:removeEventListener('touch', rectfour)
 41.1443 +                                rectfive:removeEventListener('touch', rectfive)
 41.1444 +                                rectseis:removeEventListener('touch', rectseis)
 41.1445 +                                rectsieb:removeEventListener('touch', rectsieb)
 41.1446 +
 41.1447 +                                -- Clear viewport
 41.1448 +                                for nIter = 0, 6 do
 41.1449 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1450 +                       
 41.1451 +                                    function rectfresh:touch(event)
 41.1452 +                                        if event.phase == 'began' then
 41.1453 +                                            posMove = event.y
 41.1454 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1455 +                                            local nRect = fontarial.height * 1.5
 41.1456 +                                            local nTemp = nBase / nRect
 41.1457 +                                            local nIdx  = 7 - math.floor(nTemp)
 41.1458 +                                            if dbIdx[nIdx] == 0 then
 41.1459 +                                                return
 41.1460 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1461 +                                                event.target.color = color.lightGrey
 41.1462 +                                                dbMrk[nIdx] = 0
 41.1463 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1464 +                                                event.target.color = {192, 192, 192}
 41.1465 +                                                dbMrk[nIdx] = 0
 41.1466 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1467 +                                                event.target.color = {220, 210, 120}
 41.1468 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1469 +                                            else
 41.1470 +                                                event.target.color = color.khaki
 41.1471 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1472 +                                            end
 41.1473 +                                        end
 41.1474 +                                    end
 41.1475 +                                    rectfresh:addEventListener('touch', rectfresh)
 41.1476 +                       
 41.1477 +                                    if nIter % 2 == 0 then
 41.1478 +                                        rectfresh.color = color.lightGrey
 41.1479 +                                    else
 41.1480 +                                        rectfresh.color = {192, 192, 192}
 41.1481 +                                    end
 41.1482 +                       
 41.1483 +                                    -- Clear indexes
 41.1484 +                                    dbIdx[nIter+1] = 0
 41.1485 +                                    dbMrk[nIter+1] = 0
 41.1486 +                                end
 41.1487 +                       
 41.1488 +                                -- Redraw labels
 41.1489 +                                local nIter = 6
 41.1490 +                                --for nIter = 0, 7 do
 41.1491 +                                local nTemp = nCount - nScroll
 41.1492 +                                if nTemp < 7 then
 41.1493 +                                    nIter = nTemp - 1
 41.1494 +                                end
 41.1495 +                       
 41.1496 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1497 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1498 +                                    if nTemp < 8 then
 41.1499 +                                        if nTemp < 0 then break end
 41.1500 +                                        if nIter < 0 then break end
 41.1501 +                                        local labrepop = director:createLabel({
 41.1502 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1503 +                                            hAlignment='left', vAlignment='bottom',
 41.1504 +                                            font=fontsegoe,
 41.1505 +                                            text=dbRows['call']
 41.1506 +                                        })
 41.1507 +                                        dbIdx[nIter+1] = dbRows['id']
 41.1508 +                                        nIter = nIter - 1
 41.1509 +                                        nTemp = nTemp - 1
 41.1510 +                                    else
 41.1511 +                                        nTemp = nTemp - 1
 41.1512 +                                    end
 41.1513 +                                end
 41.1514 +                                debe:close()
 41.1515 +                                debe = nil
 41.1516 +                            end
 41.1517 +                            posMove = 0
 41.1518 +                        end
 41.1519 +                    end
 41.1520 +                    rectfresh:addEventListener('touch', rectfresh)
 41.1521 +
 41.1522 +                    if nIter % 2 == 0 then
 41.1523 +                        rectfresh.color = color.lightGrey
 41.1524 +                    else
 41.1525 +                        rectfresh.color = {192, 192, 192}
 41.1526 +                    end
 41.1527 +
 41.1528 +                    -- Clear indexes
 41.1529 +                    dbIdx[nIter+1] = 0
 41.1530 +                    dbMrk[nIter+1] = 0
 41.1531 +                end
 41.1532 +
 41.1533 +                -- Redraw labels
 41.1534 +                local nIter = 6
 41.1535 +                --for nIter = 0, 7 do
 41.1536 +                local nTemp = nCount - nScroll
 41.1537 +                if nTemp < 7 then
 41.1538 +                    nIter = nTemp - 1
 41.1539 +                end
 41.1540 +
 41.1541 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1542 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1543 +                    if nTemp < 8 then
 41.1544 +                        if nTemp < 0 then break end
 41.1545 +                        if nIter < 0 then break end
 41.1546 +                        local labrepop = director:createLabel({
 41.1547 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1548 +                            hAlignment='left', vAlignment='bottom',
 41.1549 +                            font=fontsegoe,
 41.1550 +                            text=dbRows['call']
 41.1551 +                        })
 41.1552 +                        dbIdx[nIter+1] = dbRows['id']
 41.1553 +                        nIter = nIter - 1
 41.1554 +                        nTemp = nTemp - 1
 41.1555 +                    else
 41.1556 +                        nTemp = nTemp - 1
 41.1557 +                    end
 41.1558 +                end
 41.1559 +                debe:close()
 41.1560 +                debe = nil
 41.1561 +            end
 41.1562 +            posMove = 0
 41.1563 +        end
 41.1564 +    end
 41.1565 +    rectseis:addEventListener('touch', rectseis)
 41.1566 +
 41.1567 +    function rectsieb:touch(event)
 41.1568 +        if event.phase == 'began' then
 41.1569 +            posMove = event.y
 41.1570 +            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1571 +            local nRect = fontarial.height * 1.5
 41.1572 +            local nTemp = nBase / nRect
 41.1573 +            local nIdx  = 7 - math.floor(nTemp)
 41.1574 +            if dbIdx[nIdx] == 0 then
 41.1575 +                return
 41.1576 +            elseif rectsieb.color.r == 240 and rectsieb.color.g == 230 and rectsieb.color.b == 140 then
 41.1577 +                rectsieb.color = color.lightGrey
 41.1578 +                dbMrk[nIdx] = 0
 41.1579 +            else
 41.1580 +                rectsieb.color = color.khaki
 41.1581 +                dbMrk[nIdx] = dbIdx[nIdx]
 41.1582 +            end
 41.1583 +        end
 41.1584 +
 41.1585 +        if event.phase == 'ended' then
 41.1586 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1587 +                -- Provide callback to count rows in table
 41.1588 +                local nCount = 0
 41.1589 +                function countrows(udata, cols, values, names)
 41.1590 +                    assert(udata == 'dingdong')
 41.1591 +                    nCount = tonumber(values[1])
 41.1592 +                    return 0
 41.1593 +                end
 41.1594 +
 41.1595 +                -- Repopulate UI conditionally
 41.1596 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1597 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1598 +                debe:close()
 41.1599 +                debe = nil
 41.1600 +
 41.1601 +                if event.y - posMove > 0 then  -- Gesture upward
 41.1602 +                    if nScroll + 7 < nCount then
 41.1603 +                        nScroll = nScroll + 7
 41.1604 +                    else
 41.1605 +                        return
 41.1606 +                    end
 41.1607 +                else -- Gesture downward
 41.1608 +                    if nScroll - 7 >= 0 then
 41.1609 +                        nScroll = nScroll - 7
 41.1610 +                    else
 41.1611 +                        return
 41.1612 +                    end
 41.1613 +                end
 41.1614 +
 41.1615 +                -- Kludge stucked event handlers
 41.1616 +                rectoddy:removeEventListener('touch', rectoddy)
 41.1617 +                recteven:removeEventListener('touch', recteven)
 41.1618 +                recthree:removeEventListener('touch', recthree)
 41.1619 +                rectfour:removeEventListener('touch', rectfour)
 41.1620 +                rectfive:removeEventListener('touch', rectfive)
 41.1621 +                rectseis:removeEventListener('touch', rectseis)
 41.1622 +                rectsieb:removeEventListener('touch', rectsieb)
 41.1623 +
 41.1624 +                -- Clear viewport
 41.1625 +                for nIter = 0, 6 do
 41.1626 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1627 +
 41.1628 +                    function rectfresh:touch(event)
 41.1629 +                        if event.phase == 'began' then
 41.1630 +                            posMove = event.y
 41.1631 +                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1632 +                            local nRect = fontarial.height * 1.5
 41.1633 +                            local nTemp = nBase / nRect
 41.1634 +                            local nIdx  = 7 - math.floor(nTemp)
 41.1635 +                            if dbIdx[nIdx] == 0 then
 41.1636 +                                return
 41.1637 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1638 +                                event.target.color = color.lightGrey
 41.1639 +                                dbMrk[nIdx] = 0
 41.1640 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1641 +                                event.target.color = {192, 192, 192}
 41.1642 +                                dbMrk[nIdx] = 0
 41.1643 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1644 +                                event.target.color = {220, 210, 120}
 41.1645 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1646 +                            else
 41.1647 +                                event.target.color = color.khaki
 41.1648 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1649 +                            end
 41.1650 +                        end
 41.1651 +                        if event.phase == 'ended' then
 41.1652 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.1653 +                                -- Provide callback to count rows in table
 41.1654 +                                local nCount = 0
 41.1655 +                                function countrows(udata, cols, values, names)
 41.1656 +                                    assert(udata == 'dingdong')
 41.1657 +                                    nCount = tonumber(values[1])
 41.1658 +                                    return 0
 41.1659 +                                end
 41.1660 +                       
 41.1661 +                                -- Repopulate UI conditionally
 41.1662 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1663 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1664 +                                debe:close()
 41.1665 +                                debe = nil
 41.1666 +                       
 41.1667 +                                if event.y - posMove > 0 then  -- Gesture upward
 41.1668 +                                    if nScroll + 7 < nCount then
 41.1669 +                                        nScroll = nScroll + 7
 41.1670 +                                    else
 41.1671 +                                        return
 41.1672 +                                    end
 41.1673 +                                else -- Gesture downward
 41.1674 +                                    if nScroll - 7 >= 0 then
 41.1675 +                                        nScroll = nScroll - 7
 41.1676 +                                    else
 41.1677 +                                        return
 41.1678 +                                    end
 41.1679 +                                end
 41.1680 +                       
 41.1681 +                                -- Kludge stucked event handlers
 41.1682 +                                rectoddy:removeEventListener('touch', rectoddy)
 41.1683 +                                recteven:removeEventListener('touch', recteven)
 41.1684 +                                recthree:removeEventListener('touch', recthree)
 41.1685 +                                rectfour:removeEventListener('touch', rectfour)
 41.1686 +                                rectfive:removeEventListener('touch', rectfive)
 41.1687 +                                rectseis:removeEventListener('touch', rectseis)
 41.1688 +                                rectsieb:removeEventListener('touch', rectsieb)
 41.1689 +
 41.1690 +                                -- Clear viewport
 41.1691 +                                for nIter = 0, 6 do
 41.1692 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1693 +                       
 41.1694 +                                    function rectfresh:touch(event)
 41.1695 +                                        if event.phase == 'began' then
 41.1696 +                                            posMove = event.y
 41.1697 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.1698 +                                            local nRect = fontarial.height * 1.5
 41.1699 +                                            local nTemp = nBase / nRect
 41.1700 +                                            local nIdx  = 7 - math.floor(nTemp)
 41.1701 +                                            if dbIdx[nIdx] == 0 then
 41.1702 +                                                return
 41.1703 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1704 +                                                event.target.color = color.lightGrey
 41.1705 +                                                dbMrk[nIdx] = 0
 41.1706 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1707 +                                                event.target.color = {192, 192, 192}
 41.1708 +                                                dbMrk[nIdx] = 0
 41.1709 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1710 +                                                event.target.color = {220, 210, 120}
 41.1711 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1712 +                                            else
 41.1713 +                                                event.target.color = color.khaki
 41.1714 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.1715 +                                            end
 41.1716 +                                        end
 41.1717 +                                    end
 41.1718 +                                    rectfresh:addEventListener('touch', rectfresh)
 41.1719 +                       
 41.1720 +                                    if nIter % 2 == 0 then
 41.1721 +                                        rectfresh.color = color.lightGrey
 41.1722 +                                    else
 41.1723 +                                        rectfresh.color = {192, 192, 192}
 41.1724 +                                    end
 41.1725 +                       
 41.1726 +                                    -- Clear indexes
 41.1727 +                                    dbIdx[nIter+1] = 0
 41.1728 +                                    dbMrk[nIter+1] = 0
 41.1729 +                                end
 41.1730 +                       
 41.1731 +                                -- Redraw labels
 41.1732 +                                local nIter = 6
 41.1733 +                                --for nIter = 0, 7 do
 41.1734 +                                local nTemp = nCount - nScroll
 41.1735 +                                if nTemp < 7 then
 41.1736 +                                    nIter = nTemp - 1
 41.1737 +                                end
 41.1738 +                       
 41.1739 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1740 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1741 +                                    if nTemp < 8 then
 41.1742 +                                        if nTemp < 0 then break end
 41.1743 +                                        if nIter < 0 then break end
 41.1744 +                                        local labrepop = director:createLabel({
 41.1745 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1746 +                                            hAlignment='left', vAlignment='bottom',
 41.1747 +                                            font=fontsegoe,
 41.1748 +                                            text=dbRows['call']
 41.1749 +                                        })
 41.1750 +                                        dbIdx[nIter+1] = dbRows['id']
 41.1751 +                                        nIter = nIter - 1
 41.1752 +                                        nTemp = nTemp - 1
 41.1753 +                                    else
 41.1754 +                                        nTemp = nTemp - 1
 41.1755 +                                    end
 41.1756 +                                end
 41.1757 +                                debe:close()
 41.1758 +                                debe = nil
 41.1759 +                            end
 41.1760 +                            posMove = 0
 41.1761 +                        end
 41.1762 +                    end
 41.1763 +                    rectfresh:addEventListener('touch', rectfresh)
 41.1764 +
 41.1765 +                    if nIter % 2 == 0 then
 41.1766 +                        rectfresh.color = color.lightGrey
 41.1767 +                    else
 41.1768 +                        rectfresh.color = {192, 192, 192}
 41.1769 +                    end
 41.1770 +
 41.1771 +                    -- Clear indexes
 41.1772 +                    dbIdx[nIter+1] = 0
 41.1773 +                    dbMrk[nIter+1] = 0
 41.1774 +                end
 41.1775 +
 41.1776 +                -- Redraw labels
 41.1777 +                local nIter = 6
 41.1778 +                --for nIter = 0, 7 do
 41.1779 +                local nTemp = nCount - nScroll
 41.1780 +                if nTemp < 7 then
 41.1781 +                    nIter = nTemp - 1
 41.1782 +                end
 41.1783 +
 41.1784 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1785 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1786 +                    if nTemp < 8 then
 41.1787 +                        if nTemp < 0 then break end
 41.1788 +                        if nIter < 0 then break end
 41.1789 +                        local labrepop = director:createLabel({
 41.1790 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1791 +                            hAlignment='left', vAlignment='bottom',
 41.1792 +                            font=fontsegoe,
 41.1793 +                            text=dbRows['call']
 41.1794 +                        })
 41.1795 +                        dbIdx[nIter+1] = dbRows['id']
 41.1796 +                        nIter = nIter - 1
 41.1797 +                        nTemp = nTemp - 1
 41.1798 +                    else
 41.1799 +                        nTemp = nTemp - 1
 41.1800 +                    end
 41.1801 +                end
 41.1802 +                debe:close()
 41.1803 +                debe = nil
 41.1804 +            end
 41.1805 +            posMove = 0
 41.1806 +        end
 41.1807 +    end
 41.1808 +    rectsieb:addEventListener('touch', rectsieb)
 41.1809 +
 41.1810 +    -- Provide callback to count rows in table
 41.1811 +    local nCount = 0
 41.1812 +    function countrows(udata, cols, values, names)
 41.1813 +        assert(udata == 'dingdong')
 41.1814 +        nCount = tonumber(values[1])
 41.1815 +        return 0
 41.1816 +    end
 41.1817 +
 41.1818 +    -- Populate UI
 41.1819 +    debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1820 +    local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1821 +    local nTemp = nCount
 41.1822 +    local nIter = 6;  --for nIter = 0, 7 do
 41.1823 +    if nTemp < 7 then
 41.1824 +        nIter = nTemp - 1
 41.1825 +    end
 41.1826 +
 41.1827 +    for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1828 +        if nTemp < 8 then
 41.1829 +            if nIter < 0 then break end
 41.1830 +            local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1831 +
 41.1832 +            function rectfresh:touch(event)
 41.1833 +                if event.phase == 'began' then
 41.1834 +                    posMove = event.y
 41.1835 +                    if event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1836 +                        event.target.color = color.lightGrey
 41.1837 +                    elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1838 +                        event.target.color = {192, 192, 192}
 41.1839 +                    elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1840 +                        event.target.color = {220, 210, 120}
 41.1841 +                    else
 41.1842 +                        event.target.color = color.khaki
 41.1843 +                    end
 41.1844 +                end
 41.1845 +            end
 41.1846 +            rectfresh:addEventListener('touch', rectfresh)
 41.1847 +
 41.1848 +            if nIter % 2 == 0 then
 41.1849 +                rectfresh.color = color.lightGrey
 41.1850 +            else
 41.1851 +                rectfresh.color = {192, 192, 192}
 41.1852 +            end
 41.1853 +
 41.1854 +            local labpopo = director:createLabel({
 41.1855 +                x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1856 +                hAlignment='left', vAlignment='bottom',
 41.1857 +                font=fontsegoe,
 41.1858 +                text=dbRows['call']
 41.1859 +            })
 41.1860 +            dbIdx[nIter+1] = dbRows['id']
 41.1861 +            nIter = nIter - 1
 41.1862 +            nTemp = nTemp - 1
 41.1863 +        else
 41.1864 +            nTemp = nTemp - 1
 41.1865 +        end
 41.1866 +    end
 41.1867 +    debe:close()
 41.1868 +    debe = nil
 41.1869 +
 41.1870 +    local butdel = director:createSprite(0, 0, 'images/buttdel1.png')
 41.1871 +    local butadd = director:createSprite(0, 0, 'images/buttadd.png')
 41.1872 +
 41.1873 +    butdel.color = color.white
 41.1874 +    butdel.x = (dsw - butdel.w - butadd.w) / 3
 41.1875 +    butdel.y = (dsh-fontarial.height*12)/2
 41.1876 +    butdel.xAnchor = 0
 41.1877 +    butdel.yAnchor = 0.5
 41.1878 +    --butdel.xScale = 5
 41.1879 +    --butdel.yScale = 1.25
 41.1880 +
 41.1881 +    butadd.color = color.white
 41.1882 +    butadd.x = dsw-dsw/8
 41.1883 +    butadd.x = dsw - (dsw - butdel.w - butadd.w) / 3
 41.1884 +    butadd.y = (dsh-fontarial.height*12)/2
 41.1885 +    butadd.xAnchor = 1
 41.1886 +    butadd.yAnchor = 0.5
 41.1887 +
 41.1888 +    -- Good transitions: slideInL/R, shrinkGrow, crossFade, fadeTR/BL, pageTurn, progressVertical
 41.1889 +    --local transoptl = {transitionType = 'progressHorizontal', transitionTime = 0.5}
 41.1890 +    local transoptr = {transitionType = 'slideInR', transitionTime = 0.5}
 41.1891 +
 41.1892 +    function butabout:touch(event)
 41.1893 +        if event.phase == 'began' then
 41.1894 +            director:moveToScene(sceneAbout, transoptr)
 41.1895 +        end
 41.1896 +    end
 41.1897 +    butabout:addEventListener('touch', butabout)
 41.1898 +
 41.1899 +    function buthelp:touch(event)
 41.1900 +        if event.phase == 'began' then
 41.1901 +            director:moveToScene(sceneHelp, transoptr)
 41.1902 +        end
 41.1903 +    end
 41.1904 +    buthelp:addEventListener('touch', buthelp)
 41.1905 +
 41.1906 +    -- String reader events handler
 41.1907 +    function gotString(event)
 41.1908 +        if (event.type == 'error') then
 41.1909 +            dbg.print('Error reading string: ' .. event.text)
 41.1910 +        elseif (event.type == 'read') then
 41.1911 +            dbg.print('String read: ' .. event.text)
 41.1912 +        end
 41.1913 +    end
 41.1914 +
 41.1915 +    function butadd:touch(event)
 41.1916 +        if (event.phase == 'began') then
 41.1917 +            -- Ensure that the string reading extension is available
 41.1918 +            if nui:isReadStringAvailable() then
 41.1919 +                -- Add a string reader event handler
 41.1920 +                system:addEventListener('stringread', gotString)
 41.1921 +
 41.1922 +                -- Create the string reader
 41.1923 +                widginput = nui:readString('New QSO Entry', '', 'Call Sign, QTH, Notes...')
 41.1924 +                if widginput then
 41.1925 +                    debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1926 +                    debe:exec('INSERT INTO qsos VALUES(NULL, \'' .. widginput .. '\')')
 41.1927 +                    --debe:exec[=[
 41.1928 +                    --    INSERT INTO qsos VALUES(NULL, widginput);
 41.1929 +                    --]=]
 41.1930 +                    debe:close()
 41.1931 +                    debe = nil
 41.1932 +
 41.1933 +                    -- Provide callback to count rows in table
 41.1934 +                    local nCount = 0
 41.1935 +                    function countrows(udata, cols, values, names)
 41.1936 +                        assert(udata == 'dingdong')
 41.1937 +                        nCount = tonumber(values[1])
 41.1938 +                        return 0
 41.1939 +                    end
 41.1940 +
 41.1941 +                    -- Repopulate UI
 41.1942 +                    debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.1943 +                    local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.1944 +                    local nIter = 6
 41.1945 +                    --for nIter = 0, 7 do
 41.1946 +                    local nTemp = nCount
 41.1947 +                    if nTemp < 7 then
 41.1948 +                        nIter = nTemp - 1
 41.1949 +                    end
 41.1950 +
 41.1951 +                    for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.1952 +                        if nTemp < 8 then
 41.1953 +                            if nIter < 0 then break end
 41.1954 +                            local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.1955 +
 41.1956 +                            function rectfresh:touch(event)
 41.1957 +                                if event.phase == 'began' then
 41.1958 +                                    if event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.1959 +                                        event.target.color = color.lightGrey
 41.1960 +                                    elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.1961 +                                        event.target.color = {192, 192, 192}
 41.1962 +                                    elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.1963 +                                        event.target.color = {220, 210, 120}
 41.1964 +                                    else
 41.1965 +                                        event.target.color = color.khaki
 41.1966 +                                    end
 41.1967 +                                end
 41.1968 +                            end
 41.1969 +                            rectfresh:addEventListener('touch', rectfresh)
 41.1970 +
 41.1971 +                            if nIter % 2 == 0 then
 41.1972 +                                rectfresh.color = color.lightGrey
 41.1973 +                            else
 41.1974 +                                rectfresh.color = {192, 192, 192}
 41.1975 +                            end
 41.1976 +
 41.1977 +                            local labrepop = director:createLabel({
 41.1978 +                                x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.1979 +                                hAlignment='left', vAlignment='bottom',
 41.1980 +                                font=fontsegoe,
 41.1981 +                                text=dbRows['call']
 41.1982 +                            })
 41.1983 +                            dbIdx[nIter+1] = dbRows['id']
 41.1984 +                            nIter = nIter - 1
 41.1985 +                            nTemp = nTemp - 1
 41.1986 +                        else
 41.1987 +                            nTemp = nTemp - 1
 41.1988 +                        end
 41.1989 +                    end
 41.1990 +                    debe:close()
 41.1991 +                    debe = nil
 41.1992 +                end
 41.1993 +            else
 41.1994 +                dbg.print('String reading is not supported on this platform')
 41.1995 +            end
 41.1996 +        end
 41.1997 +
 41.1998 +        if event.phase == 'ended' then
 41.1999 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.2000 +                -- Provide callback to count rows in table
 41.2001 +                local nCount = 0
 41.2002 +                function countrows(udata, cols, values, names)
 41.2003 +                    assert(udata == 'dingdong')
 41.2004 +                    nCount = tonumber(values[1])
 41.2005 +                    return 0
 41.2006 +                end
 41.2007 +
 41.2008 +                -- Repopulate UI conditionally
 41.2009 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2010 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2011 +                debe:close()
 41.2012 +                debe = nil
 41.2013 +
 41.2014 +                if event.y - posMove > 0 then  -- Gesture upward
 41.2015 +                    if nScroll + 7 < nCount then
 41.2016 +                        nScroll = nScroll + 7
 41.2017 +                    else
 41.2018 +                        return
 41.2019 +                    end
 41.2020 +                else -- Gesture downward
 41.2021 +                    if nScroll - 7 >= 0 then
 41.2022 +                        nScroll = nScroll - 7
 41.2023 +                    else
 41.2024 +                        return
 41.2025 +                    end
 41.2026 +                end
 41.2027 +
 41.2028 +                -- Kludge stucked event handlers
 41.2029 +                rectoddy:removeEventListener('touch', rectoddy)
 41.2030 +                recteven:removeEventListener('touch', recteven)
 41.2031 +                recthree:removeEventListener('touch', recthree)
 41.2032 +                rectfour:removeEventListener('touch', rectfour)
 41.2033 +                rectfive:removeEventListener('touch', rectfive)
 41.2034 +                rectseis:removeEventListener('touch', rectseis)
 41.2035 +                rectsieb:removeEventListener('touch', rectsieb)
 41.2036 +
 41.2037 +                -- Clear viewport
 41.2038 +                for nIter = 0, 6 do
 41.2039 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.2040 +
 41.2041 +                    function rectfresh:touch(event)
 41.2042 +                        if event.phase == 'began' then
 41.2043 +                            posMove = event.y
 41.2044 +                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.2045 +                            local nRect = fontarial.height * 1.5
 41.2046 +                            local nTemp = nBase / nRect
 41.2047 +                            local nIdx  = 7 - math.floor(nTemp)
 41.2048 +                            if dbIdx[nIdx] == 0 then
 41.2049 +                                return
 41.2050 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.2051 +                                event.target.color = color.lightGrey
 41.2052 +                                dbMrk[nIdx] = 0
 41.2053 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.2054 +                                event.target.color = {192, 192, 192}
 41.2055 +                                dbMrk[nIdx] = 0
 41.2056 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.2057 +                                event.target.color = {220, 210, 120}
 41.2058 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2059 +                            else
 41.2060 +                                event.target.color = color.khaki
 41.2061 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2062 +                            end
 41.2063 +                        end
 41.2064 +                        if event.phase == 'ended' then
 41.2065 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.2066 +                                -- Provide callback to count rows in table
 41.2067 +                                local nCount = 0
 41.2068 +                                function countrows(udata, cols, values, names)
 41.2069 +                                    assert(udata == 'dingdong')
 41.2070 +                                    nCount = tonumber(values[1])
 41.2071 +                                    return 0
 41.2072 +                                end
 41.2073 +                       
 41.2074 +                                -- Repopulate UI conditionally
 41.2075 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2076 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2077 +                                debe:close()
 41.2078 +                                debe = nil
 41.2079 +                       
 41.2080 +                                if event.y - posMove > 0 then  -- Gesture upward
 41.2081 +                                    if nScroll + 7 < nCount then
 41.2082 +                                        nScroll = nScroll + 7
 41.2083 +                                    else
 41.2084 +                                        return
 41.2085 +                                    end
 41.2086 +                                else -- Gesture downward
 41.2087 +                                    if nScroll - 7 >= 0 then
 41.2088 +                                        nScroll = nScroll - 7
 41.2089 +                                    else
 41.2090 +                                        return
 41.2091 +                                    end
 41.2092 +                                end
 41.2093 +                       
 41.2094 +                                -- Kludge stucked event handlers
 41.2095 +                                rectoddy:removeEventListener('touch', rectoddy)
 41.2096 +                                recteven:removeEventListener('touch', recteven)
 41.2097 +                                recthree:removeEventListener('touch', recthree)
 41.2098 +                                rectfour:removeEventListener('touch', rectfour)
 41.2099 +                                rectfive:removeEventListener('touch', rectfive)
 41.2100 +                                rectseis:removeEventListener('touch', rectseis)
 41.2101 +                                rectsieb:removeEventListener('touch', rectsieb)
 41.2102 +
 41.2103 +                                -- Clear viewport
 41.2104 +                                for nIter = 0, 6 do
 41.2105 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.2106 +                       
 41.2107 +                                    function rectfresh:touch(event)
 41.2108 +                                        if event.phase == 'began' then
 41.2109 +                                            posMove = event.y
 41.2110 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.2111 +                                            local nRect = fontarial.height * 1.5
 41.2112 +                                            local nTemp = nBase / nRect
 41.2113 +                                            local nIdx  = 7 - math.floor(nTemp)
 41.2114 +                                            if dbIdx[nIdx] == 0 then
 41.2115 +                                                return
 41.2116 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.2117 +                                                event.target.color = color.lightGrey
 41.2118 +                                                dbMrk[nIdx] = 0
 41.2119 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.2120 +                                                event.target.color = {192, 192, 192}
 41.2121 +                                                dbMrk[nIdx] = 0
 41.2122 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.2123 +                                                event.target.color = {220, 210, 120}
 41.2124 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2125 +                                            else
 41.2126 +                                                event.target.color = color.khaki
 41.2127 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2128 +                                            end
 41.2129 +                                        end
 41.2130 +                                    end
 41.2131 +                                    rectfresh:addEventListener('touch', rectfresh)
 41.2132 +                       
 41.2133 +                                    if nIter % 2 == 0 then
 41.2134 +                                        rectfresh.color = color.lightGrey
 41.2135 +                                    else
 41.2136 +                                        rectfresh.color = {192, 192, 192}
 41.2137 +                                    end
 41.2138 +                       
 41.2139 +                                    -- Clear indexes
 41.2140 +                                    dbIdx[nIter+1] = 0
 41.2141 +                                    dbMrk[nIter+1] = 0
 41.2142 +                                end
 41.2143 +                       
 41.2144 +                                -- Redraw labels
 41.2145 +                                local nIter = 6
 41.2146 +                                --for nIter = 0, 7 do
 41.2147 +                                local nTemp = nCount - nScroll
 41.2148 +                                if nTemp < 7 then
 41.2149 +                                    nIter = nTemp - 1
 41.2150 +                                end
 41.2151 +                       
 41.2152 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2153 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2154 +                                    if nTemp < 8 then
 41.2155 +                                        if nTemp < 0 then break end
 41.2156 +                                        if nIter < 0 then break end
 41.2157 +                                        local labrepop = director:createLabel({
 41.2158 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.2159 +                                            hAlignment='left', vAlignment='bottom',
 41.2160 +                                            font=fontsegoe,
 41.2161 +                                            text=dbRows['call']
 41.2162 +                                        })
 41.2163 +                                        dbIdx[nIter+1] = dbRows['id']
 41.2164 +                                        nIter = nIter - 1
 41.2165 +                                        nTemp = nTemp - 1
 41.2166 +                                    else
 41.2167 +                                        nTemp = nTemp - 1
 41.2168 +                                    end
 41.2169 +                                end
 41.2170 +                                debe:close()
 41.2171 +                                debe = nil
 41.2172 +                            end
 41.2173 +                            posMove = 0
 41.2174 +                        end
 41.2175 +                    end
 41.2176 +                    rectfresh:addEventListener('touch', rectfresh)
 41.2177 +
 41.2178 +                    if nIter % 2 == 0 then
 41.2179 +                        rectfresh.color = color.lightGrey
 41.2180 +                    else
 41.2181 +                        rectfresh.color = {192, 192, 192}
 41.2182 +                    end
 41.2183 +
 41.2184 +                    -- Clear indexes
 41.2185 +                    dbIdx[nIter+1] = 0
 41.2186 +                    dbMrk[nIter+1] = 0
 41.2187 +                end
 41.2188 +
 41.2189 +                -- Redraw labels
 41.2190 +                local nIter = 6
 41.2191 +                --for nIter = 0, 7 do
 41.2192 +                local nTemp = nCount - nScroll
 41.2193 +                if nTemp < 7 then
 41.2194 +                    nIter = nTemp - 1
 41.2195 +                end
 41.2196 +
 41.2197 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2198 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2199 +                    if nTemp < 8 then
 41.2200 +                        if nTemp < 0 then break end
 41.2201 +                        if nIter < 0 then break end
 41.2202 +                        local labrepop = director:createLabel({
 41.2203 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.2204 +                            hAlignment='left', vAlignment='bottom',
 41.2205 +                            font=fontsegoe,
 41.2206 +                            text=dbRows['call']
 41.2207 +                        })
 41.2208 +                        dbIdx[nIter+1] = dbRows['id']
 41.2209 +                        nIter = nIter - 1
 41.2210 +                        nTemp = nTemp - 1
 41.2211 +                    else
 41.2212 +                        nTemp = nTemp - 1
 41.2213 +                    end
 41.2214 +                end
 41.2215 +                debe:close()
 41.2216 +                debe = nil
 41.2217 +            end
 41.2218 +            posMove = 0
 41.2219 +        end
 41.2220 +    end
 41.2221 +    butadd:addEventListener('touch', butadd)
 41.2222 +
 41.2223 +    function butdel:touch(event)
 41.2224 +        if (event.phase == 'began') then
 41.2225 +            -- Provide callback to count rows in table
 41.2226 +            local nCount = 0
 41.2227 +            function countrows(udata, cols, values, names)
 41.2228 +                assert(udata == 'dingdong')
 41.2229 +                nCount = tonumber(values[1])
 41.2230 +                return 0
 41.2231 +            end
 41.2232 +
 41.2233 +            -- Iterate over visible rows, deleting
 41.2234 +            debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2235 +            local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2236 +            local nTemp = nCount
 41.2237 +            local nIter = 0;  --for nIter = 0, 7 do
 41.2238 +
 41.2239 +            for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2240 +                if nTemp < 8 then
 41.2241 +                    if nIter > 6 then break end
 41.2242 +                    if dbMrk[nIter+1] ~= 0 then
 41.2243 +                        debe:exec('DELETE FROM qsos WHERE id = \'' .. dbRows['id'] .. '\'')
 41.2244 +                    end
 41.2245 +                    nIter = nIter + 1
 41.2246 +                    nTemp = nTemp - 1
 41.2247 +                else
 41.2248 +                    nTemp = nTemp - 1
 41.2249 +                end
 41.2250 +            end
 41.2251 +            debe:close()
 41.2252 +            debe = nil
 41.2253 +
 41.2254 +            -- Kludge stucked event handlers
 41.2255 +            rectoddy:removeEventListener('touch', rectoddy)
 41.2256 +            recteven:removeEventListener('touch', recteven)
 41.2257 +            recthree:removeEventListener('touch', recthree)
 41.2258 +            rectfour:removeEventListener('touch', rectfour)
 41.2259 +            rectfive:removeEventListener('touch', rectfive)
 41.2260 +            rectseis:removeEventListener('touch', rectseis)
 41.2261 +            rectsieb:removeEventListener('touch', rectsieb)
 41.2262 +
 41.2263 +            -- Clear viewport
 41.2264 +            for nIter = 0, 6 do
 41.2265 +                local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.2266 +
 41.2267 +                function rectfresh:touch(event)
 41.2268 +                    if event.phase == 'began' then
 41.2269 +                        local nBase = event.y - (dsh - fontarial.height * 12)
 41.2270 +                        local nRect = fontarial.height * 1.5
 41.2271 +                        local nTemp = nBase / nRect
 41.2272 +                        local nIdx  = 7 - math.floor(nTemp)
 41.2273 +                        if dbIdx[nIdx] == 0 then
 41.2274 +                            return
 41.2275 +                        elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.2276 +                            event.target.color = color.lightGrey
 41.2277 +                            dbMrk[nIdx] = 0
 41.2278 +                        elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.2279 +                            event.target.color = {192, 192, 192}
 41.2280 +                            dbMrk[nIdx] = 0
 41.2281 +                        elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.2282 +                            event.target.color = {220, 210, 120}
 41.2283 +                            dbMrk[nIdx] = dbIdx[nIdx]
 41.2284 +                        else
 41.2285 +                            event.target.color = color.khaki
 41.2286 +                            dbMrk[nIdx] = dbIdx[nIdx]
 41.2287 +                        end
 41.2288 +                    end
 41.2289 +                end
 41.2290 +                rectfresh:addEventListener('touch', rectfresh)
 41.2291 +
 41.2292 +                if nIter % 2 == 0 then
 41.2293 +                    rectfresh.color = color.lightGrey
 41.2294 +                else
 41.2295 +                    rectfresh.color = {192, 192, 192}
 41.2296 +                end
 41.2297 +
 41.2298 +                -- Clear indexes
 41.2299 +                dbIdx[nIter+1] = 0
 41.2300 +                dbMrk[nIter+1] = 0
 41.2301 +            end
 41.2302 +
 41.2303 +            -- Repopulate UI
 41.2304 +            debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2305 +            local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2306 +            local nIter = 6
 41.2307 +            --for nIter = 0, 7 do
 41.2308 +            local nTemp = nCount
 41.2309 +            if nTemp < 7 then
 41.2310 +                nIter = nTemp - 1
 41.2311 +            end
 41.2312 +
 41.2313 +            for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2314 +                if nTemp < 8 then
 41.2315 +                    if nIter < 0 then break end
 41.2316 +                    local labrepop = director:createLabel({
 41.2317 +                        x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.2318 +                        hAlignment='left', vAlignment='bottom',
 41.2319 +                        font=fontsegoe,
 41.2320 +                        text=dbRows['call']
 41.2321 +                    })
 41.2322 +                    dbIdx[nIter+1] = dbRows['id']
 41.2323 +                    nIter = nIter - 1
 41.2324 +                    nTemp = nTemp - 1
 41.2325 +                else
 41.2326 +                    nTemp = nTemp - 1
 41.2327 +                end
 41.2328 +            end
 41.2329 +            debe:close()
 41.2330 +            debe = nil
 41.2331 +        end
 41.2332 +
 41.2333 +        if event.phase == 'ended' then
 41.2334 +            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.2335 +                -- Provide callback to count rows in table
 41.2336 +                local nCount = 0
 41.2337 +                function countrows(udata, cols, values, names)
 41.2338 +                    assert(udata == 'dingdong')
 41.2339 +                    nCount = tonumber(values[1])
 41.2340 +                    return 0
 41.2341 +                end
 41.2342 +
 41.2343 +                -- Repopulate UI conditionally
 41.2344 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2345 +                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2346 +                debe:close()
 41.2347 +                debe = nil
 41.2348 +
 41.2349 +                if event.y - posMove > 0 then  -- Gesture upward
 41.2350 +                    if nScroll + 7 < nCount then
 41.2351 +                        nScroll = nScroll + 7
 41.2352 +                    else
 41.2353 +                        return
 41.2354 +                    end
 41.2355 +                else -- Gesture downward
 41.2356 +                    if nScroll - 7 >= 0 then
 41.2357 +                        nScroll = nScroll - 7
 41.2358 +                    else
 41.2359 +                        return
 41.2360 +                    end
 41.2361 +                end
 41.2362 +
 41.2363 +                -- Kludge stucked event handlers
 41.2364 +                rectoddy:removeEventListener('touch', rectoddy)
 41.2365 +                recteven:removeEventListener('touch', recteven)
 41.2366 +                recthree:removeEventListener('touch', recthree)
 41.2367 +                rectfour:removeEventListener('touch', rectfour)
 41.2368 +                rectfive:removeEventListener('touch', rectfive)
 41.2369 +                rectseis:removeEventListener('touch', rectseis)
 41.2370 +                rectsieb:removeEventListener('touch', rectsieb)
 41.2371 +
 41.2372 +                -- Clear viewport
 41.2373 +                for nIter = 0, 6 do
 41.2374 +                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.2375 +
 41.2376 +                    function rectfresh:touch(event)
 41.2377 +                        if event.phase == 'began' then
 41.2378 +                            posMove = event.y
 41.2379 +                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.2380 +                            local nRect = fontarial.height * 1.5
 41.2381 +                            local nTemp = nBase / nRect
 41.2382 +                            local nIdx  = 7 - math.floor(nTemp)
 41.2383 +                            if dbIdx[nIdx] == 0 then
 41.2384 +                                return
 41.2385 +                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.2386 +                                event.target.color = color.lightGrey
 41.2387 +                                dbMrk[nIdx] = 0
 41.2388 +                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.2389 +                                event.target.color = {192, 192, 192}
 41.2390 +                                dbMrk[nIdx] = 0
 41.2391 +                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.2392 +                                event.target.color = {220, 210, 120}
 41.2393 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2394 +                            else
 41.2395 +                                event.target.color = color.khaki
 41.2396 +                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2397 +                            end
 41.2398 +                        end
 41.2399 +                        if event.phase == 'ended' then
 41.2400 +                            if math.abs(event.y - posMove) > fontarial.height*1.5 then
 41.2401 +                                -- Provide callback to count rows in table
 41.2402 +                                local nCount = 0
 41.2403 +                                function countrows(udata, cols, values, names)
 41.2404 +                                    assert(udata == 'dingdong')
 41.2405 +                                    nCount = tonumber(values[1])
 41.2406 +                                    return 0
 41.2407 +                                end
 41.2408 +                       
 41.2409 +                                -- Repopulate UI conditionally
 41.2410 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2411 +                                local nRet = debe:exec('SELECT Count(*) FROM qsos', countrows, 'dingdong')
 41.2412 +                                debe:close()
 41.2413 +                                debe = nil
 41.2414 +                       
 41.2415 +                                if event.y - posMove > 0 then  -- Gesture upward
 41.2416 +                                    if nScroll + 7 < nCount then
 41.2417 +                                        nScroll = nScroll + 7
 41.2418 +                                    else
 41.2419 +                                        return
 41.2420 +                                    end
 41.2421 +                                else -- Gesture downward
 41.2422 +                                    if nScroll - 7 >= 0 then
 41.2423 +                                        nScroll = nScroll - 7
 41.2424 +                                    else
 41.2425 +                                        return
 41.2426 +                                    end
 41.2427 +                                end
 41.2428 +                       
 41.2429 +                                -- Kludge stucked event handlers
 41.2430 +                                rectoddy:removeEventListener('touch', rectoddy)
 41.2431 +                                recteven:removeEventListener('touch', recteven)
 41.2432 +                                recthree:removeEventListener('touch', recthree)
 41.2433 +                                rectfour:removeEventListener('touch', rectfour)
 41.2434 +                                rectfive:removeEventListener('touch', rectfive)
 41.2435 +                                rectseis:removeEventListener('touch', rectseis)
 41.2436 +                                rectsieb:removeEventListener('touch', rectsieb)
 41.2437 +
 41.2438 +                                -- Clear viewport
 41.2439 +                                for nIter = 0, 6 do
 41.2440 +                                    local rectfresh = director:createRectangle(0, (dsh - fontarial.height * 3 - nIter * fontarial.height * 1.5), dsw, fontarial.height * 1.5)
 41.2441 +                       
 41.2442 +                                    function rectfresh:touch(event)
 41.2443 +                                        if event.phase == 'began' then
 41.2444 +                                            posMove = event.y
 41.2445 +                                            local nBase = event.y - (dsh - fontarial.height * 12)
 41.2446 +                                            local nRect = fontarial.height * 1.5
 41.2447 +                                            local nTemp = nBase / nRect
 41.2448 +                                            local nIdx  = 7 - math.floor(nTemp)
 41.2449 +                                            if dbIdx[nIdx] == 0 then
 41.2450 +                                                return
 41.2451 +                                            elseif event.target.color.r == 240 and event.target.color.g == 230 and event.target.color.b == 140 then
 41.2452 +                                                event.target.color = color.lightGrey
 41.2453 +                                                dbMrk[nIdx] = 0
 41.2454 +                                            elseif event.target.color.r == 220 and event.target.color.g == 210 and event.target.color.b == 120 then
 41.2455 +                                                event.target.color = {192, 192, 192}
 41.2456 +                                                dbMrk[nIdx] = 0
 41.2457 +                                            elseif event.target.color.r == 192 and event.target.color.g == 192 and event.target.color.b == 192 then
 41.2458 +                                                event.target.color = {220, 210, 120}
 41.2459 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2460 +                                            else
 41.2461 +                                                event.target.color = color.khaki
 41.2462 +                                                dbMrk[nIdx] = dbIdx[nIdx]
 41.2463 +                                            end
 41.2464 +                                        end
 41.2465 +                                    end
 41.2466 +                                    rectfresh:addEventListener('touch', rectfresh)
 41.2467 +                       
 41.2468 +                                    if nIter % 2 == 0 then
 41.2469 +                                        rectfresh.color = color.lightGrey
 41.2470 +                                    else
 41.2471 +                                        rectfresh.color = {192, 192, 192}
 41.2472 +                                    end
 41.2473 +                       
 41.2474 +                                    -- Clear indexes
 41.2475 +                                    dbIdx[nIter+1] = 0
 41.2476 +                                    dbMrk[nIter+1] = 0
 41.2477 +                                end
 41.2478 +                       
 41.2479 +                                -- Redraw labels
 41.2480 +                                local nIter = 6
 41.2481 +                                --for nIter = 0, 7 do
 41.2482 +                                local nTemp = nCount - nScroll
 41.2483 +                                if nTemp < 7 then
 41.2484 +                                    nIter = nTemp - 1
 41.2485 +                                end
 41.2486 +                       
 41.2487 +                                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2488 +                                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2489 +                                    if nTemp < 8 then
 41.2490 +                                        if nTemp < 0 then break end
 41.2491 +                                        if nIter < 0 then break end
 41.2492 +                                        local labrepop = director:createLabel({
 41.2493 +                                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.2494 +                                            hAlignment='left', vAlignment='bottom',
 41.2495 +                                            font=fontsegoe,
 41.2496 +                                            text=dbRows['call']
 41.2497 +                                        })
 41.2498 +                                        dbIdx[nIter+1] = dbRows['id']
 41.2499 +                                        nIter = nIter - 1
 41.2500 +                                        nTemp = nTemp - 1
 41.2501 +                                    else
 41.2502 +                                        nTemp = nTemp - 1
 41.2503 +                                    end
 41.2504 +                                end
 41.2505 +                                debe:close()
 41.2506 +                                debe = nil
 41.2507 +                            end
 41.2508 +                            posMove = 0
 41.2509 +                        end
 41.2510 +                    end
 41.2511 +                    rectfresh:addEventListener('touch', rectfresh)
 41.2512 +
 41.2513 +                    if nIter % 2 == 0 then
 41.2514 +                        rectfresh.color = color.lightGrey
 41.2515 +                    else
 41.2516 +                        rectfresh.color = {192, 192, 192}
 41.2517 +                    end
 41.2518 +
 41.2519 +                    -- Clear indexes
 41.2520 +                    dbIdx[nIter+1] = 0
 41.2521 +                    dbMrk[nIter+1] = 0
 41.2522 +                end
 41.2523 +
 41.2524 +                -- Redraw labels
 41.2525 +                local nIter = 6
 41.2526 +                --for nIter = 0, 7 do
 41.2527 +                local nTemp = nCount - nScroll
 41.2528 +                if nTemp < 7 then
 41.2529 +                    nIter = nTemp - 1
 41.2530 +                end
 41.2531 +
 41.2532 +                debe = sqlite3.open(pathStor .. 'amalog.sql')
 41.2533 +                for dbRows in debe:nrows('SELECT * FROM qsos') do
 41.2534 +                    if nTemp < 8 then
 41.2535 +                        if nTemp < 0 then break end
 41.2536 +                        if nIter < 0 then break end
 41.2537 +                        local labrepop = director:createLabel({
 41.2538 +                            x=fontsegoe.height/2, y=dsh-fontarial.height*(3+nIter*1.5) + (fontsegoe.height/3),
 41.2539 +                            hAlignment='left', vAlignment='bottom',
 41.2540 +                            font=fontsegoe,
 41.2541 +                            text=dbRows['call']
 41.2542 +                        })
 41.2543 +                        dbIdx[nIter+1] = dbRows['id']
 41.2544 +                        nIter = nIter - 1
 41.2545 +                        nTemp = nTemp - 1
 41.2546 +                    else
 41.2547 +                        nTemp = nTemp - 1
 41.2548 +                    end
 41.2549 +                end
 41.2550 +                debe:close()
 41.2551 +                debe = nil
 41.2552 +            end
 41.2553 +            posMove = 0
 41.2554 +        end
 41.2555 +    end
 41.2556 +    butdel:addEventListener('touch', butdel)
 41.2557 +end
 41.2558 +
 41.2559 +function sceneloc:tearDown(event)
 41.2560 +    dbg.print('sceneloc:tearDown')
 41.2561 +    --rectfresh:removeEventListener('touch', rectfresh)
 41.2562 +    rectoddy:removeEventListener('touch', rectoddy)
 41.2563 +    recteven:removeEventListener('touch', recteven)
 41.2564 +    recthree:removeEventListener('touch', recthree)
 41.2565 +    rectfour:removeEventListener('touch', rectfour)
 41.2566 +    rectfive:removeEventListener('touch', rectfive)
 41.2567 +    rectseis:removeEventListener('touch', rectseis)
 41.2568 +    rectsieb:removeEventListener('touch', rectsieb)
 41.2569 +    --self.obj0:removeFromParent()
 41.2570 +    --self.obj1:removeFromParent()
 41.2571 +    --self.obj0 = nil
 41.2572 +    --self.obj1 = nil
 41.2573 +end
 41.2574 +function sceneloc:enterPreTransition(event)
 41.2575 +    dbg.print('sceneloc:enterPreTransition')
 41.2576 +end
 41.2577 +function sceneloc:enterPostTransition(event)
 41.2578 +    dbg.print('sceneloc:enterPostTransition')
 41.2579 +end
 41.2580 +function sceneloc:exitPreTransition(event)
 41.2581 +    dbg.print('sceneloc:exitPreTransition')
 41.2582 +end
 41.2583 +function sceneloc:exitPostTransition(event)
 41.2584 +    dbg.print('sceneloc:exitPostTransition')
 41.2585 +end
 41.2586 +
 41.2587 +sceneloc:addEventListener({'setUp', 'tearDown', 'enterPreTransition',
 41.2588 +    'enterPostTransition', 'exitPreTransition', 'exitPostTransition'}, sceneloc)
 41.2589 +
 41.2590 +return sceneloc
    42.1 Binary file resources/splashscreen.jpg has changed
    43.1 Binary file resources/textures/skynorm.png has changed
    44.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    44.2 +++ b/vc11xwp/Amalog_vc11xwp_wp8devtoolset.sln	Wed Jul 31 19:28:00 2013 +0200
    44.3 @@ -0,0 +1,44 @@
    44.4 +Microsoft Visual Studio Solution File, Format Version 12.00
    44.5 +# Visual Studio Express 2012 for Windows Phone
    44.6 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Marmalade.Shell", "Marmalade.Shell.csproj", "{01587A73-431C-A052-82CB-C8DBCBC28941}"
    44.7 +	ProjectSection(ProjectDependencies) = postProject
    44.8 +		{0A920E8C-0297-B699-F78D-D7A1587B7639} = {0A920E8C-0297-B699-F78D-D7A1587B7639}
    44.9 +	EndProjectSection
   44.10 +EndProject
   44.11 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Amalog_vc11xwp_wp8devtoolset", "Amalog_vc11xwp_wp8devtoolset.vcxproj", "{0A920E8C-0297-B699-F78D-D7A1587B7639}"
   44.12 +EndProject
   44.13 +Global
   44.14 +	GlobalSection(SolutionConfigurationPlatforms) = preSolution
   44.15 +		Debug|ARM = Debug|ARM
   44.16 +		Debug|X86 = Debug|X86
   44.17 +		Release|ARM = Release|ARM
   44.18 +		Release|X86 = Release|X86
   44.19 +	EndGlobalSection
   44.20 +	GlobalSection(ProjectConfigurationPlatforms) = postSolution
   44.21 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|ARM.ActiveCfg = Debug|ARM
   44.22 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|ARM.Build.0 = Debug|ARM
   44.23 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|ARM.Deploy.0 = Debug|ARM
   44.24 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|X86.ActiveCfg = Debug|X86
   44.25 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|X86.Build.0 = Debug|X86
   44.26 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Debug|X86.Deploy.0 = Debug|X86
   44.27 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|ARM.ActiveCfg = Release|ARM
   44.28 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|ARM.Build.0 = Release|ARM
   44.29 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|ARM.Deploy.0 = Release|ARM
   44.30 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|X86.ActiveCfg = Release|X86
   44.31 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|X86.Build.0 = Release|X86
   44.32 +		{01587A73-431C-A052-82CB-C8DBCBC28941}.Release|X86.Deploy.0 = Release|X86
   44.33 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Debug|ARM.ActiveCfg = Debug|ARM
   44.34 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Debug|ARM.Build.0 = Debug|ARM
   44.35 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Debug|ARM.Deploy.0 = Debug|ARM
   44.36 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Debug|X86.ActiveCfg = Debug|Win32
   44.37 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Debug|X86.Build.0 = Debug|Win32
   44.38 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Release|ARM.ActiveCfg = Release|ARM
   44.39 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Release|ARM.Build.0 = Release|ARM
   44.40 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Release|ARM.Deploy.0 = Release|ARM
   44.41 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Release|X86.ActiveCfg = Release|Win32
   44.42 +		{0A920E8C-0297-B699-F78D-D7A1587B7639}.Release|X86.Build.0 = Release|Win32
   44.43 +	EndGlobalSection
   44.44 +	GlobalSection(SolutionProperties) = preSolution
   44.45 +		HideSolutionNode = FALSE
   44.46 +	EndGlobalSection
   44.47 +EndGlobal
    45.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    45.2 +++ b/vc11xwp/Amalog_vc11xwp_wp8devtoolset.vcxproj	Wed Jul 31 19:28:00 2013 +0200
    45.3 @@ -0,0 +1,1850 @@
    45.4 +<?xml version="1.0" encoding="utf-8"?>
    45.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    45.6 +    <ItemGroup Label="ProjectConfigurations">
    45.7 +    <ProjectConfiguration Include="Debug|Win32">
    45.8 +      <Configuration>Debug</Configuration>
    45.9 +      <Platform>Win32</Platform>
   45.10 +    </ProjectConfiguration>
   45.11 +    <ProjectConfiguration Include="Release|Win32">
   45.12 +      <Configuration>Release</Configuration>
   45.13 +      <Platform>Win32</Platform>
   45.14 +    </ProjectConfiguration>
   45.15 +    <ProjectConfiguration Include="Debug|ARM">
   45.16 +      <Configuration>Debug</Configuration>
   45.17 +      <Platform>ARM</Platform>
   45.18 +    </ProjectConfiguration>
   45.19 +    <ProjectConfiguration Include="Release|ARM">
   45.20 +      <Configuration>Release</Configuration>
   45.21 +      <Platform>ARM</Platform>
   45.22 +    </ProjectConfiguration>
   45.23 +    </ItemGroup>
   45.24 +
   45.25 +    <PropertyGroup Label="Globals">
   45.26 +      <ProjectGuid>{0A920E8C-0297-B699-F78D-D7A1587B7639}</ProjectGuid>
   45.27 +      <RootNamespace>Amalog</RootNamespace>
   45.28 +      <DefaultLanguage>en-US</DefaultLanguage>
   45.29 +      <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>      
   45.30 +      <WinMDAssembly>False</WinMDAssembly>
   45.31 +    </PropertyGroup>
   45.32 +    
   45.33 +    <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
   45.34 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
   45.35 +      <ConfigurationType>DynamicLibrary</ConfigurationType>
   45.36 +      <UseDebugLibraries>true</UseDebugLibraries>
   45.37 +      <CharacterSet>Unicode</CharacterSet>
   45.38 +      <PlatformToolset>v110_wp80</PlatformToolset>
   45.39 +      <IgnoreImportLibrary>false</IgnoreImportLibrary>
   45.40 +    </PropertyGroup>
   45.41 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
   45.42 +      <ConfigurationType>DynamicLibrary</ConfigurationType>
   45.43 +      <UseDebugLibraries>false</UseDebugLibraries>
   45.44 +      <CharacterSet>Unicode</CharacterSet>
   45.45 +      <PlatformToolset>v110_wp80</PlatformToolset>
   45.46 +      <IgnoreImportLibrary>false</IgnoreImportLibrary>
   45.47 +    </PropertyGroup>
   45.48 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
   45.49 +      <ConfigurationType>DynamicLibrary</ConfigurationType>
   45.50 +      <UseDebugLibraries>true</UseDebugLibraries>
   45.51 +      <CharacterSet>Unicode</CharacterSet>
   45.52 +      <PlatformToolset>v110_wp80</PlatformToolset>
   45.53 +      <IgnoreImportLibrary>false</IgnoreImportLibrary>
   45.54 +    </PropertyGroup>
   45.55 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
   45.56 +      <ConfigurationType>DynamicLibrary</ConfigurationType>
   45.57 +      <UseDebugLibraries>false</UseDebugLibraries>
   45.58 +      <CharacterSet>Unicode</CharacterSet>
   45.59 +      <PlatformToolset>v110_wp80</PlatformToolset>
   45.60 +      <IgnoreImportLibrary>false</IgnoreImportLibrary>
   45.61 +    </PropertyGroup>
   45.62 +    <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   45.63 +    
   45.64 +    <ImportGroup Label="PropertySheets">
   45.65 +      <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
   45.66 +    </ImportGroup>  
   45.67 +
   45.68 +    <PropertyGroup Label="UserMacros" />   
   45.69 +        <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
   45.70 +      <LinkIncremental>true</LinkIncremental>
   45.71 +      <ExecutablePath>$(S3E_DIR)\bin;$(WP80ToolSetPath)bin;$(WindowsSDK_ExecutablePath_x86);$(WindowsMinSDKDir)bin\x86;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH)</ExecutablePath>
   45.72 +      <IntDir>Debug_Amalog_vc11xwp_wp8devtoolset_x86\</IntDir>
   45.73 +      <OutDir>Debug_Amalog_vc11xwp_wp8devtoolset_x86\</OutDir>
   45.74 +      <TargetName>Amalog</TargetName>
   45.75 +      <TargetExt>.s86</TargetExt>
   45.76 +      <GenerateManifest>false</GenerateManifest>
   45.77 +    </PropertyGroup>
   45.78 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
   45.79 +      <LinkIncremental>false</LinkIncremental>
   45.80 +      <ExecutablePath>$(S3E_DIR)\bin;$(WP80ToolSetPath)bin;$(WindowsSDK_ExecutablePath_x86);$(WindowsMinSDKDir)bin\x86;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH)</ExecutablePath>
   45.81 +      <IntDir>Release_Amalog_vc11xwp_wp8devtoolset_x86\</IntDir>
   45.82 +      <OutDir>Release_Amalog_vc11xwp_wp8devtoolset_x86\</OutDir>
   45.83 +      <TargetName>Amalog</TargetName>
   45.84 +      <TargetExt>.s86</TargetExt>
   45.85 +      <GenerateManifest>false</GenerateManifest>
   45.86 +    </PropertyGroup>
   45.87 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
   45.88 +      <LinkIncremental>true</LinkIncremental>
   45.89 +      <ExecutablePath>$(S3E_DIR)\bin;$(WP80ToolSetPath)bin\x86_arm;$(WP80ToolSetPath)bin;$(WindowsSDK_ExecutablePath_x86);$(WindowsMinSDKDir)bin\arm;$(WindowsMinSDKDir)bin\x86;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath>
   45.90 +      <IntDir>Debug_Amalog_vc11xwp_wp8devtoolset_arm\</IntDir>
   45.91 +      <OutDir>Debug_Amalog_vc11xwp_wp8devtoolset_arm\</OutDir>
   45.92 +      <TargetName>Amalog</TargetName>
   45.93 +      <TargetExt>.s86</TargetExt>
   45.94 +      <GenerateManifest>false</GenerateManifest>
   45.95 +    </PropertyGroup>
   45.96 +    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
   45.97 +      <LinkIncremental>false</LinkIncremental>
   45.98 +      <ExecutablePath>$(S3E_DIR)\bin;$(WP80ToolSetPath)bin\x86_arm;$(WP80ToolSetPath)bin;$(WindowsSDK_ExecutablePath_x86);$(WindowsMinSDKDir)bin\arm;$(WindowsMinSDKDir)bin\x86;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath>
   45.99 +      <IntDir>Release_Amalog_vc11xwp_wp8devtoolset_arm\</IntDir>
  45.100 +      <OutDir>Release_Amalog_vc11xwp_wp8devtoolset_arm\</OutDir>
  45.101 +      <TargetName>Amalog</TargetName>
  45.102 +      <TargetExt>.s86</TargetExt>
  45.103 +      <GenerateManifest>false</GenerateManifest>
  45.104 +    </PropertyGroup>
  45.105 +    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  45.106 +    <ClCompile>
  45.107 +      <WarningLevel>Level3</WarningLevel>
  45.108 +      <Optimization>Disabled</Optimization>
  45.109 +      <IntrinsicFunctions>false</IntrinsicFunctions>
  45.110 +      <FunctionLevelLinking>true</FunctionLevelLinking>
  45.111 +      <PreprocessorDefinitions>_USRDLL%(PreprocessorDefinitions);I3D_ARCH_X86;</PreprocessorDefinitions>
  45.112 +      <PrecompiledHeader>NotUsing</PrecompiledHeader>
  45.113 +      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  45.114 +      <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
  45.115 +      <AdditionalOptions>/S3Eproject /J /FI"c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\temp_defines_debug.h"</AdditionalOptions>
  45.116 +      <TreatWarningAsError>false</TreatWarningAsError>
  45.117 +      <IgnoreStandardIncludePath>true</IgnoreStandardIncludePath>
  45.118 +      <AdditionalIncludeDirectories>c:/marmalade/quick/include;c:/marmalade/modules/third_party/openquick/include;c:/marmalade/modules/third_party/libjpeg/h;c:/marmalade/modules/third_party/zlib/h;c:/marmalade/modules/third_party/libpng/h;c:/marmalade/modules/iwutil/h;c:/marmalade/modules/iwgl/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/header;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/physics_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/script_support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/include;c:/marmalade/modules/third_party/cocos2dx/external;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua;c:/marmalade/quick;c:/marmalade/extensions/s3efacebook/h;c:/marmalade/extensions/s3ewebview/h;c:/marmalade/extensions/s3eiosappstorebilling/h;c:/marmalade/extensions/s3eandroidmarketbilling/h;c:/marmalade/extensions/s3ebbappworldbilling/h;c:/marmalade/modules/iwbilling/source;c:/marmalade/modules/flurry/h;c:/marmalade/s3e/h;c:/marmalade/s3e/h/ext;c:/marmalade/s3e/h/std;c:/marmalade/s3e/h/std/c++;c:/marmalade/s3e/h/ext_legacy;c:/marmalade/s3e/h/legacy;.</AdditionalIncludeDirectories>
  45.119 +      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  45.120 +      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  45.121 +      <CompileAsWinRT>false</CompileAsWinRT>
  45.122 +      <MinimalRebuild>false</MinimalRebuild>
  45.123 +      <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
  45.124 +      <ExceptionHandling>SyncCThrow</ExceptionHandling>
  45.125 +    </ClCompile>
  45.126 +    <Link>
  45.127 +      <SubSystem>Console</SubSystem>
  45.128 +      <GenerateDebugInformation>true</GenerateDebugInformation>
  45.129 +      <AdditionalOptions> /include:_IwMain</AdditionalOptions>
  45.130 +      <AdditionalDependencies>WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies);jpeg_d.lib;z_d.lib;png_d.lib;iwutil_d.lib;iwgl_d.lib;s3e_cpp_d.lib;s3e_d.lib;s3e_api.lib</AdditionalDependencies>
  45.131 +      <AdditionalLibraryDirectories>c:\marmalade\modules\third_party\libjpeg\lib\wp8\x86;c:\marmalade\modules\third_party\zlib\lib\wp8\x86;c:\marmalade\modules\third_party\libpng\lib\wp8\x86;c:\marmalade\modules\iwutil\lib\wp8\x86;c:\marmalade\modules\iwgl\lib\wp8\x86;c:\marmalade\s3e\lib\wp8\x86</AdditionalLibraryDirectories>
  45.132 +      <EnableCOMDATFolding>false</EnableCOMDATFolding>
  45.133 +      <OptimizeReferences>false</OptimizeReferences>
  45.134 +      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
  45.135 +      <EntryPointSymbol>DllEntryPoint</EntryPointSymbol>
  45.136 +      <IgnoreSpecificDefaultLibraries>libcmt</IgnoreSpecificDefaultLibraries>
  45.137 +      <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
  45.138 +      <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
  45.139 +      <ForceFileOutput></ForceFileOutput>      
  45.140 +    </Link>
  45.141 +    <Lib>
  45.142 +      <AdditionalOptions> %(AdditionalOptions) </AdditionalOptions>
  45.143 +    </Lib>
  45.144 +      <PostBuildEvent>
  45.145 +        <Command>echo C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e\tools&quot;&#x0D;&#x0A;C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;echo &quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e&quot;&#x0D;&#x0A;&quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;</Command>
  45.146 +      </PostBuildEvent>
  45.147 +    </ItemDefinitionGroup>
  45.148 +    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  45.149 +    <ClCompile>
  45.150 +      <WarningLevel>Level3</WarningLevel>
  45.151 +      <Optimization>MaxSpeed</Optimization>
  45.152 +      <IntrinsicFunctions>true</IntrinsicFunctions>
  45.153 +      <FunctionLevelLinking>true</FunctionLevelLinking>
  45.154 +      <PreprocessorDefinitions>_USRDLL%(PreprocessorDefinitions);I3D_ARCH_X86;</PreprocessorDefinitions>
  45.155 +      <PrecompiledHeader>NotUsing</PrecompiledHeader>
  45.156 +      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  45.157 +      <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
  45.158 +      <AdditionalOptions>/S3Eproject /J /FI"c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\temp_defines_release.h"</AdditionalOptions>
  45.159 +      <TreatWarningAsError>false</TreatWarningAsError>
  45.160 +      <IgnoreStandardIncludePath>true</IgnoreStandardIncludePath>
  45.161 +      <AdditionalIncludeDirectories>c:/marmalade/quick/include;c:/marmalade/modules/third_party/openquick/include;c:/marmalade/modules/third_party/libjpeg/h;c:/marmalade/modules/third_party/zlib/h;c:/marmalade/modules/third_party/libpng/h;c:/marmalade/modules/iwutil/h;c:/marmalade/modules/iwgl/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/header;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/physics_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/script_support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/include;c:/marmalade/modules/third_party/cocos2dx/external;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua;c:/marmalade/quick;c:/marmalade/extensions/s3efacebook/h;c:/marmalade/extensions/s3ewebview/h;c:/marmalade/extensions/s3eiosappstorebilling/h;c:/marmalade/extensions/s3eandroidmarketbilling/h;c:/marmalade/extensions/s3ebbappworldbilling/h;c:/marmalade/modules/iwbilling/source;c:/marmalade/modules/flurry/h;c:/marmalade/s3e/h;c:/marmalade/s3e/h/ext;c:/marmalade/s3e/h/std;c:/marmalade/s3e/h/std/c++;c:/marmalade/s3e/h/ext_legacy;c:/marmalade/s3e/h/legacy;.</AdditionalIncludeDirectories>
  45.162 +      <DebugInformationFormat>None</DebugInformationFormat>
  45.163 +      <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  45.164 +      <CompileAsWinRT>false</CompileAsWinRT>
  45.165 +      <MinimalRebuild>false</MinimalRebuild>
  45.166 +      <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
  45.167 +      <ExceptionHandling>SyncCThrow</ExceptionHandling>
  45.168 +    </ClCompile>
  45.169 +    <Link>
  45.170 +      <SubSystem>Console</SubSystem>
  45.171 +      <GenerateDebugInformation>false</GenerateDebugInformation>
  45.172 +      <AdditionalOptions> /include:_IwMain</AdditionalOptions>
  45.173 +      <AdditionalDependencies>WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies);jpeg.lib;z.lib;png.lib;iwutil.lib;iwgl.lib;s3e_cpp.lib;s3e.lib;s3e_api.lib</AdditionalDependencies>
  45.174 +      <AdditionalLibraryDirectories>c:\marmalade\modules\third_party\libjpeg\lib\wp8\x86;c:\marmalade\modules\third_party\zlib\lib\wp8\x86;c:\marmalade\modules\third_party\libpng\lib\wp8\x86;c:\marmalade\modules\iwutil\lib\wp8\x86;c:\marmalade\modules\iwgl\lib\wp8\x86;c:\marmalade\s3e\lib\wp8\x86</AdditionalLibraryDirectories>
  45.175 +      <EnableCOMDATFolding>true</EnableCOMDATFolding>
  45.176 +      <OptimizeReferences>true</OptimizeReferences>
  45.177 +      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
  45.178 +      <EntryPointSymbol>DllEntryPoint</EntryPointSymbol>
  45.179 +      <IgnoreSpecificDefaultLibraries>libcmt</IgnoreSpecificDefaultLibraries>
  45.180 +      <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
  45.181 +      <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
  45.182 +      <ForceFileOutput>MultiplyDefinedSymbolOnly</ForceFileOutput>      
  45.183 +    </Link>
  45.184 +    <Lib>
  45.185 +      <AdditionalOptions> %(AdditionalOptions) </AdditionalOptions>
  45.186 +    </Lib>
  45.187 +      <PostBuildEvent>
  45.188 +        <Command>echo C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e\tools&quot;&#x0D;&#x0A;C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;echo &quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e&quot;&#x0D;&#x0A;&quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;</Command>
  45.189 +      </PostBuildEvent>
  45.190 +    </ItemDefinitionGroup>
  45.191 +    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  45.192 +    <ClCompile>
  45.193 +      <WarningLevel>Level3</WarningLevel>
  45.194 +      <Optimization>Disabled</Optimization>
  45.195 +      <IntrinsicFunctions>false</IntrinsicFunctions>
  45.196 +      <FunctionLevelLinking>true</FunctionLevelLinking>
  45.197 +      <PreprocessorDefinitions>_USRDLL%(PreprocessorDefinitions);I3D_ARCH_ARM;</PreprocessorDefinitions>
  45.198 +      <PrecompiledHeader>NotUsing</PrecompiledHeader>
  45.199 +      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  45.200 +      <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
  45.201 +      <AdditionalOptions>/S3Eproject /J /FI"c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\temp_defines_debug.h"</AdditionalOptions>
  45.202 +      <TreatWarningAsError>false</TreatWarningAsError>
  45.203 +      <IgnoreStandardIncludePath>true</IgnoreStandardIncludePath>
  45.204 +      <AdditionalIncludeDirectories>c:/marmalade/quick/include;c:/marmalade/modules/third_party/openquick/include;c:/marmalade/modules/third_party/libjpeg/h;c:/marmalade/modules/third_party/zlib/h;c:/marmalade/modules/third_party/libpng/h;c:/marmalade/modules/iwutil/h;c:/marmalade/modules/iwgl/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/header;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/physics_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/script_support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/include;c:/marmalade/modules/third_party/cocos2dx/external;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua;c:/marmalade/quick;c:/marmalade/extensions/s3efacebook/h;c:/marmalade/extensions/s3ewebview/h;c:/marmalade/extensions/s3eiosappstorebilling/h;c:/marmalade/extensions/s3eandroidmarketbilling/h;c:/marmalade/extensions/s3ebbappworldbilling/h;c:/marmalade/modules/iwbilling/source;c:/marmalade/modules/flurry/h;c:/marmalade/s3e/h;c:/marmalade/s3e/h/ext;c:/marmalade/s3e/h/std;c:/marmalade/s3e/h/std/c++;c:/marmalade/s3e/h/ext_legacy;c:/marmalade/s3e/h/legacy;.</AdditionalIncludeDirectories>
  45.205 +      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  45.206 +      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  45.207 +      <CompileAsWinRT>false</CompileAsWinRT>
  45.208 +      <MinimalRebuild>false</MinimalRebuild>
  45.209 +      <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
  45.210 +      <ExceptionHandling>SyncCThrow</ExceptionHandling>
  45.211 +    </ClCompile>
  45.212 +    <Link>
  45.213 +      <SubSystem>Console</SubSystem>
  45.214 +      <GenerateDebugInformation>true</GenerateDebugInformation>
  45.215 +      <AdditionalOptions> /include:_IwMain</AdditionalOptions>
  45.216 +      <AdditionalDependencies>WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies);jpeg_d.lib;z_d.lib;png_d.lib;iwutil_d.lib;iwgl_d.lib;s3e_cpp_d.lib;s3e_d.lib;s3e_api.lib</AdditionalDependencies>
  45.217 +      <AdditionalLibraryDirectories>c:\marmalade\modules\third_party\libjpeg\lib\wp8\arm;c:\marmalade\modules\third_party\zlib\lib\wp8\arm;c:\marmalade\modules\third_party\libpng\lib\wp8\arm;c:\marmalade\modules\iwutil\lib\wp8\arm;c:\marmalade\modules\iwgl\lib\wp8\arm;c:\marmalade\s3e\lib\wp8\arm</AdditionalLibraryDirectories>
  45.218 +      <EnableCOMDATFolding>false</EnableCOMDATFolding>
  45.219 +      <OptimizeReferences>false</OptimizeReferences>
  45.220 +      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
  45.221 +      <EntryPointSymbol>DllEntryPoint</EntryPointSymbol>
  45.222 +      <IgnoreSpecificDefaultLibraries>libcmt</IgnoreSpecificDefaultLibraries>
  45.223 +      <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
  45.224 +      <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
  45.225 +      <ForceFileOutput></ForceFileOutput>      
  45.226 +    </Link>
  45.227 +    <Lib>
  45.228 +      <AdditionalOptions> %(AdditionalOptions) </AdditionalOptions>
  45.229 +    </Lib>
  45.230 +      <PostBuildEvent>
  45.231 +        <Command>echo C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e\tools&quot;&#x0D;&#x0A;C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;echo &quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e&quot;&#x0D;&#x0A;&quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;</Command>
  45.232 +      </PostBuildEvent>
  45.233 +    </ItemDefinitionGroup>
  45.234 +    <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  45.235 +    <ClCompile>
  45.236 +      <WarningLevel>Level3</WarningLevel>
  45.237 +      <Optimization>MaxSpeed</Optimization>
  45.238 +      <IntrinsicFunctions>true</IntrinsicFunctions>
  45.239 +      <FunctionLevelLinking>true</FunctionLevelLinking>
  45.240 +      <PreprocessorDefinitions>_USRDLL%(PreprocessorDefinitions);I3D_ARCH_ARM;</PreprocessorDefinitions>
  45.241 +      <PrecompiledHeader>NotUsing</PrecompiledHeader>
  45.242 +      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  45.243 +      <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
  45.244 +      <AdditionalOptions>/S3Eproject /J /FI"c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\temp_defines_release.h"</AdditionalOptions>
  45.245 +      <TreatWarningAsError>false</TreatWarningAsError>
  45.246 +      <IgnoreStandardIncludePath>true</IgnoreStandardIncludePath>
  45.247 +      <AdditionalIncludeDirectories>c:/marmalade/quick/include;c:/marmalade/modules/third_party/openquick/include;c:/marmalade/modules/third_party/libjpeg/h;c:/marmalade/modules/third_party/zlib/h;c:/marmalade/modules/third_party/libpng/h;c:/marmalade/modules/iwutil/h;c:/marmalade/modules/iwgl/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/header;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/h;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/physics_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/script_support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/include;c:/marmalade/modules/third_party/cocos2dx/external;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua;c:/marmalade/quick;c:/marmalade/extensions/s3efacebook/h;c:/marmalade/extensions/s3ewebview/h;c:/marmalade/extensions/s3eiosappstorebilling/h;c:/marmalade/extensions/s3eandroidmarketbilling/h;c:/marmalade/extensions/s3ebbappworldbilling/h;c:/marmalade/modules/iwbilling/source;c:/marmalade/modules/flurry/h;c:/marmalade/s3e/h;c:/marmalade/s3e/h/ext;c:/marmalade/s3e/h/std;c:/marmalade/s3e/h/std/c++;c:/marmalade/s3e/h/ext_legacy;c:/marmalade/s3e/h/legacy;.</AdditionalIncludeDirectories>
  45.248 +      <DebugInformationFormat>None</DebugInformationFormat>
  45.249 +      <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  45.250 +      <CompileAsWinRT>false</CompileAsWinRT>
  45.251 +      <MinimalRebuild>false</MinimalRebuild>
  45.252 +      <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
  45.253 +      <ExceptionHandling>SyncCThrow</ExceptionHandling>
  45.254 +    </ClCompile>
  45.255 +    <Link>
  45.256 +      <SubSystem>Console</SubSystem>
  45.257 +      <GenerateDebugInformation>false</GenerateDebugInformation>
  45.258 +      <AdditionalOptions> /include:_IwMain</AdditionalOptions>
  45.259 +      <AdditionalDependencies>WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies);jpeg.lib;z.lib;png.lib;iwutil.lib;iwgl.lib;s3e_cpp.lib;s3e.lib;s3e_api.lib</AdditionalDependencies>
  45.260 +      <AdditionalLibraryDirectories>c:\marmalade\modules\third_party\libjpeg\lib\wp8\arm;c:\marmalade\modules\third_party\zlib\lib\wp8\arm;c:\marmalade\modules\third_party\libpng\lib\wp8\arm;c:\marmalade\modules\iwutil\lib\wp8\arm;c:\marmalade\modules\iwgl\lib\wp8\arm;c:\marmalade\s3e\lib\wp8\arm</AdditionalLibraryDirectories>
  45.261 +      <EnableCOMDATFolding>true</EnableCOMDATFolding>
  45.262 +      <OptimizeReferences>true</OptimizeReferences>
  45.263 +      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
  45.264 +      <EntryPointSymbol>DllEntryPoint</EntryPointSymbol>
  45.265 +      <IgnoreSpecificDefaultLibraries>libcmt</IgnoreSpecificDefaultLibraries>
  45.266 +      <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
  45.267 +      <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
  45.268 +      <ForceFileOutput>MultiplyDefinedSymbolOnly</ForceFileOutput>      
  45.269 +    </Link>
  45.270 +    <Lib>
  45.271 +      <AdditionalOptions> %(AdditionalOptions) </AdditionalOptions>
  45.272 +    </Lib>
  45.273 +      <PostBuildEvent>
  45.274 +        <Command>echo C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e\tools&quot;&#x0D;&#x0A;C:\Marmalade\s3e\python\python.exe .\process_map.py &quot;$(TargetPath)&quot;&#x0D;&#x0A;echo &quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;chdir /d &quot;c:\marmalade\s3e&quot;&#x0D;&#x0A;&quot;c:\marmalade\s3e\bin\s3e_plink&quot; -l &quot;$(TargetPath)&quot; -p WP8&#x0D;&#x0A;</Command>
  45.275 +      </PostBuildEvent>
  45.276 +    </ItemDefinitionGroup>
  45.277 +  <ItemGroup>
  45.278 +    <None Include="c:/marmalade/modules/flurry/interface/Flurry.defines.txt" />
  45.279 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QAds.lua" />
  45.280 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QAnalytics.lua" />
  45.281 +    <None Include="c:/marmalade/quick/data/quicklua/QAnimation.lua" />
  45.282 +    <None Include="c:/marmalade/quick/data/quicklua/QAtlas.lua" />
  45.283 +    <None Include="c:/marmalade/quick/data/quicklua/QAudio.lua" />
  45.284 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QBilling.lua" />
  45.285 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QBrowser.lua" />
  45.286 +    <None Include="c:/marmalade/quick/data/quicklua/QCircle.lua" />
  45.287 +    <None Include="c:/marmalade/quick/data/quicklua/QColor.lua" />
  45.288 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QCompass.lua" />
  45.289 +    <None Include="c:/marmalade/quick/data/quicklua/QConfig.lua" />
  45.290 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QCrypto.lua" />
  45.291 +    <None Include="c:/marmalade/quick/data/quicklua/QDebug.lua" />
  45.292 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QDevice.lua" />
  45.293 +    <None Include="c:/marmalade/quick/data/quicklua/QDirector.lua" />
  45.294 +    <None Include="c:/marmalade/quick/data/quicklua/QEvent.lua" />
  45.295 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QFacebook.lua" />
  45.296 +    <None Include="c:/marmalade/quick/data/quicklua/QFont.lua" />
  45.297 +    <None Include="c:/marmalade/quick/data/quicklua/QJoint.lua" />
  45.298 +    <None Include="c:/marmalade/quick/data/quicklua/QLabel.lua" />
  45.299 +    <None Include="c:/marmalade/quick/data/quicklua/QLines.lua" />
  45.300 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QLocation.lua" />
  45.301 +    <None Include="c:/marmalade/quick/data/quicklua/QLsqlite3.lua" />
  45.302 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QLuasocket.lua" />
  45.303 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QNUI.lua" />
  45.304 +    <None Include="c:/marmalade/quick/data/quicklua/QNode.lua" />
  45.305 +    <None Include="c:/marmalade/quick/data/quicklua/QParticles.lua" />
  45.306 +    <None Include="c:/marmalade/quick/data/quicklua/QPhysics.lua" />
  45.307 +    <None Include="c:/marmalade/quick/data/quicklua/QRectangle.lua" />
  45.308 +    <None Include="c:/marmalade/quick/data/quicklua/QScene.lua" />
  45.309 +    <None Include="c:/marmalade/quick/data/quicklua/QSprite.lua" />
  45.310 +    <None Include="c:/marmalade/quick/data/quicklua/QSystem.lua" />
  45.311 +    <None Include="c:/marmalade/quick/data/quicklua/QTimer.lua" />
  45.312 +    <None Include="c:/marmalade/quick/data/quicklua/QTween.lua" />
  45.313 +    <None Include="c:/marmalade/quick/data/quicklua/QVector.lua" />
  45.314 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QVideo.lua" />
  45.315 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/QWebView.lua" />
  45.316 +    <None Include="c:/marmalade/quick/data/quicklua/Qjson.lua" />
  45.317 +    <None Include="c:/marmalade/s3e/h/std/c++/algorithm" />
  45.318 +    <None Include="c:/Users/Michel/Documents/Quick/Projects/Amalog/resources/app.icf" />
  45.319 +    <None Include="c:/marmalade/modules/iwbilling/docs/billing.config.txt" />
  45.320 +    <None Include="c:/marmalade/s3e/h/std/c++/bitset" />
  45.321 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/proj.marmalade/box2d.mkf" />
  45.322 +    <None Include="c:/marmalade/s3e/h/std/c++/cassert" />
  45.323 +    <None Include="c:/marmalade/s3e/h/std/c++/cctype" />
  45.324 +    <None Include="c:/marmalade/s3e/h/std/c++/cerrno" />
  45.325 +    <None Include="c:/marmalade/s3e/h/std/c++/cfloat" />
  45.326 +    <None Include="c:/marmalade/quick/data/quicklua/class.lua" />
  45.327 +    <None Include="c:/marmalade/s3e/h/std/c++/climits" />
  45.328 +    <None Include="c:/marmalade/s3e/h/std/c++/clocale" />
  45.329 +    <None Include="c:/marmalade/s3e/h/std/c++/cmath" />
  45.330 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx.mkf" />
  45.331 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx_public.defines.txt" />
  45.332 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/proj.marmalade/cocosdenshion.mkf" />
  45.333 +    <None Include="c:/Users/Michel/Documents/Quick/Projects/Amalog/resources/common.icf" />
  45.334 +    <None Include="c:/marmalade/s3e/h/std/c++/complex" />
  45.335 +    <None Include="c:/marmalade/quick/data/quicklua/config.lua" />
  45.336 +    <None Include="c:/marmalade/s3e/h/std/c++/csetjmp" />
  45.337 +    <None Include="c:/marmalade/s3e/h/std/c++/csignal" />
  45.338 +    <None Include="c:/marmalade/s3e/h/std/c++/cstdarg" />
  45.339 +    <None Include="c:/marmalade/s3e/h/std/c++/cstddef" />
  45.340 +    <None Include="c:/marmalade/s3e/h/std/c++/cstdio" />
  45.341 +    <None Include="c:/marmalade/s3e/h/std/c++/cstdlib" />
  45.342 +    <None Include="c:/marmalade/s3e/h/std/c++/cstring" />
  45.343 +    <None Include="c:/marmalade/s3e/h/std/c++/ctime" />
  45.344 +    <None Include="c:/marmalade/s3e/h/std/c++/cwchar" />
  45.345 +    <None Include="c:/marmalade/s3e/h/std/c++/cwctype" />
  45.346 +    <None Include="c:/marmalade/quick/data/quicklua/dbg.lua" />
  45.347 +    <None Include="c:/marmalade/s3e/h/std/c++/deque" />
  45.348 +    <None Include="c:/marmalade/s3e/h/std/c++/exception" />
  45.349 +    <None Include="c:/marmalade/modules/flurry/flurry.mkf" />
  45.350 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype.mkf" />
  45.351 +    <None Include="c:/marmalade/s3e/h/std/c++/fstream" />
  45.352 +    <None Include="c:/marmalade/s3e/h/std/c++/functional" />
  45.353 +    <None Include="c:/marmalade/s3e/h/std/c++/hash_map" />
  45.354 +    <None Include="c:/marmalade/s3e/h/std/c++/hash_set" />
  45.355 +    <None Include="c:/marmalade/s3e/h/std/c++/iomanip" />
  45.356 +    <None Include="c:/marmalade/s3e/h/std/c++/ios" />
  45.357 +    <None Include="c:/marmalade/s3e/h/std/c++/iosfwd" />
  45.358 +    <None Include="c:/marmalade/s3e/h/std/c++/iostream" />
  45.359 +    <None Include="c:/marmalade/s3e/h/std/c++/istream" />
  45.360 +    <None Include="c:/marmalade/s3e/h/std/c++/iterator" />
  45.361 +    <None Include="c:/marmalade/modules/iwbilling/iwbilling.mkf" />
  45.362 +    <None Include="c:/marmalade/modules/iwgl/docs/iwgl.config.txt" />
  45.363 +    <None Include="c:/marmalade/modules/iwgl/iwgl.mkf" />
  45.364 +    <None Include="c:/marmalade/modules/iwutil/docs/iwutil.config.txt" />
  45.365 +    <None Include="c:/marmalade/modules/iwutil/iwutil.mkf" />
  45.366 +    <None Include="c:/marmalade/modules/third_party/libjpeg/libjpeg.mkf" />
  45.367 +    <None Include="c:/marmalade/modules/third_party/libpng/libpng.mkf" />
  45.368 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/libtiff.mkf" />
  45.369 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2.mkf" />
  45.370 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade/libxml2_public.defines.txt" />
  45.371 +    <None Include="c:/marmalade/s3e/h/std/c++/limits" />
  45.372 +    <None Include="c:/marmalade/s3e/h/std/c++/list" />
  45.373 +    <None Include="c:/marmalade/s3e/h/std/c++/locale" />
  45.374 +    <None Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/proj.marmalade/lua.mkf" />
  45.375 +    <None Include="c:/Users/Michel/Documents/Quick/Projects/Amalog/resources/main.lua" />
  45.376 +    <None Include="c:/marmalade/s3e/h/std/c++/map" />
  45.377 +    <None Include="c:/marmalade/s3e/h/std/c++/memory" />
  45.378 +    <None Include="c:/marmalade/s3e/h/std/c++/new" />
  45.379 +    <None Include="c:/marmalade/s3e/h/std/c++/numeric" />
  45.380 +    <None Include="c:/marmalade/quick/data/quicklua/openquick.lua" />
  45.381 +    <None Include="c:/marmalade/modules/third_party/openquick/proj.marmalade/openquick.mkf" />
  45.382 +    <None Include="c:/marmalade/modules/third_party/openquick/openquick_tolua.pkg" />
  45.383 +    <None Include="c:/marmalade/s3e/h/std/c++/ostream" />
  45.384 +    <None Include="c:/marmalade/s3e/h/std/c++/pthread_alloc" />
  45.385 +    <None Include="c:/marmalade/s3e/h/std/c++/queue" />
  45.386 +    <None Include="c:/marmalade/quick/docs/quick.config.txt" />
  45.387 +    <None Include="c:/marmalade/quick/data/quicklua/marmalade/quick.lua" />
  45.388 +    <None Include="c:/marmalade/quick/quick.mkf" />
  45.389 +    <None Include="c:/marmalade/quick/quick_tolua.pkg" />
  45.390 +    <None Include="c:/marmalade/quick/quickuser.mkf" />
  45.391 +    <None Include="c:/marmalade/quick/quickuser_tolua.pkg" />
  45.392 +    <None Include="c:/marmalade/s3e/h/std/c++/rope" />
  45.393 +    <None Include="c:/marmalade/s3e/s3e.config.txt" />
  45.394 +    <None Include="c:/marmalade/s3e/s3e.icf" />
  45.395 +    <None Include="c:/marmalade/s3e/s3e.mkf" />
  45.396 +    <None Include="c:/marmalade/extensions/s3eandroidmarketbilling/interface/s3eAndroidMarketBilling.defines.txt" />
  45.397 +    <None Include="c:/marmalade/extensions/s3ebbappworldbilling/interface/s3eBBAppWorldBilling.defines.txt" />
  45.398 +    <None Include="c:/marmalade/extensions/s3efacebook/interface/s3eFacebook.defines.txt" />
  45.399 +    <None Include="c:/marmalade/extensions/s3eiosappstorebilling/interface/s3eIOSAppStoreBilling.defines.txt" />
  45.400 +    <None Include="c:/marmalade/extensions/s3ewebview/interface/s3eWebView.defines.txt" />
  45.401 +    <None Include="c:/marmalade/extensions/s3eandroidmarketbilling/s3eandroidmarketbilling.mkf" />
  45.402 +    <None Include="c:/marmalade/extensions/s3ebbappworldbilling/s3ebbappworldbilling.mkf" />
  45.403 +    <None Include="c:/marmalade/extensions/s3efacebook/s3efacebook.mkf" />
  45.404 +    <None Include="c:/marmalade/extensions/s3eiosappstorebilling/s3eiosappstorebilling.mkf" />
  45.405 +    <None Include="c:/marmalade/extensions/s3ewebview/s3ewebview.mkf" />
  45.406 +    <None Include="c:/marmalade/s3e/h/std/c++/set" />
  45.407 +    <None Include="c:/marmalade/s3e/h/std/c++/slist" />
  45.408 +    <None Include="c:/marmalade/s3e/h/std/c++/sstream" />
  45.409 +    <None Include="c:/marmalade/s3e/h/std/c++/stack" />
  45.410 +    <None Include="c:/marmalade/s3e/h/std/c++/stdexcept" />
  45.411 +    <None Include="c:/marmalade/s3e/h/std/c++/stdio_streambuf" />
  45.412 +    <None Include="c:/marmalade/s3e/h/std/c++/streambuf" />
  45.413 +    <None Include="c:/marmalade/s3e/h/std/c++/string" />
  45.414 +    <None Include="c:/marmalade/s3e/h/std/c++/strstream" />
  45.415 +    <None Include="c:/marmalade/s3e/h/std/c++/typeinfo" />
  45.416 +    <None Include="c:/marmalade/s3e/h/std/c++/utility" />
  45.417 +    <None Include="c:/marmalade/s3e/h/std/c++/valarray" />
  45.418 +    <None Include="c:/marmalade/s3e/h/std/c++/vector" />
  45.419 +    <None Include="c:/marmalade/modules/third_party/zlib/zlib.mkf" />
  45.420 +    <CustomBuild Include="..\Amalog.mkb">
  45.421 +      <FileType>Document</FileType>
  45.422 +      <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"C:\Marmalade\s3e\python\python.exe" "C:\Marmalade\s3e\makefile_builder\mkb.py" "--buildenv=VC11XWP" "--buildenv-toolset=WP8DEV" "c:/Users/Michel/Documents/Quick/Projects/Amalog/Amalog.mkb" "--default-buildenv=vc11x" --msvc-project</Command>
  45.423 +      <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Amalog_vc11xwp_wp8devtoolset.stamp</Outputs>
  45.424 +      <AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/libtiff.mkf;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/proj.marmalade/lua.mkf;c:/marmalade/extensions/s3eiosappstorebilling/s3eiosappstorebilling.mkf;c:/marmalade/quick/quickuser.mkf;c:/marmalade/modules/iwutil/iwutil.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype.mkf;c:/marmalade/modules/third_party/zlib/zlib.mkf;c:/marmalade/modules/third_party/libpng/libpng.mkf;c:/marmalade/s3e/s3e.mkf;c:/marmalade/extensions/s3eandroidmarketbilling/s3eandroidmarketbilling.mkf;c:/marmalade/extensions/s3ewebview/s3ewebview.mkf;c:/marmalade/modules/iwgl/iwgl.mkf;c:/marmalade/quick/quick.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2.mkf;c:/marmalade/modules/third_party/openquick/proj.marmalade/openquick.mkf;c:/marmalade/modules/third_party/cocos2dx/external/box2d/proj.marmalade/box2d.mkf;c:/marmalade/extensions/s3ebbappworldbilling/s3ebbappworldbilling.mkf;c:/marmalade/modules/flurry/flurry.mkf;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/proj.marmalade/cocosdenshion.mkf;c:/marmalade/modules/third_party/libjpeg/libjpeg.mkf;c:/marmalade/modules/iwbilling/iwbilling.mkf;c:/marmalade/extensions/s3efacebook/s3efacebook.mkf</AdditionalInputs>
  45.425 +      <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"C:\Marmalade\s3e\python\python.exe" "C:\Marmalade\s3e\makefile_builder\mkb.py" "--buildenv=VC11XWP" "--buildenv-toolset=WP8DEV" "c:/Users/Michel/Documents/Quick/Projects/Amalog/Amalog.mkb" "--default-buildenv=vc11x" --msvc-project</Command>
  45.426 +      <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Amalog_vc11xwp_wp8devtoolset.stamp</Outputs>
  45.427 +      <AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/libtiff.mkf;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/proj.marmalade/lua.mkf;c:/marmalade/extensions/s3eiosappstorebilling/s3eiosappstorebilling.mkf;c:/marmalade/quick/quickuser.mkf;c:/marmalade/modules/iwutil/iwutil.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype.mkf;c:/marmalade/modules/third_party/zlib/zlib.mkf;c:/marmalade/modules/third_party/libpng/libpng.mkf;c:/marmalade/s3e/s3e.mkf;c:/marmalade/extensions/s3eandroidmarketbilling/s3eandroidmarketbilling.mkf;c:/marmalade/extensions/s3ewebview/s3ewebview.mkf;c:/marmalade/modules/iwgl/iwgl.mkf;c:/marmalade/quick/quick.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2.mkf;c:/marmalade/modules/third_party/openquick/proj.marmalade/openquick.mkf;c:/marmalade/modules/third_party/cocos2dx/external/box2d/proj.marmalade/box2d.mkf;c:/marmalade/extensions/s3ebbappworldbilling/s3ebbappworldbilling.mkf;c:/marmalade/modules/flurry/flurry.mkf;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/proj.marmalade/cocosdenshion.mkf;c:/marmalade/modules/third_party/libjpeg/libjpeg.mkf;c:/marmalade/modules/iwbilling/iwbilling.mkf;c:/marmalade/extensions/s3efacebook/s3efacebook.mkf</AdditionalInputs>
  45.428 +      <Command Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">"C:\Marmalade\s3e\python\python.exe" "C:\Marmalade\s3e\makefile_builder\mkb.py" "--buildenv=VC11XWP" "--buildenv-toolset=WP8DEV" "c:/Users/Michel/Documents/Quick/Projects/Amalog/Amalog.mkb" "--default-buildenv=vc11x" --msvc-project</Command>
  45.429 +      <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Amalog_vc11xwp_wp8devtoolset.stamp</Outputs>
  45.430 +      <AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/libtiff.mkf;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/proj.marmalade/lua.mkf;c:/marmalade/extensions/s3eiosappstorebilling/s3eiosappstorebilling.mkf;c:/marmalade/quick/quickuser.mkf;c:/marmalade/modules/iwutil/iwutil.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype.mkf;c:/marmalade/modules/third_party/zlib/zlib.mkf;c:/marmalade/modules/third_party/libpng/libpng.mkf;c:/marmalade/s3e/s3e.mkf;c:/marmalade/extensions/s3eandroidmarketbilling/s3eandroidmarketbilling.mkf;c:/marmalade/extensions/s3ewebview/s3ewebview.mkf;c:/marmalade/modules/iwgl/iwgl.mkf;c:/marmalade/quick/quick.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2.mkf;c:/marmalade/modules/third_party/openquick/proj.marmalade/openquick.mkf;c:/marmalade/modules/third_party/cocos2dx/external/box2d/proj.marmalade/box2d.mkf;c:/marmalade/extensions/s3ebbappworldbilling/s3ebbappworldbilling.mkf;c:/marmalade/modules/flurry/flurry.mkf;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/proj.marmalade/cocosdenshion.mkf;c:/marmalade/modules/third_party/libjpeg/libjpeg.mkf;c:/marmalade/modules/iwbilling/iwbilling.mkf;c:/marmalade/extensions/s3efacebook/s3efacebook.mkf</AdditionalInputs>
  45.431 +      <Command Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">"C:\Marmalade\s3e\python\python.exe" "C:\Marmalade\s3e\makefile_builder\mkb.py" "--buildenv=VC11XWP" "--buildenv-toolset=WP8DEV" "c:/Users/Michel/Documents/Quick/Projects/Amalog/Amalog.mkb" "--default-buildenv=vc11x" --msvc-project</Command>
  45.432 +      <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Amalog_vc11xwp_wp8devtoolset.stamp</Outputs>
  45.433 +      <AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">c:/marmalade/modules/third_party/cocos2dx/cocos2dx/proj.marmalade/cocos2dx.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/libtiff.mkf;c:/marmalade/modules/third_party/cocos2dx/scripting/lua/proj.marmalade/lua.mkf;c:/marmalade/extensions/s3eiosappstorebilling/s3eiosappstorebilling.mkf;c:/marmalade/quick/quickuser.mkf;c:/marmalade/modules/iwutil/iwutil.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype.mkf;c:/marmalade/modules/third_party/zlib/zlib.mkf;c:/marmalade/modules/third_party/libpng/libpng.mkf;c:/marmalade/s3e/s3e.mkf;c:/marmalade/extensions/s3eandroidmarketbilling/s3eandroidmarketbilling.mkf;c:/marmalade/extensions/s3ewebview/s3ewebview.mkf;c:/marmalade/modules/iwgl/iwgl.mkf;c:/marmalade/quick/quick.mkf;c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2.mkf;c:/marmalade/modules/third_party/openquick/proj.marmalade/openquick.mkf;c:/marmalade/modules/third_party/cocos2dx/external/box2d/proj.marmalade/box2d.mkf;c:/marmalade/extensions/s3ebbappworldbilling/s3ebbappworldbilling.mkf;c:/marmalade/modules/flurry/flurry.mkf;c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/proj.marmalade/cocosdenshion.mkf;c:/marmalade/modules/third_party/libjpeg/libjpeg.mkf;c:/marmalade/modules/iwbilling/iwbilling.mkf;c:/marmalade/extensions/s3efacebook/s3efacebook.mkf</AdditionalInputs>
  45.434 +    </CustomBuild>
  45.435 +  </ItemGroup>
  45.436 +  <ItemGroup>
  45.437 +    <ClInclude Include="c:/marmalade/s3e/h/AirplayVersion.h" />
  45.438 +    <ClInclude Include="c:/marmalade/quick/include/AppDelegate.h" />
  45.439 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/Box2D/Box2D.h" />
  45.440 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCAccelerometer.h" />
  45.441 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCAccelerometerDelegate.h" />
  45.442 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCAction.h" />
  45.443 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionCamera.h" />
  45.444 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionCatmullRom.h" />
  45.445 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionEase.h" />
  45.446 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionGrid.h" />
  45.447 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionGrid3D.h" />
  45.448 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionInstant.h" />
  45.449 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionInterval.h" />
  45.450 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionManager.h" />
  45.451 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionPageTurn3D.h" />
  45.452 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionProgressTimer.h" />
  45.453 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionTiledGrid.h" />
  45.454 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/actions/CCActionTween.h" />
  45.455 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCAffineTransform.h" />
  45.456 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCAnimation.h" />
  45.457 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCAnimationCache.h" />
  45.458 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCApplication.h" />
  45.459 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCApplicationProtocol.h" />
  45.460 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCArray.h" />
  45.461 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes/CCAtlasNode.h" />
  45.462 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCAutoreleasePool.h" />
  45.463 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/CCCamera.h" />
  45.464 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes/CCClippingNode.h" />
  45.465 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCCommon.h" />
  45.466 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/CCConfiguration.h" />
  45.467 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCDictionary.h" />
  45.468 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/CCDirector.h" />
  45.469 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes/CCDrawNode.h" />
  45.470 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/draw_nodes/CCDrawingPrimitives.h" />
  45.471 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCEGLView.h" />
  45.472 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCEGLViewProtocol.h" />
  45.473 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/CCEventType.h" />
  45.474 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCFileUtils.h" />
  45.475 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCFileUtilsCommon_cpp.h" />
  45.476 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCGL.h" />
  45.477 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/CCGLProgram.h" />
  45.478 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCGeometry.h" />
  45.479 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects/CCGrabber.h" />
  45.480 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/effects/CCGrid.h" />
  45.481 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node/CCIMEDelegate.h" />
  45.482 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node/CCIMEDispatcher.h" />
  45.483 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCImage.h" />
  45.484 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCImageCommon_cpp.h" />
  45.485 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCInteger.h" />
  45.486 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher/CCKeypadDelegate.h" />
  45.487 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/keypad_dispatcher/CCKeypadDispatcher.h" />
  45.488 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes/CCLabelAtlas.h" />
  45.489 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes/CCLabelBMFont.h" />
  45.490 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/label_nodes/CCLabelTTF.h" />
  45.491 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes/CCLayer.h" />
  45.492 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes/CCMenu.h" />
  45.493 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/menu_nodes/CCMenuItem.h" />
  45.494 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes/CCMotionStreak.h" />
  45.495 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCNS.h" />
  45.496 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/base_nodes/CCNode.h" />
  45.497 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/CCNotificationCenter.h" />
  45.498 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCObject.h" />
  45.499 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCParallaxNode.h" />
  45.500 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes/CCParticleBatchNode.h" />
  45.501 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes/CCParticleExamples.h" />
  45.502 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes/CCParticleSystem.h" />
  45.503 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes/CCParticleSystemQuad.h" />
  45.504 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCPlatformConfig.h" />
  45.505 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCPlatformDefine.h" />
  45.506 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCPlatformMacros.h" />
  45.507 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/CCPointExtension.h" />
  45.508 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/CCProfiling.h" />
  45.509 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes/CCProgressTimer.h" />
  45.510 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/CCProtocols.h" />
  45.511 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/misc_nodes/CCRenderTexture.h" />
  45.512 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCSAXParser.h" />
  45.513 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes/CCScene.h" />
  45.514 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/CCScheduler.h" />
  45.515 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/script_support/CCScriptSupport.h" />
  45.516 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCSet.h" />
  45.517 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/CCShaderCache.h" />
  45.518 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCSprite.h" />
  45.519 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCSpriteBatchNode.h" />
  45.520 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCSpriteFrame.h" />
  45.521 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/sprite_nodes/CCSpriteFrameCache.h" />
  45.522 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/marmalade/CCStdC.h" />
  45.523 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCString.h" />
  45.524 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCTMXLayer.h" />
  45.525 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCTMXObjectGroup.h" />
  45.526 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCTMXTiledMap.h" />
  45.527 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCTMXXMLParser.h" />
  45.528 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/text_input_node/CCTextFieldTTF.h" />
  45.529 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures/CCTexture2D.h" />
  45.530 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures/CCTextureAtlas.h" />
  45.531 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures/CCTextureCache.h" />
  45.532 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/textures/CCTexturePVR.h" />
  45.533 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/CCThread.h" />
  45.534 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/tileMap_parallax_nodes/CCTileMapAtlas.h" />
  45.535 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher/CCTouch.h" />
  45.536 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher/CCTouchDelegateProtocol.h" />
  45.537 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher/CCTouchDispatcher.h" />
  45.538 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/touch_dispatcher/CCTouchHandler.h" />
  45.539 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes/CCTransition.h" />
  45.540 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes/CCTransitionPageTurn.h" />
  45.541 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/layers_scenes_transitions_nodes/CCTransitionProgress.h" />
  45.542 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/CCUserDefault.h" />
  45.543 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/CCVertex.h" />
  45.544 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/cocoa/CCZone.h" />
  45.545 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/DOCBparser.h" />
  45.546 +    <ClInclude Include="c:/marmalade/modules/flurry/h/Flurry.h" />
  45.547 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/HTMLparser.h" />
  45.548 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/HTMLtree.h" />
  45.549 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwAllocator.h" />
  45.550 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwArray.h" />
  45.551 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwAutoFile.h" />
  45.552 +    <ClInclude Include="c:/marmalade/modules/iwbilling/source/IwBilling.h" />
  45.553 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwBuffer.h" />
  45.554 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwChar.h" />
  45.555 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwClassFactory.h" />
  45.556 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwCopyingPtr.h" />
  45.557 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwCore.h" />
  45.558 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwDebug.h" />
  45.559 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwDivTable.h" />
  45.560 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwDivide.h" />
  45.561 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwEvent.h" />
  45.562 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwFibre.h" />
  45.563 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwFile.h" />
  45.564 +    <ClInclude Include="c:/marmalade/modules/iwgl/h/IwGL.h" />
  45.565 +    <ClInclude Include="c:/marmalade/modules/iwgl/h/IwGLExt.h" />
  45.566 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwHashString.h" />
  45.567 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwImage.h" />
  45.568 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwImageHelper.h" />
  45.569 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwKeymap.h" />
  45.570 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwList.h" />
  45.571 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwManaged.h" />
  45.572 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwManagedList.h" />
  45.573 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMath.h" />
  45.574 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMemBucket.h" />
  45.575 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMemBucketHelpers.h" />
  45.576 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMemManagerDL.h" />
  45.577 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMemory.h" />
  45.578 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwMenu.h" />
  45.579 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwOptimiseARM.h" />
  45.580 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwOptimiseSize.h" />
  45.581 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwOptimiseSpeed.h" />
  45.582 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwOptimiseThumb.h" />
  45.583 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwPath.h" />
  45.584 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwProfileMenu.h" />
  45.585 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwRandom.h" />
  45.586 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwResource.h" />
  45.587 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwRuntime.h" />
  45.588 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwSerialise.h" />
  45.589 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwSingleton.h" />
  45.590 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwString.h" />
  45.591 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwTextParseable.h" />
  45.592 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwTextParser.h" />
  45.593 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwTextParserITX.h" />
  45.594 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwTypes.h" />
  45.595 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwUTF8.h" />
  45.596 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwUncopyable.h" />
  45.597 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwUtil.h" />
  45.598 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwUtilInitTerm.h" />
  45.599 +    <ClInclude Include="c:/marmalade/modules/iwutil/h/IwVariableBitField.h" />
  45.600 +    <ClInclude Include="c:/marmalade/s3e/h/MarmaladeVersion.h" />
  45.601 +    <ClInclude Include="c:/marmalade/quick/include/QAnalytics.h" />
  45.602 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QAnimate.h" />
  45.603 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QAnimation.h" />
  45.604 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QAtlas.h" />
  45.605 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QAudio.h" />
  45.606 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QBase.h" />
  45.607 +    <ClInclude Include="c:/marmalade/quick/include/QBilling.h" />
  45.608 +    <ClInclude Include="c:/marmalade/quick/include/QBrowser.h" />
  45.609 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QCircle.h" />
  45.610 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QColor.h" />
  45.611 +    <ClInclude Include="c:/marmalade/quick/include/QCompass.h" />
  45.612 +    <ClInclude Include="c:/marmalade/quick/include/QCrypto.h" />
  45.613 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QDefines.h" />
  45.614 +    <ClInclude Include="c:/marmalade/quick/include/QDevice.h" />
  45.615 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QDirector.h" />
  45.616 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QEvent.h" />
  45.617 +    <ClInclude Include="c:/marmalade/quick/include/QEventX.h" />
  45.618 +    <ClInclude Include="c:/marmalade/quick/include/QFacebook.h" />
  45.619 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QFont.h" />
  45.620 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QLabel.h" />
  45.621 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QLines.h" />
  45.622 +    <ClInclude Include="c:/marmalade/quick/include/QLocation.h" />
  45.623 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QLsqlite3.h" />
  45.624 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QLuaHelpers.h" />
  45.625 +    <ClInclude Include="c:/marmalade/quick/include/QLuasocket.h" />
  45.626 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QMain.h" />
  45.627 +    <ClInclude Include="c:/marmalade/quick/include/QNUI.h" />
  45.628 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QNode.h" />
  45.629 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QParticles.h" />
  45.630 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysics.h" />
  45.631 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsContact.h" />
  45.632 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsContactListener.h" />
  45.633 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJoint.h" />
  45.634 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointDistance.h" />
  45.635 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointFriction.h" />
  45.636 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointGear.h" />
  45.637 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointPrismatic.h" />
  45.638 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointPulley.h" />
  45.639 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointRevolute.h" />
  45.640 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointRope.h" />
  45.641 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointTouch.h" />
  45.642 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointWeld.h" />
  45.643 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsJointWheel.h" />
  45.644 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QPhysicsNodeProps.h" />
  45.645 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QRect.h" />
  45.646 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QRectangle.h" />
  45.647 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QScene.h" />
  45.648 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QSceneTextureBatch.h" />
  45.649 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QSprite.h" />
  45.650 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QSystem.h" />
  45.651 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QTiledMap.h" />
  45.652 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QTimer.h" />
  45.653 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QTween.h" />
  45.654 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QVec2.h" />
  45.655 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/include/QVector.h" />
  45.656 +    <ClInclude Include="c:/marmalade/quick/include/QVideo.h" />
  45.657 +    <ClInclude Include="c:/marmalade/quick/include/QWebView.h" />
  45.658 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/SAX.h" />
  45.659 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/SAX2.h" />
  45.660 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocosdenshion/include/SimpleAudioEngine.h" />
  45.661 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/image_support/TGAlib.h" />
  45.662 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/TransformUtils.h" />
  45.663 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/zip_support/ZipUtils.h" />
  45.664 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/aabb.h" />
  45.665 +    <ClInclude Include="c:/marmalade/s3e/h/std/alloca.h" />
  45.666 +    <ClInclude Include="c:/marmalade/s3e/h/std/assert.h" />
  45.667 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/auxiliar.h" />
  45.668 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2BlockAllocator.h" />
  45.669 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2Body.h" />
  45.670 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/b2BroadPhase.h" />
  45.671 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2ChainAndCircleContact.h" />
  45.672 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2ChainAndPolygonContact.h" />
  45.673 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/Shapes/b2ChainShape.h" />
  45.674 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2CircleContact.h" />
  45.675 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/Shapes/b2CircleShape.h" />
  45.676 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/b2Collision.h" />
  45.677 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2Contact.h" />
  45.678 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2ContactManager.h" />
  45.679 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2ContactSolver.h" />
  45.680 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/b2Distance.h" />
  45.681 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2DistanceJoint.h" />
  45.682 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2Draw.h" />
  45.683 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/b2DynamicTree.h" />
  45.684 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2EdgeAndCircleContact.h" />
  45.685 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2EdgeAndPolygonContact.h" />
  45.686 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/Shapes/b2EdgeShape.h" />
  45.687 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2Fixture.h" />
  45.688 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2FrictionJoint.h" />
  45.689 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2GearJoint.h" />
  45.690 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2GrowableStack.h" />
  45.691 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2Island.h" />
  45.692 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2Joint.h" />
  45.693 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2Math.h" />
  45.694 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2MouseJoint.h" />
  45.695 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2PolygonAndCircleContact.h" />
  45.696 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Contacts/b2PolygonContact.h" />
  45.697 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/Shapes/b2PolygonShape.h" />
  45.698 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2PrismaticJoint.h" />
  45.699 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2PulleyJoint.h" />
  45.700 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2RevoluteJoint.h" />
  45.701 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Rope/b2Rope.h" />
  45.702 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2RopeJoint.h" />
  45.703 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2Settings.h" />
  45.704 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/Shapes/b2Shape.h" />
  45.705 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2StackAllocator.h" />
  45.706 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Collision/b2TimeOfImpact.h" />
  45.707 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2TimeStep.h" />
  45.708 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Common/b2Timer.h" />
  45.709 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2WeldJoint.h" />
  45.710 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/Joints/b2WheelJoint.h" />
  45.711 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2World.h" />
  45.712 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/external/box2d/Dynamics/b2WorldCallbacks.h" />
  45.713 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/base64.h" />
  45.714 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/buffer.h" />
  45.715 +    <ClInclude Include="c:/marmalade/s3e/h/std/byteswap.h" />
  45.716 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/c14n.h" />
  45.717 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/catalog.h" />
  45.718 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/data_support/ccCArray.h" />
  45.719 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/ccConfig.h" />
  45.720 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccGLStateCache.h" />
  45.721 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/ccMacros.h" />
  45.722 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShaderEx_SwitchMask_frag.h" />
  45.723 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionColorLengthTexture_frag.h" />
  45.724 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionColorLengthTexture_vert.h" />
  45.725 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionColor_frag.h" />
  45.726 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionColor_vert.h" />
  45.727 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTextureA8Color_frag.h" />
  45.728 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTextureA8Color_vert.h" />
  45.729 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTextureColorAlphaTest_frag.h" />
  45.730 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTextureColor_frag.h" />
  45.731 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTextureColor_vert.h" />
  45.732 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTexture_frag.h" />
  45.733 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTexture_uColor_frag.h" />
  45.734 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTexture_uColor_vert.h" />
  45.735 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_PositionTexture_vert.h" />
  45.736 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_Position_uColor_frag.h" />
  45.737 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShader_Position_uColor_vert.h" />
  45.738 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/shaders/ccShaders.h" />
  45.739 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/ccTypeInfo.h" />
  45.740 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/ccTypes.h" />
  45.741 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/ccUtils.h" />
  45.742 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/cderror.h" />
  45.743 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/cdjpeg.h" />
  45.744 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/chvalid.h" />
  45.745 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/include/cocos2d.h" />
  45.746 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade/config.h" />
  45.747 +    <ClInclude Include="c:/marmalade/s3e/h/std/ctype.h" />
  45.748 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/debugXML.h" />
  45.749 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/dict.h" />
  45.750 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/dir.h" />
  45.751 +    <ClInclude Include="c:/marmalade/s3e/h/std/dirent.h" />
  45.752 +    <ClInclude Include="c:/marmalade/s3e/h/std/dlfcn.h" />
  45.753 +    <ClInclude Include="c:/marmalade/s3e/h/EGL/egl.h" />
  45.754 +    <ClInclude Include="c:/marmalade/s3e/h/GLES/egl.h" />
  45.755 +    <ClInclude Include="c:/marmalade/s3e/h/EGL/eglext.h" />
  45.756 +    <ClInclude Include="c:/marmalade/s3e/h/EGL/eglplatform.h" />
  45.757 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/elfgcchack.h" />
  45.758 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/encoding.h" />
  45.759 +    <ClInclude Include="c:/marmalade/s3e/h/std/endian.h" />
  45.760 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/entities.h" />
  45.761 +    <ClInclude Include="c:/marmalade/s3e/h/std/errno.h" />
  45.762 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/except.h" />
  45.763 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/exception.h" />
  45.764 +    <ClInclude Include="c:/marmalade/s3e/h/std/fcntl.h" />
  45.765 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/file.h" />
  45.766 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/particle_nodes/firePngData.h" />
  45.767 +    <ClInclude Include="c:/marmalade/s3e/h/std/float.h" />
  45.768 +    <ClInclude Include="c:/marmalade/s3e/h/std/fnmatch.h" />
  45.769 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/freetype.h" />
  45.770 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/fstream.h" />
  45.771 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/ft2build.h" />
  45.772 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftbbox.h" />
  45.773 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftbdf.h" />
  45.774 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftbitmap.h" />
  45.775 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftcache.h" />
  45.776 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftcid.h" />
  45.777 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/config/ftconfig.h" />
  45.778 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/fterrdef.h" />
  45.779 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/fterrors.h" />
  45.780 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftgasp.h" />
  45.781 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftglyph.h" />
  45.782 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftgxval.h" />
  45.783 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftgzip.h" />
  45.784 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/config/ftheader.h" />
  45.785 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftimage.h" />
  45.786 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftincrem.h" />
  45.787 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftlcdfil.h" />
  45.788 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftlist.h" />
  45.789 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftlzw.h" />
  45.790 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftmac.h" />
  45.791 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftmm.h" />
  45.792 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftmodapi.h" />
  45.793 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftmoderr.h" />
  45.794 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/config/ftmodule.h" />
  45.795 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/config/ftoption.h" />
  45.796 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftotval.h" />
  45.797 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftoutln.h" />
  45.798 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftpfr.h" />
  45.799 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftrender.h" />
  45.800 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftsizes.h" />
  45.801 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftsnames.h" />
  45.802 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/config/ftstdlib.h" />
  45.803 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftstroke.h" />
  45.804 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftsynth.h" />
  45.805 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftsystem.h" />
  45.806 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/fttrigon.h" />
  45.807 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/fttypes.h" />
  45.808 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftwinfnt.h" />
  45.809 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ftxf86.h" />
  45.810 +    <ClInclude Include="c:/marmalade/s3e/h/std/getopt.h" />
  45.811 +    <ClInclude Include="c:/marmalade/s3e/h/GLES/gl.h" />
  45.812 +    <ClInclude Include="c:/marmalade/s3e/h/GLES2/gl2.h" />
  45.813 +    <ClInclude Include="c:/marmalade/s3e/h/GLES2/gl2ext.h" />
  45.814 +    <ClInclude Include="c:/marmalade/s3e/h/GLES2/gl2extimg.h" />
  45.815 +    <ClInclude Include="c:/marmalade/s3e/h/GLES2/gl2platform.h" />
  45.816 +    <ClInclude Include="c:/marmalade/s3e/h/GLES/glext.h" />
  45.817 +    <ClInclude Include="c:/marmalade/s3e/h/std/glob.h" />
  45.818 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/globals.h" />
  45.819 +    <ClInclude Include="c:/marmalade/s3e/h/GLES/glplatform.h" />
  45.820 +    <ClInclude Include="c:/marmalade/s3e/h/std/grp.h" />
  45.821 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/hash.h" />
  45.822 +    <ClInclude Include="c:/marmalade/s3e/h/std/iconv.h" />
  45.823 +    <ClInclude Include="c:/marmalade/s3e/h/std/ifaddrs.h" />
  45.824 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/inet_luasocket.h" />
  45.825 +    <ClInclude Include="c:/marmalade/s3e/h/std/inttypes.h" />
  45.826 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/io_luasocket.h" />
  45.827 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/zip_support/ioapi.h" />
  45.828 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/ioctl.h" />
  45.829 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/iomanip.h" />
  45.830 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/ios.h" />
  45.831 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/iostream.h" />
  45.832 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/ipc.h" />
  45.833 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/istream.h" />
  45.834 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jchuff.h" />
  45.835 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jconfig.h" />
  45.836 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jdct.h" />
  45.837 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jdhuff.h" />
  45.838 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jerror.h" />
  45.839 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jinclude.h" />
  45.840 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jmemsys.h" />
  45.841 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jmorecfg.h" />
  45.842 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jpegint.h" />
  45.843 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jpeglib.h" />
  45.844 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/jversion.h" />
  45.845 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/kazmath.h" />
  45.846 +    <ClInclude Include="c:/marmalade/s3e/h/std/langinfo.h" />
  45.847 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lapi.h" />
  45.848 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lauxlib.h" />
  45.849 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lcode.h" />
  45.850 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/ldebug.h" />
  45.851 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/ldo.h" />
  45.852 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lfunc.h" />
  45.853 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lgc.h" />
  45.854 +    <ClInclude Include="c:/marmalade/s3e/h/std/libgen.h" />
  45.855 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/libxml.h" />
  45.856 +    <ClInclude Include="c:/marmalade/s3e/h/std/limits.h" />
  45.857 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/list.h" />
  45.858 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/llex.h" />
  45.859 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/llimits.h" />
  45.860 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lmem.h" />
  45.861 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lobject.h" />
  45.862 +    <ClInclude Include="c:/marmalade/s3e/h/std/locale.h" />
  45.863 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lopcodes.h" />
  45.864 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lparser.h" />
  45.865 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lstate.h" />
  45.866 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lstring.h" />
  45.867 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/ltable.h" />
  45.868 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/ltm.h" />
  45.869 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lua.h" />
  45.870 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/luaconf.h" />
  45.871 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lualib.h" />
  45.872 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/luasocket.h" />
  45.873 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lundump.h" />
  45.874 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lvm.h" />
  45.875 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/lua/lzio.h" />
  45.876 +    <ClInclude Include="c:/marmalade/s3e/h/std/malloc.h" />
  45.877 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/mat3.h" />
  45.878 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/mat4.h" />
  45.879 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/gl/mat4stack.h" />
  45.880 +    <ClInclude Include="c:/marmalade/s3e/h/std/math.h" />
  45.881 +    <ClInclude Include="c:/marmalade/s3e/h/std/math_gcc.h" />
  45.882 +    <ClInclude Include="c:/marmalade/s3e/h/std/math_rvct.h" />
  45.883 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/gl/matrix.h" />
  45.884 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/mem.h" />
  45.885 +    <ClInclude Include="c:/marmalade/s3e/h/std/memory.h" />
  45.886 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/mime.h" />
  45.887 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/mman.h" />
  45.888 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/msl_string.h" />
  45.889 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/nanoftp.h" />
  45.890 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/nanohttp.h" />
  45.891 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/neon_matrix_impl.h" />
  45.892 +    <ClInclude Include="c:/marmalade/s3e/h/std/netdb.h" />
  45.893 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/new.h" />
  45.894 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/options.h" />
  45.895 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/ostream.h" />
  45.896 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/param.h" />
  45.897 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/parser.h" />
  45.898 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/parserInternals.h" />
  45.899 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/pattern.h" />
  45.900 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/plane.h" />
  45.901 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/platform.h" />
  45.902 +    <ClInclude Include="c:/marmalade/modules/third_party/libpng/h/png.h" />
  45.903 +    <ClInclude Include="c:/marmalade/modules/third_party/libpng/h/pngconf.h" />
  45.904 +    <ClInclude Include="c:/marmalade/s3e/h/std/poll.h" />
  45.905 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/poll.h" />
  45.906 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/prctl.h" />
  45.907 +    <ClInclude Include="c:/marmalade/s3e/h/std/pthread.h" />
  45.908 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/pthread.h" />
  45.909 +    <ClInclude Include="c:/marmalade/s3e/h/std/pthread_types.h" />
  45.910 +    <ClInclude Include="c:/marmalade/s3e/h/std/pwd.h" />
  45.911 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/quaternion.h" />
  45.912 +    <ClInclude Include="c:/marmalade/quick/quickuser.h" />
  45.913 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/ray2.h" />
  45.914 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/resource.h" />
  45.915 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/rlocks.h" />
  45.916 +    <ClInclude Include="c:/marmalade/s3e/h/s3e.h" />
  45.917 +    <ClInclude Include="c:/marmalade/s3e/h/s3eAccelerometer.h" />
  45.918 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eAndroidJNI.h" />
  45.919 +    <ClInclude Include="c:/marmalade/extensions/s3eandroidmarketbilling/h/s3eAndroidMarketBilling.h" />
  45.920 +    <ClInclude Include="c:/marmalade/s3e/h/s3eAudio.h" />
  45.921 +    <ClInclude Include="c:/marmalade/extensions/s3ebbappworldbilling/h/s3eBBAppWorldBilling.h" />
  45.922 +    <ClInclude Include="c:/marmalade/s3e/h/s3eCamera.h" />
  45.923 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eCameraCapture.h" />
  45.924 +    <ClInclude Include="c:/marmalade/s3e/h/s3eClipboard.h" />
  45.925 +    <ClInclude Include="c:/marmalade/s3e/h/s3eCompass.h" />
  45.926 +    <ClInclude Include="c:/marmalade/s3e/h/s3eCompression.h" />
  45.927 +    <ClInclude Include="c:/marmalade/s3e/h/s3eConfig.h" />
  45.928 +    <ClInclude Include="c:/marmalade/s3e/h/s3eContacts.h" />
  45.929 +    <ClInclude Include="c:/marmalade/s3e/h/s3eCrypto.h" />
  45.930 +    <ClInclude Include="c:/marmalade/s3e/h/s3eDebug.h" />
  45.931 +    <ClInclude Include="c:/marmalade/s3e/h/s3eDevice.h" />
  45.932 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eEMail.h" />
  45.933 +    <ClInclude Include="c:/marmalade/s3e/h/s3eExt.h" />
  45.934 +    <ClInclude Include="c:/marmalade/extensions/s3efacebook/h/s3eFacebook.h" />
  45.935 +    <ClInclude Include="c:/marmalade/s3e/h/s3eFile.h" />
  45.936 +    <ClInclude Include="c:/marmalade/s3e/h/s3eGL.h" />
  45.937 +    <ClInclude Include="c:/marmalade/s3e/h/s3eHash.h" />
  45.938 +    <ClInclude Include="c:/marmalade/extensions/s3eiosappstorebilling/h/s3eIOSAppStoreBilling.h" />
  45.939 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eIOSBackgroundAudio.h" />
  45.940 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eImagePicker.h" />
  45.941 +    <ClInclude Include="c:/marmalade/s3e/h/s3eKeyboard.h" />
  45.942 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eLibrary.h" />
  45.943 +    <ClInclude Include="c:/marmalade/s3e/h/s3eLicense.h" />
  45.944 +    <ClInclude Include="c:/marmalade/s3e/h/s3eLocation.h" />
  45.945 +    <ClInclude Include="c:/marmalade/s3e/h/s3eMemory.h" />
  45.946 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eMetrics.h" />
  45.947 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eOSExec.h" />
  45.948 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eOSReadString.h" />
  45.949 +    <ClInclude Include="c:/marmalade/s3e/h/s3ePointer.h" />
  45.950 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eSMS.h" />
  45.951 +    <ClInclude Include="c:/marmalade/s3e/h/s3eSecureStorage.h" />
  45.952 +    <ClInclude Include="c:/marmalade/s3e/h/s3eSocket.h" />
  45.953 +    <ClInclude Include="c:/marmalade/s3e/h/s3eSound.h" />
  45.954 +    <ClInclude Include="c:/marmalade/s3e/h/s3eSoundRecord.h" />
  45.955 +    <ClInclude Include="c:/marmalade/s3e/h/s3eSurface.h" />
  45.956 +    <ClInclude Include="c:/marmalade/s3e/h/s3eThread.h" />
  45.957 +    <ClInclude Include="c:/marmalade/s3e/h/s3eTimer.h" />
  45.958 +    <ClInclude Include="c:/marmalade/s3e/h/s3eTypes.h" />
  45.959 +    <ClInclude Include="c:/marmalade/s3e/h/s3eVersion.h" />
  45.960 +    <ClInclude Include="c:/marmalade/s3e/h/s3eVibra.h" />
  45.961 +    <ClInclude Include="c:/marmalade/s3e/h/s3eVideo.h" />
  45.962 +    <ClInclude Include="c:/marmalade/extensions/s3ewebview/h/s3eWebView.h" />
  45.963 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3eWindow.h" />
  45.964 +    <ClInclude Include="c:/marmalade/s3e/h/ext/s3edebugHeap.h" />
  45.965 +    <ClInclude Include="c:/marmalade/s3e/h/std/sched.h" />
  45.966 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/schemasInternals.h" />
  45.967 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/schematron.h" />
  45.968 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/select.h" />
  45.969 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/select_luasocket.h" />
  45.970 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/sem.h" />
  45.971 +    <ClInclude Include="c:/marmalade/s3e/h/std/semaphore.h" />
  45.972 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/sendfile.h" />
  45.973 +    <ClInclude Include="c:/marmalade/s3e/h/std/setjmp.h" />
  45.974 +    <ClInclude Include="c:/marmalade/s3e/h/std/setjmp_win32.h" />
  45.975 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/shm.h" />
  45.976 +    <ClInclude Include="c:/marmalade/s3e/h/std/sigcontext.h" />
  45.977 +    <ClInclude Include="c:/marmalade/s3e/h/std/signal.h" />
  45.978 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/signal.h" />
  45.979 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/signal.h" />
  45.980 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/socket.h" />
  45.981 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/socket_wrapper.h" />
  45.982 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/sqlite3/sqlite3.h" />
  45.983 +    <ClInclude Include="c:/marmalade/modules/third_party/openquick/sqlite3/sqlite3ext.h" />
  45.984 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/stat.h" />
  45.985 +    <ClInclude Include="c:/marmalade/s3e/h/std/stdarg.h" />
  45.986 +    <ClInclude Include="c:/marmalade/s3e/h/std/stdbool.h" />
  45.987 +    <ClInclude Include="c:/marmalade/s3e/h/std/stddef.h" />
  45.988 +    <ClInclude Include="c:/marmalade/s3e/h/std/stdint.h" />
  45.989 +    <ClInclude Include="c:/marmalade/s3e/h/std/stdio.h" />
  45.990 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/stdiostream.h" />
  45.991 +    <ClInclude Include="c:/marmalade/s3e/h/std/stdlib.h" />
  45.992 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/stl_user_config.h" />
  45.993 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/streambuf.h" />
  45.994 +    <ClInclude Include="c:/marmalade/s3e/h/std/string.h" />
  45.995 +    <ClInclude Include="c:/marmalade/s3e/h/std/strings.h" />
  45.996 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/strstream.h" />
  45.997 +    <ClInclude Include="c:/marmalade/s3e/h/std/syslog.h" />
  45.998 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/t1tables.h" />
  45.999 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/t4.h" />
 45.1000 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/tcp_luasocket.h" />
 45.1001 +    <ClInclude Include="c:/marmalade/s3e/h/std/termios.h" />
 45.1002 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/threads.h" />
 45.1003 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tif_config.h" />
 45.1004 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tif_dir.h" />
 45.1005 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tif_fax3.h" />
 45.1006 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tif_predict.h" />
 45.1007 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiff.h" />
 45.1008 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiffconf.h" />
 45.1009 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiffio.h" />
 45.1010 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiffiop.h" />
 45.1011 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiffvers.h" />
 45.1012 +    <ClInclude Include="c:/marmalade/s3e/h/std/time.h" />
 45.1013 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/time.h" />
 45.1014 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/timeout.h" />
 45.1015 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/times.h" />
 45.1016 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua/tolua++.h" />
 45.1017 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/scripting/lua/tolua/tolua_event.h" />
 45.1018 +    <ClInclude Include="c:/marmalade/modules/third_party/libjpeg/h/transupp.h" />
 45.1019 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/tree.h" />
 45.1020 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/trio.h" />
 45.1021 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/triodef.h" />
 45.1022 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/trionan.h" />
 45.1023 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/triop.h" />
 45.1024 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/sources/triostr.h" />
 45.1025 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ttnameid.h" />
 45.1026 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/tttables.h" />
 45.1027 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/tttags.h" />
 45.1028 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/ttunpat.h" />
 45.1029 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/type_traits.h" />
 45.1030 +    <ClInclude Include="c:/marmalade/s3e/h/std/c++/typeinfo.h" />
 45.1031 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/types.h" />
 45.1032 +    <ClInclude Include="c:/marmalade/s3e/h/std/ucontext.h" />
 45.1033 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/udp.h" />
 45.1034 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/uio.h" />
 45.1035 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/un.h" />
 45.1036 +    <ClInclude Include="c:/marmalade/s3e/h/std/unistd.h" />
 45.1037 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/zip_support/unzip.h" />
 45.1038 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/uri.h" />
 45.1039 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/data_support/uthash.h" />
 45.1040 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/utility.h" />
 45.1041 +    <ClInclude Include="c:/marmalade/s3e/h/std/utime.h" />
 45.1042 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/support/data_support/utlist.h" />
 45.1043 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/utsname.h" />
 45.1044 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libtiff/headers/uvcode.h" />
 45.1045 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/valid.h" />
 45.1046 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/vec2.h" />
 45.1047 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/vec3.h" />
 45.1048 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/kazmath/include/kazmath/vec4.h" />
 45.1049 +    <ClInclude Include="c:/marmalade/s3e/h/std/sys/wait.h" />
 45.1050 +    <ClInclude Include="c:/marmalade/s3e/h/std/wchar.h" />
 45.1051 +    <ClInclude Include="c:/marmalade/s3e/h/std/wctype.h" />
 45.1052 +    <ClInclude Include="c:/marmalade/quick/luasocket-2.0.2/wsocket.h" />
 45.1053 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xinclude.h" />
 45.1054 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xlink.h" />
 45.1055 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlIO.h" />
 45.1056 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlautomata.h" />
 45.1057 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlerror.h" />
 45.1058 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlexports.h" />
 45.1059 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlmemory.h" />
 45.1060 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlmodule.h" />
 45.1061 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlreader.h" />
 45.1062 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlregexp.h" />
 45.1063 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlsave.h" />
 45.1064 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlschemas.h" />
 45.1065 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlschemastypes.h" />
 45.1066 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlstring.h" />
 45.1067 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlunicode.h" />
 45.1068 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/marmalade/libxml/xmlversion.h" />
 45.1069 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xmlwriter.h" />
 45.1070 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xpath.h" />
 45.1071 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xpathInternals.h" />
 45.1072 +    <ClInclude Include="c:/marmalade/modules/third_party/cocos2dx/cocos2dx/platform/third_party/marmalade/libxml2/include/libxml/xpointer.h" />
 45.1073 +    <ClInclude Include="c:/marmalade/modules/third_party/zlib/h/zconf.h" />
 45.1074 +    <ClInclude Include="c:/marmalade/modules/third_party/zlib/h/zlib.h" />
 45.1075 +  </ItemGroup>
 45.1076 +  <ItemGroup>
 45.1077 +    <ClCompile Include="c:\marmalade\quick\source\AppDelegate.cpp" />
 45.1078 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCAccelerometer.cpp" />
 45.1079 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCAction.cpp" />
 45.1080 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionCamera.cpp" />
 45.1081 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionCatmullRom.cpp" />
 45.1082 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionEase.cpp" />
 45.1083 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionGrid.cpp" />
 45.1084 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionGrid3D.cpp" />
 45.1085 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionInstant.cpp" />
 45.1086 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionInterval.cpp" />
 45.1087 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionManager.cpp" />
 45.1088 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionPageTurn3D.cpp" />
 45.1089 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionProgressTimer.cpp" />
 45.1090 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionTiledGrid.cpp" />
 45.1091 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\actions\CCActionTween.cpp" />
 45.1092 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCAffineTransform.cpp" />
 45.1093 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCAnimation.cpp" />
 45.1094 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCAnimationCache.cpp" />
 45.1095 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCApplication.cpp" />
 45.1096 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCArray.cpp" />
 45.1097 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\base_nodes\CCAtlasNode.cpp" />
 45.1098 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCAutoreleasePool.cpp" />
 45.1099 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\CCCamera.cpp" />
 45.1100 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\misc_nodes\CCClippingNode.cpp" />
 45.1101 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCCommon.cpp" />
 45.1102 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\CCConfiguration.cpp" />
 45.1103 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCDictionary.cpp" />
 45.1104 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\CCDirector.cpp" />
 45.1105 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\draw_nodes\CCDrawNode.cpp" />
 45.1106 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\draw_nodes\CCDrawingPrimitives.cpp" />
 45.1107 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCEGLView.cpp" />
 45.1108 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\CCEGLViewProtocol.cpp" />
 45.1109 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCFileUtils.cpp" />
 45.1110 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\shaders\CCGLProgram.cpp" />
 45.1111 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCGeometry.cpp" />
 45.1112 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\effects\CCGrabber.cpp" />
 45.1113 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\effects\CCGrid.cpp" />
 45.1114 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\text_input_node\CCIMEDispatcher.cpp" />
 45.1115 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\marmalade\CCImage.cpp" />
 45.1116 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\keypad_dispatcher\CCKeypadDelegate.cpp" />
 45.1117 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\keypad_dispatcher\CCKeypadDispatcher.cpp" />
 45.1118 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\label_nodes\CCLabelAtlas.cpp" />
 45.1119 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\label_nodes\CCLabelBMFont.cpp" />
 45.1120 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\label_nodes\CCLabelTTF.cpp" />
 45.1121 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\layers_scenes_transitions_nodes\CCLayer.cpp" />
 45.1122 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\menu_nodes\CCMenu.cpp" />
 45.1123 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\menu_nodes\CCMenuItem.cpp" />
 45.1124 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\misc_nodes\CCMotionStreak.cpp" />
 45.1125 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCNS.cpp" />
 45.1126 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\base_nodes\CCNode.cpp" />
 45.1127 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\CCNotificationCenter.cpp" />
 45.1128 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCObject.cpp" />
 45.1129 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCParallaxNode.cpp" />
 45.1130 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\particle_nodes\CCParticleBatchNode.cpp" />
 45.1131 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\particle_nodes\CCParticleExamples.cpp" />
 45.1132 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\particle_nodes\CCParticleSystem.cpp" />
 45.1133 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\particle_nodes\CCParticleSystemQuad.cpp" />
 45.1134 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\CCPointExtension.cpp" />
 45.1135 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\CCProfiling.cpp" />
 45.1136 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\misc_nodes\CCProgressTimer.cpp" />
 45.1137 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\misc_nodes\CCRenderTexture.cpp" />
 45.1138 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\CCSAXParser.cpp" />
 45.1139 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\layers_scenes_transitions_nodes\CCScene.cpp" />
 45.1140 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\CCScheduler.cpp" />
 45.1141 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\script_support\CCScriptSupport.cpp" />
 45.1142 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCSet.cpp" />
 45.1143 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\shaders\CCShaderCache.cpp" />
 45.1144 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCSprite.cpp" />
 45.1145 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCSpriteBatchNode.cpp" />
 45.1146 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCSpriteFrame.cpp" />
 45.1147 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\sprite_nodes\CCSpriteFrameCache.cpp" />
 45.1148 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCString.cpp" />
 45.1149 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCTMXLayer.cpp" />
 45.1150 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCTMXObjectGroup.cpp" />
 45.1151 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCTMXTiledMap.cpp" />
 45.1152 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCTMXXMLParser.cpp" />
 45.1153 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\text_input_node\CCTextFieldTTF.cpp" />
 45.1154 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\textures\CCTexture2D.cpp" />
 45.1155 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\textures\CCTextureAtlas.cpp" />
 45.1156 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\textures\CCTextureCache.cpp" />
 45.1157 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\textures\CCTexturePVR.cpp" />
 45.1158 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\CCThread.cpp" />
 45.1159 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\tileMap_parallax_nodes\CCTileMapAtlas.cpp" />
 45.1160 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\touch_dispatcher\CCTouch.cpp" />
 45.1161 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\touch_dispatcher\CCTouchDispatcher.cpp" />
 45.1162 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\touch_dispatcher\CCTouchHandler.cpp" />
 45.1163 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\layers_scenes_transitions_nodes\CCTransition.cpp" />
 45.1164 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\layers_scenes_transitions_nodes\CCTransitionPageTurn.cpp" />
 45.1165 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\layers_scenes_transitions_nodes\CCTransitionProgress.cpp" />
 45.1166 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\CCUserDefault.cpp" />
 45.1167 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\CCVertex.cpp" />
 45.1168 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocoa\CCZone.cpp" />
 45.1169 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\DOCBparser.c">
 45.1170 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1171 +    </ClCompile>    
 45.1172 +    <ClCompile Include="c:\marmalade\modules\flurry\interface\Flurry_interface.cpp" />
 45.1173 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\HTMLparser.c">
 45.1174 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1175 +    </ClCompile>    
 45.1176 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\HTMLtree.c">
 45.1177 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1178 +    </ClCompile>    
 45.1179 +    <ClCompile Include="c:\marmalade\modules\iwbilling\source\IwBilling.cpp" />
 45.1180 +    <ClCompile Include="c:\marmalade\quick\source\QAnalytics.cpp" />
 45.1181 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QAnimate.cpp" />
 45.1182 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QAnimation.cpp" />
 45.1183 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QAtlas.cpp" />
 45.1184 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QAudio.cpp" />
 45.1185 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QBase.cpp" />
 45.1186 +    <ClCompile Include="c:\marmalade\quick\source\QBilling.cpp" />
 45.1187 +    <ClCompile Include="c:\marmalade\quick\source\QBrowser.cpp" />
 45.1188 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QCircle.cpp" />
 45.1189 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QColor.cpp" />
 45.1190 +    <ClCompile Include="c:\marmalade\quick\source\QCompass.cpp" />
 45.1191 +    <ClCompile Include="c:\marmalade\quick\source\QCrypto.cpp" />
 45.1192 +    <ClCompile Include="c:\marmalade\quick\source\QDevice.cpp" />
 45.1193 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QDirector.cpp" />
 45.1194 +    <ClCompile Include="c:\marmalade\quick\source\QFacebook.cpp" />
 45.1195 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QFont.cpp" />
 45.1196 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QLabel.cpp" />
 45.1197 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QLines.cpp" />
 45.1198 +    <ClCompile Include="c:\marmalade\quick\source\QLocation.cpp" />
 45.1199 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QLsqlite3.cpp" />
 45.1200 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QLuaHelpers.cpp" />
 45.1201 +    <ClCompile Include="c:\marmalade\quick\source\QLuasocket.cpp" />
 45.1202 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QMain.cpp" />
 45.1203 +    <ClCompile Include="c:\marmalade\quick\source\QNUI.cpp" />
 45.1204 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QNode.cpp" />
 45.1205 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QParticles.cpp" />
 45.1206 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysics.cpp" />
 45.1207 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsContact.cpp" />
 45.1208 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsContactListener.cpp" />
 45.1209 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJoint.cpp" />
 45.1210 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointDistance.cpp" />
 45.1211 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointFriction.cpp" />
 45.1212 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointGear.cpp" />
 45.1213 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointPrismatic.cpp" />
 45.1214 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointPulley.cpp" />
 45.1215 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointRevolute.cpp" />
 45.1216 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointRope.cpp" />
 45.1217 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointTouch.cpp" />
 45.1218 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointWeld.cpp" />
 45.1219 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsJointWheel.cpp" />
 45.1220 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QPhysicsNodeProps.cpp" />
 45.1221 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QRectangle.cpp" />
 45.1222 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QScene.cpp" />
 45.1223 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QSceneTextureBatch.cpp" />
 45.1224 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QSprite.cpp" />
 45.1225 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QSystem.cpp" />
 45.1226 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QTiledMap.cpp" />
 45.1227 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QTween.cpp" />
 45.1228 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QVec2.cpp" />
 45.1229 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\source\QVector.cpp" />
 45.1230 +    <ClCompile Include="c:\marmalade\quick\source\QVideo.cpp" />
 45.1231 +    <ClCompile Include="c:\marmalade\quick\source\QWebView.cpp" />
 45.1232 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\SAX.c">
 45.1233 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1234 +    </ClCompile>    
 45.1235 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\SAX2.c">
 45.1236 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1237 +    </ClCompile>    
 45.1238 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocosdenshion\marmalade\SimpleAudioEngine.cpp" />
 45.1239 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\image_support\TGAlib.cpp" />
 45.1240 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\TransformUtils.cpp" />
 45.1241 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\zip_support\ZipUtils.cpp" />
 45.1242 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\aabb.c">
 45.1243 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1244 +    </ClCompile>    
 45.1245 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\autofit\autofit.c">
 45.1246 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1247 +    </ClCompile>    
 45.1248 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\auxiliar.c">
 45.1249 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1250 +    </ClCompile>    
 45.1251 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2BlockAllocator.cpp" />
 45.1252 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2Body.cpp" />
 45.1253 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2BroadPhase.cpp" />
 45.1254 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2ChainAndCircleContact.cpp" />
 45.1255 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2ChainAndPolygonContact.cpp" />
 45.1256 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\Shapes\b2ChainShape.cpp" />
 45.1257 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2CircleContact.cpp" />
 45.1258 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\Shapes\b2CircleShape.cpp" />
 45.1259 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2CollideCircle.cpp" />
 45.1260 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2CollideEdge.cpp" />
 45.1261 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2CollidePolygon.cpp" />
 45.1262 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2Collision.cpp" />
 45.1263 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2Contact.cpp" />
 45.1264 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2ContactManager.cpp" />
 45.1265 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2ContactSolver.cpp" />
 45.1266 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2Distance.cpp" />
 45.1267 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2DistanceJoint.cpp" />
 45.1268 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2Draw.cpp" />
 45.1269 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2DynamicTree.cpp" />
 45.1270 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2EdgeAndCircleContact.cpp" />
 45.1271 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2EdgeAndPolygonContact.cpp" />
 45.1272 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\Shapes\b2EdgeShape.cpp" />
 45.1273 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2Fixture.cpp" />
 45.1274 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2FrictionJoint.cpp" />
 45.1275 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2GearJoint.cpp" />
 45.1276 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2Island.cpp" />
 45.1277 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2Joint.cpp" />
 45.1278 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2Math.cpp" />
 45.1279 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2MouseJoint.cpp" />
 45.1280 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2PolygonAndCircleContact.cpp" />
 45.1281 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Contacts\b2PolygonContact.cpp" />
 45.1282 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\Shapes\b2PolygonShape.cpp" />
 45.1283 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2PrismaticJoint.cpp" />
 45.1284 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2PulleyJoint.cpp" />
 45.1285 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2RevoluteJoint.cpp" />
 45.1286 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Rope\b2Rope.cpp" />
 45.1287 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2RopeJoint.cpp" />
 45.1288 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2Settings.cpp" />
 45.1289 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2StackAllocator.cpp" />
 45.1290 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Collision\b2TimeOfImpact.cpp" />
 45.1291 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Common\b2Timer.cpp" />
 45.1292 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2WeldJoint.cpp" />
 45.1293 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\Joints\b2WheelJoint.cpp" />
 45.1294 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2World.cpp" />
 45.1295 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\external\box2d\Dynamics\b2WorldCallbacks.cpp" />
 45.1296 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\base64.cpp" />
 45.1297 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\bdf\bdf.c">
 45.1298 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1299 +    </ClCompile>    
 45.1300 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\buffer.c">
 45.1301 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1302 +    </ClCompile>    
 45.1303 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\c14n.c">
 45.1304 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1305 +    </ClCompile>    
 45.1306 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\catalog.c">
 45.1307 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1308 +    </ClCompile>    
 45.1309 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\data_support\ccCArray.cpp" />
 45.1310 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\shaders\ccGLStateCache.cpp" />
 45.1311 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\shaders\ccShaders.cpp" />
 45.1312 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\ccUtils.cpp" />
 45.1313 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\cff\cff.c">
 45.1314 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1315 +    </ClCompile>    
 45.1316 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\chvalid.c">
 45.1317 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1318 +    </ClCompile>    
 45.1319 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\cocos2d.cpp" />
 45.1320 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\debugXML.c">
 45.1321 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1322 +    </ClCompile>    
 45.1323 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\dict.c">
 45.1324 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1325 +    </ClCompile>    
 45.1326 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\encoding.c">
 45.1327 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1328 +    </ClCompile>    
 45.1329 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\entities.c">
 45.1330 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1331 +    </ClCompile>    
 45.1332 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\error.c">
 45.1333 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1334 +    </ClCompile>    
 45.1335 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\except.c">
 45.1336 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1337 +    </ClCompile>    
 45.1338 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftbase.c">
 45.1339 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1340 +    </ClCompile>    
 45.1341 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftbbox.c">
 45.1342 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1343 +    </ClCompile>    
 45.1344 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftbdf.c">
 45.1345 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1346 +    </ClCompile>    
 45.1347 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftbitmap.c">
 45.1348 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1349 +    </ClCompile>    
 45.1350 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\cache\ftcache.c">
 45.1351 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1352 +    </ClCompile>    
 45.1353 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftcid.c">
 45.1354 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1355 +    </ClCompile>    
 45.1356 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftfstype.c">
 45.1357 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1358 +    </ClCompile>    
 45.1359 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftgasp.c">
 45.1360 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1361 +    </ClCompile>    
 45.1362 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftglyph.c">
 45.1363 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1364 +    </ClCompile>    
 45.1365 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftgxval.c">
 45.1366 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1367 +    </ClCompile>    
 45.1368 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\gzip\ftgzip.c">
 45.1369 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1370 +    </ClCompile>    
 45.1371 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftinit.c">
 45.1372 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1373 +    </ClCompile>    
 45.1374 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftlcdfil.c">
 45.1375 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1376 +    </ClCompile>    
 45.1377 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\lzw\ftlzw.c">
 45.1378 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1379 +    </ClCompile>    
 45.1380 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftmm.c">
 45.1381 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1382 +    </ClCompile>    
 45.1383 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftotval.c">
 45.1384 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1385 +    </ClCompile>    
 45.1386 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftpatent.c">
 45.1387 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1388 +    </ClCompile>    
 45.1389 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftpfr.c">
 45.1390 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1391 +    </ClCompile>    
 45.1392 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftstroke.c">
 45.1393 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1394 +    </ClCompile>    
 45.1395 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftsynth.c">
 45.1396 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1397 +    </ClCompile>    
 45.1398 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftsystem.c">
 45.1399 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1400 +    </ClCompile>    
 45.1401 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\fttype1.c">
 45.1402 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1403 +    </ClCompile>    
 45.1404 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\base\ftwinfnt.c">
 45.1405 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1406 +    </ClCompile>    
 45.1407 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\globals.c">
 45.1408 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1409 +    </ClCompile>    
 45.1410 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\hash.c">
 45.1411 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1412 +    </ClCompile>    
 45.1413 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\inet_luasocket.c">
 45.1414 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1415 +    </ClCompile>    
 45.1416 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\io_luasocket.c">
 45.1417 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1418 +    </ClCompile>    
 45.1419 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\zip_support\ioapi.cpp" />
 45.1420 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lapi.c">
 45.1421 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1422 +    </ClCompile>    
 45.1423 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lauxlib.c">
 45.1424 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1425 +    </ClCompile>    
 45.1426 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lbaselib.c">
 45.1427 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1428 +    </ClCompile>    
 45.1429 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lcode.c">
 45.1430 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1431 +    </ClCompile>    
 45.1432 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ldblib.c">
 45.1433 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1434 +    </ClCompile>    
 45.1435 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ldebug.c">
 45.1436 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1437 +    </ClCompile>    
 45.1438 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ldo.c">
 45.1439 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1440 +    </ClCompile>    
 45.1441 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ldump.c">
 45.1442 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1443 +    </ClCompile>    
 45.1444 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\legacy.c">
 45.1445 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1446 +    </ClCompile>    
 45.1447 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lfunc.c">
 45.1448 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1449 +    </ClCompile>    
 45.1450 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lgc.c">
 45.1451 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1452 +    </ClCompile>    
 45.1453 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\linit.c">
 45.1454 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1455 +    </ClCompile>    
 45.1456 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\liolib.c">
 45.1457 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1458 +    </ClCompile>    
 45.1459 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\list.c">
 45.1460 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1461 +    </ClCompile>    
 45.1462 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\llex.c">
 45.1463 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1464 +    </ClCompile>    
 45.1465 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lmathlib.c">
 45.1466 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1467 +    </ClCompile>    
 45.1468 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lmem.c">
 45.1469 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1470 +    </ClCompile>    
 45.1471 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\loadlib.c">
 45.1472 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1473 +    </ClCompile>    
 45.1474 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lobject.c">
 45.1475 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1476 +    </ClCompile>    
 45.1477 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lopcodes.c">
 45.1478 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1479 +    </ClCompile>    
 45.1480 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\loslib.c">
 45.1481 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1482 +    </ClCompile>    
 45.1483 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lparser.c">
 45.1484 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1485 +    </ClCompile>    
 45.1486 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\sqlite3\lsqlite3.c">
 45.1487 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1488 +    </ClCompile>    
 45.1489 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lstate.c">
 45.1490 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1491 +    </ClCompile>    
 45.1492 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lstring.c">
 45.1493 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1494 +    </ClCompile>    
 45.1495 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lstrlib.c">
 45.1496 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1497 +    </ClCompile>    
 45.1498 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ltable.c">
 45.1499 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1500 +    </ClCompile>    
 45.1501 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ltablib.c">
 45.1502 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1503 +    </ClCompile>    
 45.1504 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\ltm.c">
 45.1505 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1506 +    </ClCompile>    
 45.1507 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lua.c">
 45.1508 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1509 +    </ClCompile>    
 45.1510 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\luasocket.c">
 45.1511 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1512 +    </ClCompile>    
 45.1513 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lundump.c">
 45.1514 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1515 +    </ClCompile>    
 45.1516 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lvm.c">
 45.1517 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1518 +    </ClCompile>    
 45.1519 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\lzio.c">
 45.1520 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1521 +    </ClCompile>    
 45.1522 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\mat3.c">
 45.1523 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1524 +    </ClCompile>    
 45.1525 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\mat4.c">
 45.1526 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1527 +    </ClCompile>    
 45.1528 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\gl\mat4stack.c">
 45.1529 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1530 +    </ClCompile>    
 45.1531 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\gl\matrix.c">
 45.1532 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1533 +    </ClCompile>    
 45.1534 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\mime.c">
 45.1535 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1536 +    </ClCompile>    
 45.1537 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\nanoftp.c">
 45.1538 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1539 +    </ClCompile>    
 45.1540 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\nanohttp.c">
 45.1541 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1542 +    </ClCompile>    
 45.1543 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\neon_matrix_impl.c">
 45.1544 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1545 +    </ClCompile>    
 45.1546 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\openquick_tolua.cpp" />
 45.1547 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\options.c">
 45.1548 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1549 +    </ClCompile>    
 45.1550 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\parser.c">
 45.1551 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1552 +    </ClCompile>    
 45.1553 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\parserInternals.c">
 45.1554 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1555 +    </ClCompile>    
 45.1556 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\pattern.c">
 45.1557 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1558 +    </ClCompile>    
 45.1559 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\pcf\pcf.c">
 45.1560 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1561 +    </ClCompile>    
 45.1562 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\pfr\pfr.c">
 45.1563 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1564 +    </ClCompile>    
 45.1565 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\plane.c">
 45.1566 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1567 +    </ClCompile>    
 45.1568 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\platform.cpp" />
 45.1569 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\lua\print.c">
 45.1570 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1571 +    </ClCompile>    
 45.1572 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\psaux\psaux.c">
 45.1573 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1574 +    </ClCompile>    
 45.1575 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\pshinter\pshinter.c">
 45.1576 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1577 +    </ClCompile>    
 45.1578 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\psnames\psmodule.c">
 45.1579 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1580 +    </ClCompile>    
 45.1581 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\quaternion.c">
 45.1582 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1583 +    </ClCompile>    
 45.1584 +    <ClCompile Include="c:\marmalade\quick\quick_tolua.cpp" />
 45.1585 +    <ClCompile Include="c:\marmalade\quick\quickuser_tolua.cpp" />
 45.1586 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\raster\raster.c">
 45.1587 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1588 +    </ClCompile>    
 45.1589 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\ray2.c">
 45.1590 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1591 +    </ClCompile>    
 45.1592 +    <ClCompile Include="c:\marmalade\extensions\s3eandroidmarketbilling\interface\s3eAndroidMarketBilling_interface.cpp" />
 45.1593 +    <ClCompile Include="c:\marmalade\extensions\s3ebbappworldbilling\interface\s3eBBAppWorldBilling_interface.cpp" />
 45.1594 +    <ClCompile Include="c:\marmalade\extensions\s3efacebook\interface\s3eFacebook_interface.cpp" />
 45.1595 +    <ClCompile Include="c:\marmalade\extensions\s3eiosappstorebilling\interface\s3eIOSAppStoreBilling_interface.cpp" />
 45.1596 +    <ClCompile Include="c:\marmalade\extensions\s3ewebview\interface\s3eWebView_interface.cpp" />
 45.1597 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\schematron.c">
 45.1598 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1599 +    </ClCompile>    
 45.1600 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\select_luasocket.c">
 45.1601 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1602 +    </ClCompile>    
 45.1603 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\sfnt\sfnt.c">
 45.1604 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1605 +    </ClCompile>    
 45.1606 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\smooth\smooth.c">
 45.1607 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1608 +    </ClCompile>    
 45.1609 +    <ClCompile Include="c:\marmalade\modules\third_party\openquick\sqlite3\sqlite3.c">
 45.1610 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1611 +    </ClCompile>    
 45.1612 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\tcp_luasocket.c">
 45.1613 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1614 +    </ClCompile>    
 45.1615 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\threads.c">
 45.1616 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1617 +    </ClCompile>    
 45.1618 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_aux.c">
 45.1619 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1620 +    </ClCompile>    
 45.1621 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_close.c">
 45.1622 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1623 +    </ClCompile>    
 45.1624 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_codec.c">
 45.1625 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1626 +    </ClCompile>    
 45.1627 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_color.c">
 45.1628 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1629 +    </ClCompile>    
 45.1630 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_compress.c">
 45.1631 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1632 +    </ClCompile>    
 45.1633 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_dir.c">
 45.1634 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1635 +    </ClCompile>    
 45.1636 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_dirinfo.c">
 45.1637 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1638 +    </ClCompile>    
 45.1639 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_dirread.c">
 45.1640 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1641 +    </ClCompile>    
 45.1642 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_dirwrite.c">
 45.1643 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1644 +    </ClCompile>    
 45.1645 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_dumpmode.c">
 45.1646 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1647 +    </ClCompile>    
 45.1648 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_error.c">
 45.1649 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1650 +    </ClCompile>    
 45.1651 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_extension.c">
 45.1652 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1653 +    </ClCompile>    
 45.1654 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_fax3.c">
 45.1655 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1656 +    </ClCompile>    
 45.1657 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_fax3sm.c">
 45.1658 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1659 +    </ClCompile>    
 45.1660 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_flush.c">
 45.1661 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1662 +    </ClCompile>    
 45.1663 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_getimage.c">
 45.1664 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1665 +    </ClCompile>    
 45.1666 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_jbig.c">
 45.1667 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1668 +    </ClCompile>    
 45.1669 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_jpeg.c">
 45.1670 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1671 +    </ClCompile>    
 45.1672 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_luv.c">
 45.1673 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1674 +    </ClCompile>    
 45.1675 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_lzw.c">
 45.1676 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1677 +    </ClCompile>    
 45.1678 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_next.c">
 45.1679 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1680 +    </ClCompile>    
 45.1681 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_ojpeg.c">
 45.1682 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1683 +    </ClCompile>    
 45.1684 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_open.c">
 45.1685 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1686 +    </ClCompile>    
 45.1687 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_packbits.c">
 45.1688 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1689 +    </ClCompile>    
 45.1690 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_pixarlog.c">
 45.1691 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1692 +    </ClCompile>    
 45.1693 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_predict.c">
 45.1694 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1695 +    </ClCompile>    
 45.1696 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_print.c">
 45.1697 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1698 +    </ClCompile>    
 45.1699 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_read.c">
 45.1700 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1701 +    </ClCompile>    
 45.1702 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_strip.c">
 45.1703 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1704 +    </ClCompile>    
 45.1705 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_swab.c">
 45.1706 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1707 +    </ClCompile>    
 45.1708 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_thunder.c">
 45.1709 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1710 +    </ClCompile>    
 45.1711 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_tile.c">
 45.1712 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1713 +    </ClCompile>    
 45.1714 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_unix.c">
 45.1715 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1716 +    </ClCompile>    
 45.1717 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_version.c">
 45.1718 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1719 +    </ClCompile>    
 45.1720 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_warning.c">
 45.1721 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1722 +    </ClCompile>    
 45.1723 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_write.c">
 45.1724 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1725 +    </ClCompile>    
 45.1726 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libtiff\source\tif_zip.c">
 45.1727 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1728 +    </ClCompile>    
 45.1729 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\timeout.c">
 45.1730 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1731 +    </ClCompile>    
 45.1732 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\tolua\tolua_event.c">
 45.1733 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1734 +    </ClCompile>    
 45.1735 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\tolua\tolua_is.c">
 45.1736 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1737 +    </ClCompile>    
 45.1738 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\tolua\tolua_map.c">
 45.1739 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1740 +    </ClCompile>    
 45.1741 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\tolua\tolua_push.c">
 45.1742 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1743 +    </ClCompile>    
 45.1744 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\scripting\lua\tolua\tolua_to.c">
 45.1745 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1746 +    </ClCompile>    
 45.1747 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\tree.c">
 45.1748 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1749 +    </ClCompile>    
 45.1750 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\truetype\truetype.c">
 45.1751 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1752 +    </ClCompile>    
 45.1753 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\type1\type1.c">
 45.1754 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1755 +    </ClCompile>    
 45.1756 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\cid\type1cid.c">
 45.1757 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1758 +    </ClCompile>    
 45.1759 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\type42\type42.c">
 45.1760 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1761 +    </ClCompile>    
 45.1762 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\udp.c">
 45.1763 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1764 +    </ClCompile>    
 45.1765 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\support\zip_support\unzip.cpp" />
 45.1766 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\uri.c">
 45.1767 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1768 +    </ClCompile>    
 45.1769 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\utility.c">
 45.1770 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1771 +    </ClCompile>    
 45.1772 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\valid.c">
 45.1773 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1774 +    </ClCompile>    
 45.1775 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\vec2.c">
 45.1776 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1777 +    </ClCompile>    
 45.1778 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\vec3.c">
 45.1779 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1780 +    </ClCompile>    
 45.1781 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\kazmath\src\vec4.c">
 45.1782 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1783 +    </ClCompile>    
 45.1784 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\freetype\src\winfonts\winfnt.c">
 45.1785 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1786 +    </ClCompile>    
 45.1787 +    <ClCompile Include="c:\marmalade\quick\luasocket-2.0.2\wsocket.c">
 45.1788 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1789 +    </ClCompile>    
 45.1790 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xinclude.c">
 45.1791 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1792 +    </ClCompile>    
 45.1793 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xlink.c">
 45.1794 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1795 +    </ClCompile>    
 45.1796 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlIO.c">
 45.1797 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1798 +    </ClCompile>    
 45.1799 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlmemory.c">
 45.1800 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1801 +    </ClCompile>    
 45.1802 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlmodule.c">
 45.1803 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1804 +    </ClCompile>    
 45.1805 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlreader.c">
 45.1806 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1807 +    </ClCompile>    
 45.1808 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlregexp.c">
 45.1809 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1810 +    </ClCompile>    
 45.1811 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlsave.c">
 45.1812 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1813 +    </ClCompile>    
 45.1814 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlschemas.c">
 45.1815 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1816 +    </ClCompile>    
 45.1817 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlschemastypes.c">
 45.1818 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1819 +    </ClCompile>    
 45.1820 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlstring.c">
 45.1821 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1822 +    </ClCompile>    
 45.1823 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlunicode.c">
 45.1824 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1825 +    </ClCompile>    
 45.1826 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xmlwriter.c">
 45.1827 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1828 +    </ClCompile>    
 45.1829 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xpath.c">
 45.1830 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1831 +    </ClCompile>    
 45.1832 +    <ClCompile Include="c:\marmalade\modules\third_party\cocos2dx\cocos2dx\platform\third_party\marmalade\libxml2\sources\xpointer.c">
 45.1833 +      <CompileAsWinRT>false</CompileAsWinRT>
 45.1834 +    </ClCompile>    
 45.1835 +  </ItemGroup>
 45.1836 +  
 45.1837 +  <ItemGroup>
 45.1838 +    <Reference Include="Windows">
 45.1839 +      <IsWinMDFile>true</IsWinMDFile>
 45.1840 +    </Reference>
 45.1841 +    <Reference Include="platform.winmd">
 45.1842 +      <IsWinMDFile>true</IsWinMDFile>
 45.1843 +      <Private>false</Private>
 45.1844 +    </Reference>
 45.1845 +  </ItemGroup>  
 45.1846 +  
 45.1847 +  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 45.1848 +  <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsPhone\v$(TargetPlatformVersion)\Microsoft.Cpp.WindowsPhone.$(TargetPlatformVersion).targets" />
 45.1849 +  <ItemGroup>
 45.1850 +  </ItemGroup>
 45.1851 +  <ImportGroup Label="ExtensionTargets">
 45.1852 +  </ImportGroup>
 45.1853 +</Project>
    46.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    46.2 +++ b/vc11xwp/Marmalade.Shell.csproj	Wed Jul 31 19:28:00 2013 +0200
    46.3 @@ -0,0 +1,126 @@
    46.4 +<?xml version="1.0" encoding="utf-8"?><Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    46.5 +  <PropertyGroup>
    46.6 +    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    46.7 +    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    46.8 +    <ProductVersion>10.0.20506</ProductVersion>
    46.9 +    <SchemaVersion>2.0</SchemaVersion>
   46.10 +    <ProjectGuid>{01587A73-431C-A052-82CB-C8DBCBC28941}</ProjectGuid>
   46.11 +    <ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
   46.12 +    <OutputType>Library</OutputType>
   46.13 +    <AppDesignerFolder>Properties</AppDesignerFolder>
   46.14 +    <RootNamespace>MarmaladeShell</RootNamespace>
   46.15 +    <AssemblyName>MarmaladeShell</AssemblyName>
   46.16 +    <TargetFrameworkIdentifier>WindowsPhone</TargetFrameworkIdentifier>
   46.17 +    <TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
   46.18 +    <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
   46.19 +    <SilverlightApplication>true</SilverlightApplication>
   46.20 +    <SupportedCultures>
   46.21 +    </SupportedCultures>
   46.22 +    <XapOutputs>true</XapOutputs>
   46.23 +    <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
   46.24 +    <XapFilename>Amalog_vc11xwp_wp8devtoolset.xap</XapFilename>
   46.25 +    <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
   46.26 +    <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
   46.27 +    <SilverlightAppEntry>MarmaladeShell.App</SilverlightAppEntry>
   46.28 +    <ValidateXaml>true</ValidateXaml>
   46.29 +    <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
   46.30 +    <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
   46.31 +  </PropertyGroup>
   46.32 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
   46.33 +    <DebugSymbols>true</DebugSymbols>
   46.34 +    <DebugType>full</DebugType>
   46.35 +    <Optimize>false</Optimize>
   46.36 +    <OutputPath>Bin\x86\Debug</OutputPath>
   46.37 +    <DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
   46.38 +    <NoStdLib>true</NoStdLib>
   46.39 +    <NoConfig>true</NoConfig>
   46.40 +    <ErrorReport>prompt</ErrorReport>
   46.41 +    <WarningLevel>4</WarningLevel>
   46.42 +  </PropertyGroup>
   46.43 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
   46.44 +    <DebugType>pdbonly</DebugType>
   46.45 +    <Optimize>true</Optimize>
   46.46 +    <OutputPath>Bin\x86\Release</OutputPath>
   46.47 +    <DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
   46.48 +    <NoStdLib>true</NoStdLib>
   46.49 +    <NoConfig>true</NoConfig>
   46.50 +    <ErrorReport>prompt</ErrorReport>
   46.51 +    <WarningLevel>4</WarningLevel>
   46.52 +  </PropertyGroup>
   46.53 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|ARM' ">
   46.54 +    <DebugSymbols>true</DebugSymbols>
   46.55 +    <DebugType>full</DebugType>
   46.56 +    <Optimize>false</Optimize>
   46.57 +    <OutputPath>Bin\ARM\Debug</OutputPath>
   46.58 +    <DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
   46.59 +    <NoStdLib>true</NoStdLib>
   46.60 +    <NoConfig>true</NoConfig>
   46.61 +    <ErrorReport>prompt</ErrorReport>
   46.62 +    <WarningLevel>4</WarningLevel>
   46.63 +  </PropertyGroup>
   46.64 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|ARM' ">
   46.65 +    <DebugType>pdbonly</DebugType>
   46.66 +    <Optimize>true</Optimize>
   46.67 +    <OutputPath>Bin\ARM\Release</OutputPath>
   46.68 +    <DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
   46.69 +    <NoStdLib>true</NoStdLib>
   46.70 +    <NoConfig>true</NoConfig>
   46.71 +    <ErrorReport>prompt</ErrorReport>
   46.72 +    <WarningLevel>4</WarningLevel>
   46.73 +  </PropertyGroup>  
   46.74 +  <ItemGroup>
   46.75 +    <Compile Include="App.xaml.cs">
   46.76 +      <DependentUpon>App.xaml</DependentUpon>
   46.77 +    </Compile>
   46.78 +    <Compile Include="DummyMainPage.xaml.cs">
   46.79 +      <DependentUpon>DummyMainPage.xaml</DependentUpon>
   46.80 +    </Compile>
   46.81 +    <Compile Include="Properties\AssemblyInfo.cs"/>
   46.82 +    <Compile Include="Resources\AppResources.Designer.cs">
   46.83 +      <AutoGen>True</AutoGen>
   46.84 +      <DesignTime>True</DesignTime>
   46.85 +      <DependentUpon>AppResources.resx</DependentUpon>
   46.86 +    </Compile>
   46.87 +  </ItemGroup>
   46.88 +  <ItemGroup><Content Include="s3e_native.dll"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="s3e_native.winmd"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="libEGL.dll"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="libGLESv2.dll"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="Marmalade.App.dll"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="s3eSurface_pixelshader.cso"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="s3eSurface_vertexshader.cso"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\Assets\WP8_Icon_Or_Tile_336x336_0_2.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\Assets\WP8_Icon_Or_Tile_99x99_0_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\build_temp\Assets\WP8_Icon_Or_Tile_159x159_0_1.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="Amalog.s86"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="Amalog.lic"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="app.icf"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="s3e.icf"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="s3e_splash.jpg"><CopyToOutputDirectory>Always</CopyToOutputDirectory></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\config.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\config.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QAnalytics.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QAnalytics.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Default.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Default.fnt</Link></Content><Content Include="c:\marmalade\extensions\s3efacebook\source\iphone\facebook-ios-sdk\FacebookSDK.framework\Versions\A\Resources\FacebookSDKResources.bundle\FBDialog\images\close.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>FacebookSDKResources.bundle\FBDialog\images\close.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\1443bfa7.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\1443bfa7.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\mobdebug.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>mobdebug.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\scenemain.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>scenemain.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial-96pt_bold.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial-96pt_bold.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QScene.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QScene.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QAtlas.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QAtlas.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\ComicSans24_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\ComicSans24_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Default_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Default_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\ltn12.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\ltn12.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\class.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\class.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QAnimation.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QAnimation.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\butthelp.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\butthelp.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_smbld_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_smbld_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\socket.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\socket.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_bold_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_bold_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\a2b7f161.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\a2b7f161.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QParticles.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QParticles.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\ComicSans24.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\ComicSans24.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-blanc_36pt.gxfont"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-blanc_36pt.gxfont</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\sceneabout.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>sceneabout.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\eb3143cf.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\eb3143cf.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QVec2.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QVec2.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_smbld.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_smbld.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttforw.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttforw.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\screenshot1-768.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\screenshot1-768.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QDraw.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QDraw.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-blanc_36pt.tga"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-blanc_36pt.tga</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QLsqlite3.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QLsqlite3.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-36pt_bold_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-36pt_bold_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\mime.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\mime.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\splashscreen.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\splashscreen.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QTiledMap.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QTiledMap.lua</Link></Content><Content Include="c:\marmalade\extensions\s3ewebview\s3eWebView.js"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>s3eWebView.js</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\openquick.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\openquick.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QRect.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QRect.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QJoint.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QJoint.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QLines.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QLines.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QBilling.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QBilling.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QLabel.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QLabel.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\splashtest.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\splashtest.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial32.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial32.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial18.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial18.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\Qjson.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\Qjson.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QNUI.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QNUI.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\quick.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\quick.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QLocation.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QLocation.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\initls.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\initls.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\dbg.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\dbg.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QNode.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QNode.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\main.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>main.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttno.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttno.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttadd.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttadd.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\ftp.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\ftp.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_bold.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_bold.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-36pt_bold.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-36pt_bold.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\a2c0a338.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\a2c0a338.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\development.icf"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>development.icf</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QCompass.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QCompass.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial-96pt_bold_1.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial-96pt_bold_1.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QDirector.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QDirector.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\Amasplash.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\Amasplash.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QDebug.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QDebug.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\url.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\url.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttdel1.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttdel1.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\butback.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\butback.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QFacebook.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QFacebook.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\textures\skyepic.jpeg"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>textures\skyepic.jpeg</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\02871b50.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\02871b50.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\smtp.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\smtp.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\68bd2511.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\68bd2511.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\http.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\http.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttcanc.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttcanc.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-32pt_smbld_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-32pt_smbld_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-92pt_smbld.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-92pt_smbld.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\amaico_114.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\amaico_114.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QRectangle.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QRectangle.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial32_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial32_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttyes.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttyes.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QVideo.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QVideo.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QDevice.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QDevice.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\textures\skynorm.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>textures\skynorm.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-92pt_smbld_1.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-92pt_smbld_1.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\e7931291.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\e7931291.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QConfig.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QConfig.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QTimer.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QTimer.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QWebView.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QWebView.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\4c5a10f0.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\4c5a10f0.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QAudio.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QAudio.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\amaico_99.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\amaico_99.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\dd7e55d5.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\dd7e55d5.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\35020d25.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\35020d25.bin</Link></Content><Content Include="c:\marmalade\extensions\s3efacebook\source\iphone\facebook-ios-sdk\FacebookSDK.framework\Versions\A\Resources\FacebookSDKResources.bundle\FBDialog\images\close@2x.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>FacebookSDKResources.bundle\FBDialog\images\close@2x.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttdel2.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttdel2.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\08938ac6.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\08938ac6.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\json\json.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\json\json.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\584056c3.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\584056c3.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\73936b7a.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\73936b7a.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\f9726e28.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\f9726e28.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QFont.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QFont.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_smbld_1.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_smbld_1.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\common.icf"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>common.icf</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QCircle.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QCircle.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-92pt_smbld_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-92pt_smbld_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\icon4.jpg"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\icon4.jpg</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QEvent.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QEvent.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QColor.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QColor.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial-96pt_bold_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial-96pt_bold_0.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QVector.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QVector.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QPhysics.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QPhysics.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QAds.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QAds.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\icon3.svg"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\icon3.svg</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\b08947f2.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\b08947f2.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\icon2.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\icon2.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QCrypto.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QCrypto.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QLuasocket.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QLuasocket.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-64pt_smbld_2.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-64pt_smbld_2.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QTween.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QTween.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QSystem.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QSystem.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\splashscreen.jpg"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>splashscreen.jpg</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\scenehelp.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>scenehelp.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\icon5.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\icon5.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\marmalade\QBrowser.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\marmalade\QBrowser.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\buttinfo.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\buttinfo.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\images\butexclaim.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>images\butexclaim.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources-ram\shader_bin_wp8\424e48b8.bin"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>shader_bin_wp8\424e48b8.bin</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\lua_socket\tp.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\lua_socket\tp.lua</Link></Content><Content Include="c:\marmalade\extensions\s3efacebook\source\iphone\facebook-ios-sdk\FacebookSDK.framework\Versions\A\Resources\FacebookSDKResources.bundle\FBDialog\images\fbicon.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>FacebookSDKResources.bundle\FBDialog\images\fbicon.png</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\quicklua\QSprite.lua"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>quicklua\QSprite.lua</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\SegoeUI-32pt_smbld.fnt"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\SegoeUI-32pt_smbld.fnt</Link></Content><Content Include="c:\Users\Michel\Documents\Quick\Projects\Amalog\resources\fonts\Arial18_0.png"><CopyToOutputDirectory>Always</CopyToOutputDirectory><Link>fonts\Arial18_0.png</Link></Content></ItemGroup>
   46.89 +  <ItemGroup>
   46.90 +    <Reference Include="Marmalade.App">
   46.91 +      <HintPath>.\Marmalade.App.dll</HintPath>
   46.92 +    </Reference>
   46.93 +  </ItemGroup>
   46.94 +  <ItemGroup>
   46.95 +    <ApplicationDefinition Include="App.xaml">
   46.96 +      <SubType>Designer</SubType>
   46.97 +      <Generator>MSBuild:Compile</Generator>
   46.98 +    </ApplicationDefinition>
   46.99 +  </ItemGroup>
  46.100 +  <ItemGroup>
  46.101 +    <None Include="Properties\AppManifest.xml"/>
  46.102 +    <None Include="Properties\WMAppManifest.xml">
  46.103 +      <SubType>Designer</SubType>
  46.104 +    </None>
  46.105 +  </ItemGroup>
  46.106 +  <ItemGroup>
  46.107 +    <EmbeddedResource Include="Resources\AppResources.resx">
  46.108 +      <Generator>PublicResXFileCodeGenerator</Generator>
  46.109 +      <LastGenOutput>AppResources.Designer.cs</LastGenOutput>
  46.110 +    </EmbeddedResource>
  46.111 +  </ItemGroup>
  46.112 +  <ItemGroup>
  46.113 +    <Page Include="DummyMainPage.xaml">
  46.114 +      <SubType>Designer</SubType>
  46.115 +      <Generator>MSBuild:Compile</Generator>
  46.116 +    </Page>
  46.117 +  </ItemGroup>
  46.118 +  <Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets"/>
  46.119 +  <Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets"/>
  46.120 +  <ProjectExtensions/>
  46.121 +  <PropertyGroup><PreBuildEvent>
  46.122 +set XDEBUGFLAG=
  46.123 +set XARCHFLAG=x86
  46.124 +if &quot;$(ConfigurationName)&quot;==&quot;Debug&quot; set XDEBUGFLAG=-d
  46.125 +if &quot;$(PlatformName)&quot;==&quot;ARM&quot; set XARCHFLAG=arm
  46.126 +
  46.127 +&quot;c:\marmalade\s3e\bin\s3e_deploy&quot; --exclude-package --exclude-assets --device-debugging -n -o wp8 -a wp8-%XARCHFLAG% %XDEBUGFLAG% $(ProjectDir)deploy_config.py --outputdir=$(ProjectDir)
  46.128 +</PreBuildEvent></PropertyGroup>
  46.129 +</Project>
  46.130 \ No newline at end of file

mercurial