pico-8 cartridge // http://www.pico-8.com version 8 __lua__ greets=" greetings to haujobb, conspiracy, mercury, scene world, abyss-connection, digitac, poo-brain, moods plateaux, desire, nuance, fairlight, kewlers, razor 1911, still, black maiden, gaspode, farbrausch, asd slow computers that are in 2016 we love the demoscene so much still in 2016 deadline, berlin 2016" core_cut_sc=732 function restart() music(1) t=1 scn_t=0 scene=1 scn_max=3 shots={} ship={} ship.x=64 ship.y=64 core_text="" core_colors={8,14,1} end restart() function proto() --t=1965 t=1556 initpart2() end function initpart2() music(16) end function _update() t+=1 scn_t+=1 update_shots() if btnp(0) then proto() end if t==1 then scene=1 end if t==core_cut_sc then core_text="i am the core" core_colors={12,1,2} scene=2 end if t==(732+200) then scn_t=0 scene=3 end if t==1148 then core_text="" core_colors={8,14,1} scene=4 end if t==(1148+200) then scn_t=0 scene=5 end if t==1556 then scene=6 initpart2() end if t==1965 then scn_t=0 scene=7 end if t==3874 then scene=8 end end function _draw() cls() if scene == 1 then flightscene() end if scene == 2 then core() end if scene == 3 then chat_one() end if scene == 4 then core() end if scene == 5 then chat_two() end if scene == 6 then about() end if scene == 7 then greetings() end if scene == 8 then restart() end --print(t,10,120,10) end function about() scroll(32) draw_rotated(4*8,8,16,16,64,58,t/160,sin(t/200)*2+4) print("code/gfx", 16, 104, 8) print("music", 66, 104, 8) print("nodepond", 16, 114, 15) print("gruber_music", 66, 114, 15) end function greetings() mt=scn_t/120 for i=0,32 do -- too lazy to solve this more graceful for j=0,16 do pset(sin(mt+i/12)*8+i*4, cos(mt+j/12)*8+j*8,8) end end local calc_t=sin(t/30)*25 print(greets, 25-scn_t+calc_t/6, 86, 12) print("pico-8 demovibes", calc_t + 34, 32, 13) end function flightscene() rectfill(0,0,128,128,1) draw_shots() ship.x=sin(t/255)*60 + 60 ship.y=sin(t/225)*50 + 50 if t%16 < 6 then spr(16, ship.x, ship.y) else spr(17, ship.x, ship.y) end if t%4 < 1 and t < 312 then shoot() -- shoot comes again at t=3670 end if scn_t>312 then whiteblend() move_enemy() end end function move_enemy() local near = core_cut_sc-scn_t spr(22, 105-near/2, -7+near/3, 2,2) end function whiteblend() -- one beat = ca. 26 ticks if t%26 < 3 then rectfill(0,0,128,128,7) end end function shoot() local sh={} sh.x=ship.x sh.y=ship.y add(shots,sh) end function update_shots() for sh in all(shots) do sh.x+=6 end end function draw_shots() for sh in all(shots) do spr(18,sh.x,sh.y) end end function chat_one() print("theese endless skies", 10, 10, 12) print("are falling down on you", 10, 18, 12) unveil(scn_t/3, 0) rectfill(0,128-scn_t/2,128,128,12) if scn_t%32<16 then rectfill(10,26,14,30,8) end end function chat_two() print("you have that one dream,", 10, 10, 14) print("still to remember...", 10, 18, 14) unveil(scn_t/3, 0) rectfill(0,128-scn_t/2,128,128,14) if scn_t%32<16 then rectfill(10,26,14,30,8) end end function unveil(px, b_col) rectfill(0,px,128,128, b_col) end function core() scroll(core_colors[3]) for i=0,16 do local x1=sin((t+i)/90)*30 + 30 local x2=cos((t+i)/90)*30 + 30 local x3=sin((t+i)/60)*6 + 30 local x4=sin((t+i)/300)*9 + 30 rectfill(50+x1,0+i*8, 60+x1,80+i*8, core_colors[1]) rectfill(50+x1,0+i*8, 60+x2,80+i*8, core_colors[2]) end print(core_text, 37, 40, 0) end function scroll(sprnum) for i=0,256+(2*16) do local x=i%18 local y=flr(i/18) spr(sprnum, -8+(x*8-t)%(128+16), (y*8)%128) end end function drawpattern(sprnum) for i=0,256+(2*16) do local x=i%18 local y=flr(i/18) spr(sprnum, -8+(x*8-t)%(128+16), (y*8)%128) end end --[[ // quick and dirty way of rotating a sprite sx = spritecheet x-coord sy = spritecheet y-coord sw = pixel width of source sprite sh = pixel height of source sprite px = x-coord of where to draw rotated sprite on screen py = x-coord of where to draw rotated sprite on screen r = amount to rotate (radians) s = 1.0 for normal scale, 0.5 for half, etc ]] function draw_rotated(sx,sy,sw,sh,px,py,r,s) -- loop through all the pixels for y=sy,sy+sh,1 do for x=sx,sx+sw,1 do -- get source pixel color col = sget(x,y) -- skip transparent pixel (zero in this case) if (col != 0) then -- rotate pixel around center local xx = (x-sx)-sw/2 local yy = (y-sy)-sh/2 local x2 = (xx*cos(r) - yy*sin(r))*s local y2 = (yy*cos(r) + xx*sin(r))*s -- translate rotated pixel to where we want to draw it on screen local x3 = flr(x2+px) local y3 = flr(y2+py) -- use rectfill if scale is > 1, otherwise just pixel it if (s >= 1) then local w = flr(x2+px+s) local h = flr(y2+py+s) rectfill(x3,y3,w,h,col) else pset(x3,y3,col) end end end end end __gfx__ 0000000088889888dddddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000088899988ddd0dddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0070070088999998dddddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0007700089999999dddddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0007700099999998ddddd0dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0070070089999988dddddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000088999888dd0ddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000088898888dddddddd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000a00a00a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000 98e0000089e0000000000000000cccc900a0a00a0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000 02eee6bb02eee6bb0aa98888009c99cc000aa000a00a00000000cccccccc00000000000000000000000000000000000000000000000000000000000000000000 8922277698222776a9999998cc9c00000000000000a0a000000cc000000cc0000000000000000000000000000000000000000000000000000000000000000000 02220000022200000000000099900000000a000000aa000000c000000600c0000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000aaa00000000000000c000000600c0000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000aaa0000c000000060c0000000000000000000000000000000000000000000000000000000000000000000 5555555500000000000000000000000000000000000a0000000c00000000c0000000000000000000000000000000000000000000000000000000000000000000 555555550009900000000900000000000000000000000000000c00000000c0000000000000000000000000000000000000000000000000000000000000000000 555555550099990000000990000000000000800080000000000c0000000cc0000000000000000000000000000000000000000000000000000000000000000000 555b35550099009009000090000000000008080088000000000cc0000cc000000000000000000000000000000000000000000000000000000000000000000000 55bf5355000900900999009000000000000808008080000000000ccccc0000000000000000000000000000000000000000000000000000000000000000000000 55b55355000099990900999000000000000080000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000 55533555000000000900090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 55555555000000000999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 __gff__ 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 __map__ 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 __sfx__ 010d0020042400422004240042201024004220042400e2400424004220042400b24004240042200424010240042401024004240042200924004220042400e2400424004220042400b24004240042200e24010220 010d0020002400022000240002201024000220002400e2400024000220002400b24000240002200024010240002401024000240002200924000220002400e2400024000220002400b24000240002200e24010220 010d00003f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f3133f313 010d00000c0430001500000000000c0430001500000000000c0430001500000000000c0430001500000000000c0430001500000000000c0430001500000000000c0430001500000000000c043000150000000000 010d00000c0430001500000000003c6103061521323213230c0430001500000000003c6103061521323213030c0430001500000000003c6103061500000000000c0430001521323213233c610306152132321303 010d00001c0062300628006230063f3033f3033f3033f3033f3033f3033f3033f3031c0062300628006230063f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f215 010d00003f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f215 010d00003c3103b311393113831137311363113531134311333113231131311303112f3112e3112d3112c3112b3112a3112931128311273112631125311243152631426310263102632026320263202632026320 010d0000263302633026330263402634026340263402635026350263502634026340263402633026332263322632226322263222631226312263150b00126350283512835028350283502335023350263501c350 010d0020002550025500255002551024000220002400e2400024000220002400b24000240002200024010240002401024000240002200924000220002400e2400024000220002400b24000240002200e24010220 010d00001c3501c3501c3501c3501c3501c3501c3501c3501c3501c3501c3401c3401c3401c3401c3401c3301c3301c3301c3301c3301c3301c3301c3301c3301c3301c3221c3221c3221c3221c3121c3121c315 010d00003f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2153f2152311423110231102311023110231102311023110 010d0000231202312023120231202312023120231202312023120231202312023120231202311023112231122311223112231122311223112231150b1012a1402b1412b1402b1402b1402a1402a140281402f140 010d00002f1402f1402f1402f1402f1402f1402f1402f1402f1402f1402f1402f1402f1402f1302f1302f1302f1302f1302f1302f1302f1302f1302f1302f1302f1302f1222f1222f1222f1222f1122f1122f115 010d00000c043000153f2153f2153c6103061521323213230c043000153f2153f2153c61030615213233f2150c043000153f2153f2153c610306153f2153f2150c0430001521323213233c61030615213233f215 010d00202b5252a52528525235252b5252a52528525235252b5252a52528525235252b5252a52528525235252b5252a52528525235252b5252a52528525235252b5252a52528525235252b5252a5252852523525 010d00202f2253722536225342252f2253722536225342252f2253722536225342252f2253722536225342252f2253722536225342252f2253722536225342252f2253722536225342252f225372253622534225 010d0020022400222002240022201024002220022400e2400224002220022400b24002240022200224010240022401024002240022200924002220022400e2400224002220022400b24002240022200e24010220 0108001913025170251c0251e0251f02523025280252a0252b0252f0253402536025370253b02536025340252f0252b0252a02528025230251f0251e0251c02517025130251e0251c02517025130251e0251c025 010d00003c3103b311393113831137311363113531134311333113231131311303112f3112e3112d3112c3112b3112a311293112831127311263112531124311233112231121311203111f3111e3111d3111c315 0107001913025170251c0251e0251f02523025280252a0252b0252f0253402536025370253b02536025340252f0252b0252a02528025230251f0251e0251c02517025130251e0251c02517025130251e0251c025 0106001913025170251c0251e0251f02523025280252a0252b0252f0253402536025370253b02536025340252f0252b0252a02528025230251f0251e0251c02517025130251e0251c02517025130251e0251c025 010d0000004000040000400004002a4502a4402a442234502b4502b4402b442214502144021442264502845128450284421e4501e440264502644028450284402f4512f4502f4422d4502d4502d4423245132440 010d00002f4502f4402f4422645026440264422b4502d4412d4402d4402d4422d442234402344023442214502b4512b4402a4502a440264502644028450284402844228442234502344023440234422344221450 010d00001c4501e4411e4401f4501f4401f4421c4501c4401c4401c4401c4401c4421c4421c4351c402174302145121440214421e4501e4401e44226451264402345023440234402344023442234422145021440 010d00002b4502b4402b4422a4502a4402a442264502644028450284402844028440284402844228442324502f4502f4402f4402f4402f4422f4422d4502d4402b4502b4402a4502a44026450264402145021440 010d00000010000100001000010000100001002a1302a1202a122231302b1302b1202b122211302112021122261302813128120281221e1301e120261302612028130281202f1312f1202f1222d1302d1202d122 010d000032130321202f1302f1202f1222613026120261222b1302d1312d1202d1202d1222d122231302312023122211302b1312b1202a1302a12026130261202813028120281222812223130231202312023122 010d000023122211201c1301e1211e1201f1301f1201f1221c1301c1201c1201c1201c1201c1221c1221c1251c102171102113121120211221e1301e1201e1222613126120231302312023120231202312223122 010d000021130211202b1302b1202b1222a1302a1202a122261302612028130281202812028120281202812228122321302f1302f1202f1202f1202f1222f1222d1302d1202b1302b1202a1302a1202613026120 010d0000001000010000100001002613026120261221f1302813028120281222a1302a1202a1221f1301f1301f1201f1221a1301a12023130231201f1301f1202b1312b1202b1222a1302a1202a1222313123120 010d00002b1302b1202b122231302312023122281302a1212a1202a1202a1222a1222b1302b1202b1222a1302813128120261302612023130231201f1301f1201f1221f1222b1302b1202b1202b1222b1222a130 010d00002b1302d1212d1202f1302f1202f1222b1302b1202b1202b1202b1202b1222b1222b1251c1021f1201e1311e1201e1221a1301a1201a12223131231201f1301f1201f1201f1201f1221f1222a1302a120 010d00002313023120231222113021120211221e1301e1201f1301f1201f1201f1201f1201f1221f1222f1302b1302b1202b1202b1202b1222b1222a1302a1202813028120261302612023130231201e1301e120 010d00002b4502b4402a4502a440264502644021450214402b4502b4402a4502a440264502644021450214402b4502b4402a4502a440264502644021450214402b4502b4402a4502a4402b4502b4402a4502a440 010d00002813028120261302612023130231201e1301e1202813028120261302612023130231201e1301e1202813028120261302612023130231201e1301e1202813028120261302612023130231201e1301e120 010d000021130211202b1302b1202a1302a120261302612021130211202b1302b1202a1302a120261302612021130211202b1302b1202a1302a120261302612021130211202b1302b1202a1302a1202613026120 010d00001e3201e3102832028310263202631023320233101e3201e3102832028310263202631023320233101e3201e3102832028310263202631023320233101e3201e310283202831026320263102332023310 010d00001024510245102451024510245102451024510245102451024510245102451024510245102451024510245102451024510245102451024510245102451024510245102451024510245102451024510245 010d00000424504245042450424504245042450424504245042450424504245042450424504245042450424504245042450424504245042450424504245042450424504245042450424504245042450424504245 010d00000423504235042350423504235042350423504235042350423504235042350423504235042350423504235042350423504235042350423504235042350423504235042350423504235042350423504235 010d00000422504225042250422504225042250422504225042250422504225042250422504225042250422504215042150421504215042150421504215042150421504215042150421504215042150421504215 010d00002b1302b1202a1302a120261302612021130211202b1302b1202a1302a120261302612021130211202b1302b1202a1302a120261302612021130211202b1302b1202a1302a1202b1302b1202a1302a120 010d00002b1202b1102a1202a110261202611021120211102b1202b1102a1202a110261202611021120211102b1202b1102a1202a110261202611021120211102b0202b0102a0202a0102b0202b0102a0202a010 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 __music__ 00 00410243 00 00450244 01 01450244 00 01020305 00 00060407 00 00060408 00 0106040a 00 0106044c 00 00040b07 00 000e0c08 00 010e0d0a 00 010e500f 00 004e130f 00 004e100f 00 0113100f 00 1112100f 00 000e1216 00 010e1217 00 110e1218 00 000e1219 00 000e1a16 00 010e1b17 00 110e1c18 00 000e1d19 00 010e1e16 00 110e1f17 00 000e2018 00 000e2119 00 010e2223 00 110e2322 00 00242322 00 00242322 00 25242322 00 25262322 00 12272322 00 12281422 00 1228022a 00 1229022b 00 0012026a 02 0012026a 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344