pico-8 cartridge // http://www.pico-8.com version 8 __lua__ t=0 c=0 st=0 lc=0 incr=1 gry=0 gry2=0 stars={} s_limit=600 s_count=0 ra=0 m=0 fc={6,7,12,12} w=0 r=1 koelsch = {} cursorx = 6 cursory = 110 numpoints=64 radius=84 a=0 tick=49 --asking on channel 04 for the current row to count patterns for scene sync function sync() this_stat_23=stat(23) if prev_stat_23!=this_stat_23 then prev_stat_23=this_stat_23 if this_stat_23==31 then st+=1 end end end --loading screen function scnld() for y=0,127,3 do rectfill(0,y,127,y-3,12+rnd(2)) end rectfill(5,5,122,122,1) print("loading very little ram ",8,8,6) print("evoking party "..rnd(),8,18,6) pal(rnd(3)+1,rnd(2)+1,1) if stat(23)>=16 then r=rnd l=4096 memset(24576+r(l),r(l),r(l)) end end --warning label function warning() local c=7 if stat(23)==4 or stat(23)==12 or stat(23)==20 or stat(23)==28 then c=8 end print("˜˜˜˜˜warning˜˜˜˜˜",10,2,c) print("˜˜˜˜˜warning˜˜˜˜˜",10,121,c) print("viewer discretion is advised",8,22,7) print("intoxication recommended",16,34,8) line(16,40,110,40,8) rect(33,57,95,86,7) sspr(72,0,12,7,39,65,18,14) rect(37,63,58,80,7) print("rated cd",61,61,7) print("crappy",61,69,7) print("demo",61,77,7) end --first scene function kalk() pal() for i=5,50,5 do local c=10+sin((t+i)*0.09)*3 line(64+sin((t+i)*0.08)*64,0,64-sin((t+i)*0.08)*64,127,c) end for i=20,numpoints,8 do for j=20,numpoints,8 do angle=6.28/numpoints for k = 20,numpoints,8 do x = cos(t*0.04+ angle * i ) * radius; y = sin(t*0.04+ angle * i ) * radius; if j != i then line(64-x,-40+y,110-i,70+j,8+sin((t+i)*0.08)) end end end end rectfill(0,0,127,27,2) rectfill(0,101,127,127,2) for i=0,27,4 do for j=1,127,4 do line(j,0,j,27,1) line(0,i,127,i,1) pset(rnd(t*20+i)+sin(t*0.08)*20,i,7) end end for i=101,127,4 do for j=1,127,4 do line(j,101,j,127,1) line(0,i,127,i,1) pset(rnd(t+i)*10+sin(t*0.08)*20,i,7) end end print("we celebrate 20 years evoke",10,14,7) print("dauerwerbedemo",36,2,6+sin(t*0.08)) line(0,27,127,27,6) line(0,101,127,101,6) circfill(64,64,32,0) circ(64,64,32,8) sspr(0,0,27,18,51,36) sspr(28,0,28,18,51,54) sspr(0,115,28,18,57,72) sspr(35,118,35,08,47,75) sspr(75,118,53,08,37,84) print("after years of research in bars",2,108,7) print("and toilets, he's here!",18,118,7) end --second scene lightning with sync function bltz() if stat(23)==4 or stat(23)==12 or stat(23)==20 or stat(23)==28 then x2=64 for j=0,4 do x=x2 for i=7,11 do l=x x+=rnd(16)-7.5 line(x,i*9+9,l,i*9,12+rnd(4)) line(i*9+9,x,i*9,l,12+rnd(4)) end end end if stat(23)==4 or stat(23)==12 or stat(23)==20 or stat(23)==28 then x2=64 for j=4,0,-1 do x=x2 for i=12.4,3,-1 do l=x x-=rnd(16)-7.5 line(x,i*9-9,l,i*9,12+rnd(4)) line(i*9-9,x,i*9,l,12+rnd(4)) end end end end --second scene sprite logo function sprl() lc=lc+.5 local dy=0+lc if dy>=70 then dy=70 end sspr(0,19,127,dy,0,28) if dy==70 then print("20yrs evoke",42,88,12) print("2017",56,97,12) end end --second scene background spiral function spyro() incr=(incr+0.0002)%360 x1=64 y1=64 length=1 angle=incr for i=0,100 do x2=x1+cos(angle*1.2)*length y2=y1+sin(angle*1.2)*length line(x1,y1,x2,y2,12+rnd(2)) x1=x2 y1=y2 length=length+1 angle=(angle+incr)%360 end local bass=8 if stat(23)==0 or stat(23)==7 or stat(23)==8 or stat(23)==10 or stat(23)==11 or stat(23)==15 or stat(23)==16 or stat(23)==23 or stat(23)==24 or stat(23)==26 or stat(23)==27 or stat(23)==29 or stat(23)==31 then bass=6 end circfill(64,64,48,0) circ(64,64,48,bass) end --third scene street function strt() sspr(0,88,64,32,0,20,130,56) rectfill(0,64,127,127,0) for i=64,128,16 do line(0,i+gry,127,i+gry,12) end if gry>=16 then gry=0 end gry+=1 if gry2>=32 then gry2=0 end gry2+=0.5 local bass=12 if stat(23)==0 or stat(23)==7 or stat(23)==8 or stat(23)==10 or stat(23)==11 or stat(23)==15 or stat(23)==16 or stat(23)==23 or stat(23)==24 or stat(23)==26 or stat(23)==27 or stat(23)==29 or stat(23)==31 then bass=8 end local snare=12 if stat(23)==4 or stat(23)==12 or stat(23)==20 or stat(23)==28 then snare=9 end line(64,64,64,127,bass) line(48,64,24,127,snare) line(36,64,0,112,bass) line(24,64,0,88,snare) line(12,64,0,72,bass) line(80,64,100,127,snare) line(92,64,127,112,bass) line(104,64,127,88,snare) line(116,64,127,72,bass) line(0,64,127,64,12) local grtz01=" abyss-connection poo-brain " for i=1,32 do print(sub(grtz01,i,i),5+i*4,120,1+sin((t-i)/10)*0.04) end rectfill(40+sin(t/20)*5-cos(t/25)*3,92+sin(t/24)*4-cos(t/20)*4,85+sin(t/20)*5-cos(t/25)*3,108+sin(t/24)*4-cos(t/20)*4,0) sspr(64,89,64,26,32+sin(t/20)*5-cos(t/25)*3,84+sin(t/24)*4-cos(t/20)*4) print("drive today-live in the future",5,10,5) print("drive today-live in the future",5,11,7) end --third scene background function grid() circfill(64+sin((t/60))*46,64+cos((t/60))*28,16,8) circfill(64+sin((t/60))*46,64+cos((t/60))*28,14,9) circfill(64+sin((t/60))*46,64+cos((t/60))*28,12,8) print("cologne",51+sin((t/60))*46,62+cos((t/60))*28,9) print("the new lambodino 5711",20,2,5) print("the new lambodino 5711",20,3,7) end --star background function starfield() for x=0,10,1 do new_star() end update_stars() for s in all(stars) do pset(s.x+64,s.y+64,s.c) end end --fourth scene spriteworm function worm() for i=4,48 do pal(12,12-cos((t+i)/100)*2-sin((t)*0.008)*2) sspr(56,0,8,8,61+cos((t+i)/64)*28+sin((t+i)/20)*30,50+cos((t+i)/20)*15+sin((t+i)/12),8+sin((t+i)/13)*3,8+sin((t+i)/13)*3) pal() end end --fourth scene border function wormborder() rectfill(0,0,127,18,0) rectfill(0,107,127,127,0) local c=rnd(11)+3 for i=4,8 do line(0,9+sin((t+i)/10)*9,127,9+sin((t+i)/10)*9,7+sin(t/100)*6) end --kalk logo sprites sspr(35,118,93,7,1,5) sspr(90,0,38,18,96,2,31,12) line(0,18,127,18,12) line(0,89,127,89,12) for i=90,127 do memcpy( 0x6000+64*i, 0x6000+64*(46+flr( sin((t+i+rnd(1))/12)*4+ cos((t+i+rnd(2))/50)*6.2 )),64) end end function new_star() if(s_count>=s_limit)then return end local s={} s.z=1 s.a=rnd(1) s.d=rnd(200)+2 s.x=cos(s.a/2)*s.d s.y=sin(s.a/2)*s.d s.xs=0 s.ys=0 s.s=0 s.c=7 s_count+=1 add(stars,s) end function update_stars() ra=(ra+0.003)%1 m=(m+0.003)%1 for s in all(stars) do s.z+=s.z*0.05 s.s+=0.2 s.c=fc[min(flr(s.s),3)] s.xs+=cos(m)*0.02 s.ys+=sin(m)*0.02 s.x=((cos(s.a+sin(r)*0.09)+s.xs)*s.d)*s.z s.y=((sin(s.a+sin(r)*0.09)+s.ys)*s.d)*s.z if(s.z>10)then del(stars,s) s_count-=1 end end end dec2hex={[0]='0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'} hex2dec={["0"]=0,["1"]=1,["2"]=2,["3"]=3,["4"]=4,["5"]=5,["6"]=6,["7"]=7,["8"]=8,["9"]=9,["a"]=10,["b"]=11,["c"]=12,["d"]=13,["e"]=14,["f"]=15} function decompress_spsh(str,toscreen) local hline if toscreen then hline=function(cur,l,c) local x1,y1=cur%128,flr(cur/128) cur+=l local x2,y2=cur%128,flr(cur/128) if y1==y2 then rectfill(x1,y1,x2,y1,c) else rectfill(x1,y1,127,y1,c) rectfill(0,y2,x2,y2,c) end end else hline=function(cur,l,c) for i=cur,cur+l-1 do sset(i%128,i/128,c) end end end local cur=0 local k=#str for lin=1,k,2 do local c=hex2dec[sub(str,lin,lin)] local l=hex2dec[sub(str,lin+1,lin+1)]+1 hline(cur,l,c) cur+=l end end --fifth scene background function discobg() for y=12,25,5 do for x=0,128,5 do rect(x,y,x+abs(2),y+abs(2),1) end end decompress_spsh(frames[flr(t)%#frames+1],false) print("call 555-nippes now!",24,4,12+sin(t*0.08)*2) sspr(74,0,54,92,74,35) sspr(74,0,54,92,0,35,54,93,true) circfill(63,64,24,7) sspr(77,68,47,20,41,54) rectfill(0,100,127,127,0) for y=101,120,5 do for x=0,128,5 do rect(x,y,x+abs(2),y+abs(2),1) end end line(0,28,127,28,12) line(0,99,127,99,12) end --fifth scene dancing sprites and stuff function disco() for i=0,.5,.02 do for j=0,.5,.02 do local y=64+cos(i)*25 local x=64+cos(j-w)*sin(i)*25 pset(x,y,12+cos(t*0.4)*1+sin((t+i)*0.4)*3) end end local flp=false if stat(23)>=4 and stat(23)<12 or stat(23)>=20 and stat(23)<28 then flp=true else flp=false end sspr(0,0,72,125,28+sin(t*0.08)*26,74+sin(t*0.8)*3,73,120,flp) for i=10,110,20 do sspr(0,0,72,125,i+sin((t*i)*0.0008)*16,11+sin((t*i)*0.8)*2,9,16) end local grtz02="darklite trsi jco dss luli" for i=1,32 do print(sub(grtz02,i,i),i*4-1+10,122,1+sin((t-i)/4)*0.04) end end --scene 06 function features() print("digital compass\129lazer hud",14,5,12) print("koelsch holder \129chrome^25",14,13,12) print("neon sunglasses\129sax solos",14,21,12) end function buynow() print("order now and get a free",0,106,7) print("lobster costume!",16,114,7) print("for a limited time only!",0,122,8) sspr(74,0,54,50,98,100,30,25) rectfill(99,119,127,127,12) rect(98,119,128,128,7) print("06."..tick,104,122,7) rectfill(125,120,127,127,12) end function plasma() local bx=0 local by=0 local r=(cos(a)*0.005)+0.006 local vx=cos(a)*r+6 local vy=sin(a)*r local py=0 local f=1 for y=30,98 do local px=bx py=by for x=0,128 do local c=abs(cos(px)*sin(py)*3)+16 pset(x,y,c) px+=vx*f py+=vy/f end f+=0.04 bx-=vy by+=vx end line(0,30,127,30,7) line(0,98,127,98,7) end --ending screen function laber() print("this short commercial break",10,2,7) print("was brought to by",30,10,7) print("attention whore",34,18,8) line(34,24,92,24,8) print("any resemblance to a company or",2,38,12) print("person is purely coincidental.",4,46,12) print("code, sfx & gfx by bod",20,66,7) print("sprt compressor by trasevol_dog",2,74,7) print("special thanks to adamj/movsd",6,86,12) print("‹ have some koelsch ‘",18,120,7) end function mk_koelsch(x,y,init_size,col) local k = {} k.x=x k.y=y k.col=col k.width = init_size k.width_final = init_size + rnd(1)+.5 k.t=0 k.max_t = 50+rnd(50) k.dx = (rnd(.8)-.4) k.dy = rnd(.1) k.ddy = .008 add(koelsch,k) return k end function mv_koelsch(kp) if (kp.t > kp.max_t) then del(koelsch,kp) end if (kp.t > kp.max_t) then kp.width +=.5 kp.width = min(kp.width,kp.width_final) end kp.x = kp.x + kp.dx kp.y = kp.y + kp.dy kp.dy= kp.dy- kp.ddy kp.t = kp.t + 0.5 end function drw_koelsch(k) circ(k.x, k.y,k.width, k.col) end function klsch() foreach(koelsch, mv_koelsch) mk_koelsch(cursorx,cursory,rnd(3),7) mk_koelsch(cursorx+115,cursory,rnd(3),7) foreach(koelsch, drw_koelsch) sspr(120,112,8,16,2,110) sspr(120,112,8,16,117,110) end function _init() music(0) end function _udpate60() end --mainly for loading the scenes at the right time function _draw() cls() sync() --loading screen if st<1 then scnld() end --warning if st>0 and st<3 then warning() end --scene 01: kalk motors if st>2 and st<7 then kalk() end --scene 02: car if st>6 and st<11 then pal() starfield() grid() strt() end --scene 03: spriteworm if st>10 and st<15 then starfield() worm() wormborder() end --scene 04: logo if st>14 and st<19 then spyro() bltz() sprl() end --scene 05: dancing if st>18 and st<23 then discobg() disco() end --scene 06: placeholder if st>22 and st<27 then features() plasma() buynow() tick-=.04 end --ending screen if st>26 and st<31 then klsch() laber() end if t>700 then cls() stop() end a+=0.01 w=.002+w%.02 t+=.2 -- print(t,80,120,12) end frames={"0040d0400f0f0f0ed0f20f0b120f09e240200f0f0f0de0f260d00f071450110f06e042200f0f0f0de140f1600f051257100f04502041200f0f0f0df0e02040d0400f04115a100f032042200f0f0f0de0f041d0500f045440504050110010500f0441210f0e2140500f0a40f2d0500f0350e0f140f4e04052100f0350220f0c1020409240200f082040f1500f0350e0f271f4e042100f0350420f0c8194410f072040e0400f0310d0f273f3e04151100f02430f0b2081409341200f0640e1500f0310e0f175f2e04150110f03430f0a20e0f1e1f0e041200f042040e0f1500f0350f176f2e0415001100f0280430f0810406173f0e1400f044080e0f1500f0350f175f3e0415001100f02440f082040d05064e040200f048140e1400f0350f174f4e041500f05440f07104250d050d0506041200f03850f0450f176f2430f0540804180400f0620422210208140200f02860f0460f174f4e0420f06814080400f062342218042100f01860f0310fce042100f0540804180400f052110502443200f01860f0160d012d060f1617060d06450105040100f024082410f0540201251115042200f00870f01700013706070601302607050004020500f024182410f0421124111502040210f00870f0110041060f05006d05040002040500f034082420f04102041e040122140200f00860f02100470f160100550211041500f034082420f04102041e0402110220f01860f03100370f170500553410f05834180400f0122412310220f01860f0410d051f1e040e0f0e05740500f0540824183418945204122102040200f0140860f0640f170e2f1e0402252400f064082418f4622112042200f880f06d0f2400020f2e041520f082082428f4620112042844083448340860f06d0f1402041f2e04151100f08504081428f804381458540814082418c0f0650f0415041f24251100f0a81428f80428a4081418041804080408c0f075041e0f0e04552100f0a40804281408f84e183418140814080408e0f081041e3205042520f0c814181418fe68141844081408e0f0950415243521000110f09814182408ee78141804081418041864085400f0870d0475210001000d0100f0980418f82e74581408041874183400f07607241f1425210011000d2100f07804183408b41e844804081418741830f0576504550031260d063d00f04408f8240e942814081418d0f05775610031051647060d0500f0384408de941824080418e0f037951081151d0637162d00f0381418cea478e0f017c405111031152d0617564d00f0242844185e980468d0f017d415110021252d061766070630f034183408741e3814080468a420f007e415210001352706176607262100f0340824085e080e4844689400f01607f5040521354706177607163500f0481408440eb478441800f02607f70504053115571607b62d00f044089e08040e380e147840f057f714259406070607c61d0500f034086e082e041e0814080e0804581400f07d07f71d24120502052426070607c61510f0386e581e54581400f08607f72d0e0425440d17f61d0500f0386e481e644820f09607f6050d160f0e045d1e052d0607760706170d10f038742e08142e38141840f08607f706050607060e340d0e0f16371607660706070d150092141200488418043e140e18141840f08607f71d0607060e5f2607b61706070506106502040e50387e080e14080e740860f08617f735040e4f37b60706070d06206e14082e4418ae0408041e040e24086400f08607f7360d040d1e67460746170607062100420e2244080e28f82e089400f086170607f716048d060736074607160d06070105004e24005208a4384e18a41e7400d106070617f7249746074607161706050d00340e1400820884181e0408040814080408ae380e4400b5061706173607b6050487461726072d060d1506003422009208b4184418c41204081e2200ad16274617a51415143607060726172607260d150d0035040810b2086408f864020052041e0200960d06071617262795141514250637060d0617462d1700441200b20864180e04081e6890920412041200560d0647263736073d060d0524170637163736050d06205210120402007208a408240e141e0814184200a2040e32004d060d06171607163736172d065d163716373d0506210092080445002208f834081408341800b2040e080402004506770607062726172d062d46370637450d170d0100a204181e0402001208f86408241810b204081402005647060d0746572d161d06672627360d0615011500c2240e1218fe1418542810b2040814006677260716472d060d060d360d061726273d15310500f0020408f81e1418443810a504307d067706171647061d360d360d06072617450d061d051d00f02408f8e412341e54009d060706f7150d760d16072627260d060d150d0600f04208ee28cec200810d160706e7150da6270d0617160d560d00f04208ee18b4127430ad26f7061d660d051d0617164d16251100f0520834183408f81402009210a60d265d0677060d760d051d06071637060d062d150100f05208a418f40200f06d266d06950d8526071d067d3100b210720844085428d40200f0660d363d06a50d852607060d063d0607062d0500b20e340824021844081418f8240200f0660d06f7151d85262d063d064d050100b452142884081408f802008210b60d166d06852d65361d169d0500f2301208c428e40d045e30b60d166d16752d652d061d162d065d0500f01412001208940804022418540834082e18440200f0f0f0f0f42028b211141844282402583200f0f0f0f0f00204201408840200210204181480541200f0311c31260c2710170051260c2601260c202710f03420140854081210210214b200350e1500f0211c31260c2710270c0031260c2601260c202710f05425086408240200110214b200220408040500f0111c31260c2710270c2011260c2601260c202710f062043854181401001102246824020024081400f0210c31260c2710270c310001160c2601260c2027102c00f054385408041200110224782428140200f03c31260c2710171c311001060c2601260c2027102c0600f05204285418120011022478640200f0f06c1120060c260097102c060100f07418441218020011023468141220f0f08c0126000c26010087102c060110f07418620104020011022488040200f0f0b1260c000c16011077102c060120f072080408342214020012442250f0c1160c2700271c21260c100c060120671036012600f07208040814522012d0f0b1160c2700271c21260c2006012600571041260c00f0720452142210125100010218040200f0a1160c2700271c21260c2011260c00471051160c10f084620432001274082400f0b1060c2700271c21260c2021160c10371061060c20f084380462001264181410f0b60c2700271c21260c2031060c202710760c2600f08438144210221418342200f0bc2700f0360c2027108c260100f0820438043220310280f0cc1700f04c2027109c160110f08504920072440200f0cc0700271c21260c4601200c1027102c1601260c160120f0944804180402004122440200f0c700271c21260c460126000c0027102c1601260c16012c00f0920448041210525410f0d700171c21260c4601260c000c0017102c1601260c16012c10f09504722061021420f0f71c21260c4601260c1027102c1601260c16012c10f0b46230522430f0d72c21260c4601260c2007201c2601260c16012c10f0c44250422440f0f0f0f0f0f07204223412005231020400f0f0f0f0f0f071021122041210a210f0f0f0f0f0f082010032040200b210f0f0f0f0f0f0820100120012102102011228040200f0f0f0f0f0f09201001201000210210204085200f0f0f0f0f0f0a100220100010042140230f0f0f0f0f0f0f21001006100f0f0f0f0f0f0f0320402010081020100f0f0f0f0f0f0f0021100722100f0f0f0f0f0f0f0010201006204120100f0f0f0f0f0f0f01201006204120100f0f0f0f0f0f0f012105214021100f0f0f0f0f0f0f022004102042200f0f0f0f0f0f0f0310042043200f0f0f0f0f0f0f082242100f0f0f0f0f0f0f0610260f0f0f0f0f0f0f08230f0f0f0f0f0f0f01105010011004100f0f0f0f0f0f0f0210d2520f0f0f0f0f0f0f085060d1520f0f0f0f0f0f0f0863520410d20f0f0f0f0f0f0e50617060d0500410d0607060500f0f0f0f0f0f0c50617160500550607160d00f0f0f0f0f0f0c607360100550607260500f0f0f0f0c770f055074d00650d073d00f0f0f0f0c770f055074d00610d07360100f0f0f0f0b6090a4600f055063d050075074d0100f0f0f0f0a6090a4600f0510d160d01008107460500f0f0f0f0a6090a061a1600f0f0410607360500f0f0f0f0a6090608150a0600f0f05d0617160500f0f0f0f0a61806180610f0f0f0f0f0f0f076183610f0f0f0f0f0f0f076173610f0f0f0f0f0f0f0761708170610f0f0f0f0f0f0f076090607160a0600f0f0f0f0f0f0f076090a061a1600f0f0f0f0f0f0f076090a4600f0f0f0f0f0f0f076090a4600f0f0f0f0f0f0f076095600f0f0f0f0f0f0f0767" } __gfx__ 000000000015efff500000000000017e1111111115fe511111111e7000cccc0000eeee0077777707777000000000000000005111555555515511150000000000 000000005fffffee77500000000000ee1111111115ee1111111115f00c0000c00e0000e077777707707700000000000000561111111111111111157500000000 0000000ee555157ff77750000000155e5511111115ff111111111e71c600070ce200070e77000007700770000000000016611111155111155115115665000000 000005551111115fef7777500000ee5f1111111115775111111117ffc600000ce200000e77000007700770000011000d65115555111555515111665116d00151 00005e515111111155577775000055ef555511155effe51511555755c600000ce200000e770000077007700000111d6666666666111166666556666666766611 000551111111111111115fff1000555ef55511155eff5ee115557ff1c660000ce220000e7700000770077000000d777777777777777777777667777777777760 005111111111111111155555e0005557ee555555eef7eef7ff77f5f00c6666c00e2222e077777707707700000007777777777777777777777777777777777770 0111111115555555555ffe55e000555f7fe555eeeefffe77777f7ee000cccc0000eeee00777777077770000000d777777777777777777777777777777777777d 011111555eeeefeefffff77f5e000eeffffeeeeefeff7f5eeeff7fe0000000000000000000000000000000000066777777777777777777777777777777777776 0111155eeeeeffffeffff777e7e005ffffeeee5effeeff55eeef77d0000000000000000000000000000000000066619916667777777777777777777666199666 111115eeeeeeefeefeeff777777505efffffeeee5effeee5efef7710000000000000000000000000000000000055611116177777777776777777777671111661 11115eeeeeeeeeeeeeeeef77777f005ffffffe5555ee5e55effe7500000000000000000000000000000000000016777777777777777766777777777777777771 01115eeeeeeeeeeeeeeeeef77f7f005effffe555555555555ffe700000000000000000000000000000000000005777777777777777777777777777777777777d 11115eeeeeeeeeeeeeeeeef7feff000fffff55eeee55ee555efef000000000000000000000000000000000000016666667666766766766766766766767766775 1111efeeeeeeefeeeeffeeef555e000effff5555ee5555555eff5000000000000000000000000000000000000017515111671117777777777776167651555575 5111effeeeffeeeffffefeef51150005ffffe5555555eee5efff0000000000000000000000000000000000000007611555661117777777777776666651551671 11115eeffe555eefeef77777e5150000fffffeefffeeffeeef710000000000000000000000000000000000000006765151165151176766766655117655151770 51e7feeee55555555ef77777777500005ffeefffe5115efeef500000000000000000000000000000000000000006667666661555676666667651556777667760 017f111111155efee51111111775000005fe5fffe1115eeef5000000000000000000000000000000000000000001111110000000000000000000000001155510 00000000000000000000000001cccccccccccccccccccccccccccccccccccd0000000001cccccccccccccccccccccccccccccccc100000000000000000000000 0000000000000000000000000c66666666666666666666666666666666666cd00000001cc666666666666666666666666666666cc10000000000000000000000 0000000000000000000000000c666666666666666666666666666666666666cc000001cc66666666666666666666666666666666cc1000000000000000000000 0000000000000000000000000c6666666666666666666666666666666666666cc0001cc6666666666666666666666666666666666cc100000000000000000000 0000000000000000000000000c66666666666666666666666666666666666666cc01cc666666666666666666666666666666666666cc10000000000000000000 0000000000000000000000000c666666666666666666666666666666666666666c01c66666666666666666666666666666666666666c10000000000000000000 0000000000000000000000000c666666666666666666666666666666666666666c01c66666666666666666666666666666666666666c10000000000000000000 0000000000000000000000000c666666666666666666666666666666666666666c01c66666666666666666666666666666666666666c10000000000000000000 0000000000000000000000000c6fffffffffffffffffffffffffffffffffffff6c01cffffffffffffffffffffffffffffffffffffffc10000000000000000000 0000000000000000000000000c288888888888888888888888888888888888888c01c88888888888888888888888888888888888888d10000000000000000000 0000000000000000000000000ccccccccccccccccccccccccccccccddddddddddc01cdddddddddccccccccccccccccccccdddddddddc10000000000000000000 000000000000000000000000001111111111111111111111111111cccccccccccc01ccccccccccc111111111111111111ccccccccccc10000000000000000000 000000000000000000000000000001cccccccccccccccccccccccccd888888882c01c888888888c1001cccccccccc1001c888888888d10000000000000000000 00000000000000000000000000001cddddddddddddddddddddddddd4888888888c01c888888888c100cddddddddddc001c888888888d10000000000000000000 0000000000000000000000000001c666666666666666666666666666666666666c01c666666666c100c6666666666c001c666666666c10000000000000000000 000000000000000000000000001c666666666666666666666666dc666666666cc101c666666666c100c6666666666c001c666666666c10000000000000000000 00000000000000000000000001c6666666666666666666666666dc66666666cc1001c666666666c100c6666666666c001c666666666c10000000000000000000 0000000000000000000000000c6777777777777777777777776ddde777777cc10001c777777777c100c6777777776c001c777777777c10000000000000000000 0000000000000000000000000c777777777777777777777777dd887777776c100001c777777777c100c6777777776c001c777777777c10000000000000000000 0000000000000000000000000c677777777777777777777776dd8e77777cc1000001c777777777c100c6777777776c001c777777777c10000000000000000000 0000000000000000000000000c67777777777777777777776dd8d77777cc10000001c777777777c100c6777777776c001c777777777c10000000000000000000 0000000000000000000000000c6666666666666666666666dd8866666cc100000001c666666666c100c6666666666c001c666666666c10000000000000000000 0000000000000000000000000c6666666666cccccccccccddd8dcccccc1000000001c666666666c100cccccccccccc001c666666666c10000000000000000000 0000000000000000000000000c6666666666c1111111111dd88c1111100000000001c666666666c100011111111110001c666666666c10000000000000000000 0000000000000000000000000ceeeeeeeeedc111111111ddd8d11111111111111101ceeeeeeeeec111111111111111111ceeeeeeeeed10000000000000000000 0000000000000000000000000c4888888882ddddddddddd588ddddddddddddddcc01d888888888dddddddddddddddddddd888888888d10000000000000000000 0000000000000000000000000cdddddddddddddddddddd5d88dddddddddddddddc01cddddddddddddddddddddddddddddddddddddddc10000000000000000000 0000000000000000000000000cccccccccccccccccccccc888cccccccccccccccc01cccccccccccccccccccccccccccccccccccccccc10000000000001000000 0000000000000000000000000c2888dddcccccdd88888d188d888888888888882c01c88888888888888888888888888888888888888d1000000002555d000000 0000000000000000000000000ceeddcccccccd8eeeeeedd88ed4eeeeeeeeeeeeec01ceeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeec10000012851110000000 0000001dddddddd5555555555cccccccccdd886666666d2881dccccc6666cc666c15c6c666666666666666666666666666666666666c10002888511100000000 00001dccccccccccccccccccccccccccd888666666666d4884dddddddccccccccccccccccc66666666666666666666666666666666cc10288851100000000000 001dcccccccdccccccccccccccccdd888866666d66666d8888888888888888888d6d888ddcc666666666666666666666666666666ddd88825110000000000000 1dccccccc6c88888888888888888888e66666611c66665d888888888888888888dd888888dccc666666c66666666666ccccdddddd8888dd11000000000000000 ccccccccc6ccccccccccccccccccdd1d6666651dcc6665ccccccccccccdcccccccccdccccccccc6d66ccc666666ccccccccccccccdd110000000000000000000 cddcccccccccdcccccccccd115c51111cc11615ccc1115dccc11ddcccccd1dcccccd105ccccccddc11cccccddddddcccccccc115100000015150000000000000 05ddcccd10000111dcccccc1111115dcd00011dccd0001dccd00001ccccc001ccccc5000dcccccdd005ccccc1100001dcccccd1110001dd11550000000000000 0005510000001111111ccccc111dcccd000001dccd0001cccd000005cccc1001ccccc10005cccccd50dccccc511000001dccccd1115ccc111100000000000000 00000000000d1111551dccccddcc6500000011d6660001d66610000066665000d66665000056666dd00d6666d11000001666666dd6cd11100000000000000000 0000000000001dd666666666666500000001d15666000056661000005666d00006666d1000056666d500d6666d11000d666666666d1110000000000000000000 000000000000005cccccccccc100000001ddddcccc10005cccd000001cccc00005ccccd00000dcccd5000ccccd1102cccccccccd111000000001dddd50000000 000000000000000022dcdd44800000000d5ddddd8820001d888100000d888000008888d100002888d11002888ddddddd225244d111000000002dd115d0000000 000000000000000000011d88800000001154821d8880000d88840000028882000028888c00000888851000888dd821100002888d111000000288d55d10000000 00000000000000000011158880000000115888558882000588882000058882000008888d100002888d1124888888d1100000888d511000000888dd5d10000000 000000000000000001111d88855ddddd51d8882188881001d88880000188820000018888d1255d8888d88888888841100000888ddd1000002888dd5d50000000 00000000000000001111dd8888eeeeeeee8888815888d100d888820000488400001588888888888888888dd118888d1100058888ee88888888888dddd0000000 000000000000001dd55dd88888888888888888821d888d101d88882000d8885dd8888888888888888825100002888d51002888888888888888888dddd1000000 0000000000005dccddcccdd66666666ccccccccd11cccccc55ccccc500ccccccccccccccccd5102dccd1000000dcccddddccc6dccccc6dccccccccdddd000000 00000000000dcccc66666cdd5111115dd6666666d01c6666666c6666d1d6ccdddcccccccc6d0000cc6d10000001c66666dccccccccccccc666ccccccddd00000 000000000005ddd66d5100000000000001d666666d0056666666666666666d10001d666666d00006665100000006666511110000000000001d6cccccccd50000 000000000000001000000000000000000001dc6666d00056666666666666666661000d666650000d66d10000000d6661110000000000000000566ccccccd1000 00000000000000000000000000000000000011cc666d000001dd666666666666d00000056d00000d665100000001666111000000000000000000d6ccccccc100 000000000000000000000000000000000000011ccc66d0000000001111555551000000000000000d665100000001666d110000000000000000000dcccccccc10 0000000000000000000000000000000000000000cc6d1000000000000000000000000000000000066d1100000000666d1500000000000000000000dccc111dd0 00000000000000000000000000000000000000005d1000000000000000000000000000000000001665100000000066cd150000000000000000000006d1111150 000000000000000000000000000000000000000000000000000000000000000000000000000000d6d11000000000dccd15000000000000000000000011111000 000000000000000000000000000000000000000000000000000000000000000000000000000000d1110000000000dccd1d000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ccd1d000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ccd1d000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cc515000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dccc115000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dccc115000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dccc111000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cc1150000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6cc1110000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dcc11510000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016c111100000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d1111000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015510000000000000000000000000000000000 00000000000000000000000001000010000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000 00000000000000000000000001000010000000000000000000000000000000000000000000000000000000000d77777777776500000000000000000000000000 0000000000000000000000001c0000c1000000000000000000000000000000000000000000000000000000006777777777777660000000000000000000000000 000000000000000000000000111001c10000000000000000000000000000000000000000000000000000176d67777777777777ddd50000000000000000000000 000000000000000000000000cc1001d100000000000000000000000000000000000000000000000001d777dd7777777777677765676510000000000000000000 000000000000000000000001cd1001d1000000000000000000000000000000000000000000000000177766d776cccd7776615dd5d7666d000000000000000000 000000000000000000000001ddc01cdc10000000000000000000000000000000000000000000000066ddd6777dcccd76666ccc5d56d5ddd00000000000000000 000000000000000000000001ddc01ddd100000000000000000000000000000000000000000000005d67776777d5556777765555d566dd55d0000000000000000 000000000000000000000001d6c11ddd100000000000000000000000000000000000005d011111d77777777777777777777777777777666d5000000010000000 000000000000000000000011ddc11ddd1000000000000000000000000000000000005555677777777777777777777777777777777777777777777d0077100000 000000000000000000000011ddc1cddd10000000000000000000000000000000005555567777777777777777777766677766767777777777777777777777d000 00000000000000000000001cddc1cddd10000000000000000000000000000000055555577777777777d5555555dddd66dddd55555555555777777777777777d0 00000000000000000000001ddcccddcd1111000000000000000000000000000055555555ddd555551d5d5555d677777777777777777777655555555555555556 00000000000000000000001cddcdddcddccc1000000000000000000000000000055500000071551005dd555d6777777777777777777777750000550000015550 00000000000000000000001ddddd6dddddccc10000000000000000000000000000000000075d00006755555d67777777777777777777776100000d0000000000 00000000000000000000001dddddddddddddd10000000000000000122211111000000000d77777777765555dd677777777777777777776555551015000000000 0000000000000000000001cddddddddddddddc100000000000001c22222221c0000000007777777777d55555dd77777777777777777776d55555ddd100000000 0000000011100000000001cddcdddcdddddddd1000000000000222222222222000000006777777777655555555677777777776ddd666ddd5555555dd50000000 00000002d6d0001111111dccccdddddddddddc10000000000022222222dd2d20000000577777777765555555555677776dddddddddddddd55555555550000000 00000222d6d222cdddddd66ddcddddddcddddd1000000000012222222ddd2cc0000000777776dddd55556655555576dd55555555555555555555555551000000 222222ccccc2c2cccccdd66d66dddccc2cccccc2000111102222dc22d2ddc220000005dd551111001555dd555555555555555555555555550001115555000000 22222ccc2c22222222cc66dcd6dcc22222222222222cdcc2222cdd2222dd22200000011000000000000555555555555555555555555551000000000005000000 22222222222222222222ddddcccc2222222222222ccdcc222222dc22222222200000001122888881111555111561616161616165111551111888882211000000 222222222222222222222c2222222222222222222cdddcc2ddd2222dddddddd00000005000000001111555555566166616661665555551111000000010000000 2222222222222222dd22222222dd2222222222222dddcc12dddddd2211ddddd00000005500000000000155555561616161616165555150000000005500000000 d22ccccdd22222ddddddcccccdddddddd22d2dddcdddddc22222221ccccddcc00000000015511000000155555555555555555555555551000011110000000000 22222222222cddddddd111111111111d222222dd1111111101111111111111100000000000001115515000000000000000000000000001111500000000000000 efeeeee511efeef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0eeeeeee55eeee100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 005eeeeeee5ee5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 00055eeeeee550000000000000000000000880008880800000000880000000880008880000080000008088888888088888888088888888088888888088888888 00000555555000000000000000000000000ee00eee00ee0000000ee0000000ee00eee000000ee0000ee0eeeeeeee0eeeeeeee0eeeeeeee0eeeeeeee0eeeeeeee 00000000000000000000000000000000000660666000666000000660000000660666000000066600666066000066000066000066000066000000066066000000 00000000000000000000000000000000000777770000777700000770000000777770000000077777777077077077000077000077077077077777777077777777 00000000000000000000000000000000000777770000777770000770000000777770000000077777777077077077000077000077077077077777777077777777 00000000000000000000000000000000000660666000660666000660000000660666000000066066066066000066000066000066000066066066600000000066 00000000000000000000000000000000000ee00eee00ee00eee00eeeeeeee0ee00eee000000ee0000ee0eeeeeeee0000ee0000eeeeeeee0ee00eee00eeeeeeee 00000000000000000000000000000000000880008880880008880888888880880008880000088000088088888888000088000088888888088000888088888888 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__ 012000001e0500000000000126530000009350000000c3562e630152530f6300000020056000000000032650000000000000000000001f054000000000000000116501d7573165400000103541e5560000000000 011000000e0630000000000000003c6350000000000000000e063000000e063000003c6350e06300000000000e0630000000000000003c635000000e06300000000000e0030e063000003c6350e0630000000000 011000000940000000151400000000000000000914000000151400000000000000001514000000091400000009140000001514000000000000000009140000001514000000000000914000000151400000009140 011000000514000000111400000000000000001114000000051400000011140000001110000000111400000005140000001114000000000000000000000000001114000000051400000011140000000000000000 011000000914000000091400000009140000000914000000091400000009140000000914000000091400000009140000000914000000091400000009140000000914000000091400910009140151000914009100 011000000514000100051400010005140001000514000100051400010005140001000514000100051400010005140001000514011100051400010005140001000514011100051400510005140111000514000100 011000001f3322333500300233351f335233320030028332003002433521335243320030028332003002833500300283320030024335213352433200300263320030023332283350030028332003002833200300 01100000003002633200300233351d3351f332003002833200300283320030024335213352433200300283320030028332003002433521335243322133228332003002b332003002b33200300283352133524332 01100000000002643200000234341f434234320000028432000002443421434244320000028432000002843200000284320000024434214342443200000264320000423434284320000028432000002843200000 01100000000002643200000234341d4341f4322143228432000002b432000002b43200000284342143424432000002b4342d432000002b4342643428432264322b432000002d432000002d432000002b43426432 01100000214322143518432184351c4321c435234322343518432184351c4321c435244322443518432184351c4321c435214322143518432184351c4321c435234322343518432184351c4321c4352443224435 011000000e0631c30528302283051c3021c3050e063263050e0631c30524302243053c6351c30523302233050e0631c305283023c6353c6351c30526302263051c3021c3050e063243053c6353c6353c6353c635 011000000e0630000000000000003c63500000000000e0630e063000000e0630e0633c63500000000000e0630e0630000000000000003c63500000000000e0630e063000000e0630e0633c6350e063000000e063 011000000944509445094450944509445184450944515445094450944509445094450944518445094451544509445094450944509445094451844509445154450944509445094450944509445184450944515445 0110000005445054450544505445054450e445054451044505445054450544505445054450e445054451044505445054450544505445054450e445054451044505445054450544505445054450e4450544510445 0110000023245232051a2451a2051d2451d20524245242051a2451a2051d2451d20526245262051a2451a2051d2451d20523245232051a2451a2051d2451d20524245242051a2451a2051d2451d2052624526205 0110000026245262051d2451d205212452120528245282051d2451d205212452120529245292051d2451d205212452120526245262051d2451d205212452120528245282051d2451d20521245212052924529205 0110000021340213401c30221340243021a3402330224340233021a342233421a34221342233421a3422330221340213402330221340213021f3402330421340233021f34023340003001f3021f3022130221302 0110000021440214401c402214401c4021a4401a404244401a4021a442234421a44221442244421a4420040021440214400040021440004001f4400040021442214421f442264421a442234421f442214421f442 011000002130000500213400050023340005002134024502243400050023502233402150221502213400050021340213401a50221340245022450223502213400050000500235022134021502215022334000500 011000001c4021c402214401c4022344000400214401c402244401c4021c402234401a4021a402214401a402214402144018402214401840218402184022144018402264402a4021f4401f4401d4401a44018440 0110000023332233351a3321a3351d3321d33524332243351a3321a3351d3321d33526332263351a3321a3351d3321d33523332233351a3321a3351d3321d33524332243351a3321a3351d3321d3352633226335 0110000026332263351d3321d335213322133528332283351d3321d335213322133529332293351d3321d335213322133526332263351d3321d335213322133528332283351d3321d33521332213352933229335 01100000212442124221242212422124221242284422844228442284422844200000242442424224242242422633226331233311c3311a3311a3311a3321a3321a33200301003000030000000000000000000000 011000002824428242282422824228242282422624226242262422624226242262422134421342213422134223341233422334223342233422334223342233421f4421f4421f4421f4421f4421f4421f4421f442 011000002124421242212422124221242212422824228242282422824228242000002b2422b2422b2422b2422624226242212411c2411a2411a2421a2421a2421a24500000000000000000000000000000000000 011000002844428442284422844228442284422644126442264422644226442264422134421342213422134223341233422334223342233422334223342233421f4441f4421f4421f4421f4321f4321f4221f425 0110000029042290422134521345280422804221345213452b0422b0422134521345280422804221345213452904229042213452134526042260422134521345290422904221345213452d0422d0422134521345 01100000300423004224042240422d0422d04230042300422f0422f0422d0422d0422b0422b04226042260422d0422d0421c3451c3452334523345240422404228042280422d0422d04234042340423904239042 01100000320423204221345213452d0422d04221345213452f0422f04223345233452b0422b04223345233452d0422d0422134521345290422904221345213452804228042213452134526042260422804228042 0110000029042290422b0422b0422d0422d04229042290422b0422b042260422604230042300422f0422f0422d0422d0421c3451c345213452134523345233452404224042280422804230042300423904239042 011000000e063000003c613000000e063000003c613000000e063000003c613000000e063000003c613000000e063000003c613000000e063000003c613000000e063000003c613000000e063000003c61300000 01100000000000000000000000003c635000000000000000000000000000000000003c635000000000000000000000000000000000003c635000000000000000000000000000000000003c635000000000000000 011000000f4520f452000000f4520f452000000c4520c452000000000006452054520345200452034520000008452084520845508452084520845508452084520745407452074520745207452074520745207455 01100000272522725500000272522725500000242522425500000000001e2521d2521b252182521b2520000020254202522025220252000002025520255202551f2521f2551f2521f2551f2521f2551f2521f255 011000000e0630000000000000000e0630000000000000000e0630000000000000003c6350000000000000000e06300000000003c6353c6350000000000000000e063000003c6353c6353c6353c6353c6353c635 011000002434524325183451832521345213252434524325233452332521345213251f3451f3251a3451a32521345213251034510325173451732518345183251c3451c325213452132528345283252d3452d325 001000001a60500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 __music__ 00 41424300 00 41460201 00 41470301 00 0a060401 00 0a070501 00 0a060401 00 0a07050b 00 110f0d0c 00 12100e0c 00 130f0d0c 00 14100e0c 00 17150d0c 00 18160e0c 00 19150d0c 00 1a560e0b 00 1b0a0d01 00 1c0a0e01 00 1d0a0d01 00 1e0a0e01 00 2221201f 00 2221201f 00 2221201f 00 22215f23 00 11060401 00 12070501 00 13080401 00 1409050b 00 10424313 00 1042430f 00 14424344 04 65424344 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 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344 00 41424344