Skip to content

Commit

Permalink
release 1.1.0-beta11
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkRTA committed Jul 5, 2024
2 parents 3d55634 + e9de26b commit decc795
Show file tree
Hide file tree
Showing 4,341 changed files with 174,540 additions and 3,816 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ out

#generated files by additional game scripts
scripts/dx_config.ini
demo
34 changes: 34 additions & 0 deletions _ark/char/anim_genres.dta
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
(alternative rocker)
(blues rocker)
(classical dramatic)
(classicrock rocker)
(country rocker)
(disco rocker)
(emo dramatic)
(fusion rocker)
(glam dramatic)
(hardrock rocker)
(industrial rocker)
(inspirational dramatic)
(jazz dramatic)
(jrock spazz)
(latin spazz)
(metal banger)
(novelty spazz)
(numetal banger)
(poprock rocker)
(prog rocker)
(punk spazz)
(rock rocker)
(rockabilly rocker)
(southernrock rocker)
(grunge banger)
(indierock rocker)
(new_wave dramatic)
(reggaeska rocker)
(rbsoulfunk rocker)
(hiphoprap rocker)
(other rocker)
(popdanceelectronic dramatic)
(urban rocker)
(world rocker)
167 changes: 128 additions & 39 deletions _ark/config/midi_parsers.dta
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,34 @@
{> $mp.after_delta_sec $after}}}
{func
is_ugc_plus
{&&
{exists meta_performer}
{exists song_mgr}
} ; i feel like this is formatted wrong - TODO
{||
{== {{song_mgr get_meta_data {meta_performer song}} version} 30} ; dx - check if a song's version is equal to 30
#ifndef HX_WII {{song_mgr get_meta_data {meta_performer song}} is_ugc_plus} #endif ; vanilla check on ugc_plus source
{do
{set $is_ugc_plus FALSE}
{if
{&&
{exists meta_performer}
{exists song_mgr}
}
{if {== {{song_mgr get_meta_data {meta_performer song}} version} 30} ; dx - check if a song's version is equal to 30
{set $is_ugc_plus TRUE}
}
{if {file_exists {sprint "songs/" {meta_performer song} "/" {meta_performer song} ".mid"}}
{set $is_ugc_plus FALSE}
}
{if {file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{set $is_ugc_plus FALSE}
}
{if {>= {{song_mgr get_meta_data {meta_performer song}} id} 5005600}
{if {<= {{song_mgr get_meta_data {meta_performer song}} id} 5012250}
{set $is_ugc_plus TRUE}
}
}
#ifndef HX_WII
{if {{song_mgr get_meta_data {meta_performer song}} is_ugc_plus} ; vanilla check on ugc_plus source
{set $is_ugc_plus TRUE}
}
#endif
;{dx_passive_messenger_symbol {sprint $is_ugc_plus}}
}
}
}
#include ../dx/countdown/dx_countdown_midi_parsers.dta
Expand Down Expand Up @@ -2121,10 +2142,15 @@
"Hey, no fake_songmgr or song_mgr for"
[song_name]}
30}})
{is_ugc_plus}
{if
{'||'
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{< $ver 30}
{is_ugc_plus}}
$is_ugc_plus}
{new
MidiParser
world_crowd_parser
Expand Down Expand Up @@ -2172,10 +2198,11 @@
(track_name VENUE)
(enabled TRUE)
(init
{set
[enabled]
{!
{is_ugc_plus}}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] FALSE}
{set [enabled] TRUE}
})
(allowed_notes
(96 97 98 99 100 101 102 103 104 105 106 107 108 109 110))
(midi
Expand Down Expand Up @@ -2221,9 +2248,18 @@
(compress TRUE)
(enabled TRUE)
(init
{set
[enabled]
{is_ugc_plus}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] TRUE}
{set [enabled] FALSE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] TRUE}
})
(post_procs
(bloom.pp bright.pp clean_trails.pp contrast_a.pp desat_blue.pp desat_posterize_trails.pp film_16mm.pp 'film_b+w.pp' film_blue_filter.pp film_contrast.pp film_contrast_blue.pp film_contrast_green.pp film_contrast_red.pp film_sepia_ink.pp film_silvertone.pp flicker_trails.pp horror_movie_special.pp photo_negative.pp photocopy.pp posterize.pp ProFilm_a.pp ProFilm_b.pp ProFilm_mirror_a.pp ProFilm_psychedelic_blue_red.pp shitty_tv.pp space_woosh.pp video.pp video_a.pp video_bw.pp video_security.pp video_trails.pp))
(text
Expand Down Expand Up @@ -2258,10 +2294,18 @@
(track_name VENUE)
(enabled TRUE)
(init
{set
[enabled]
{!
{is_ugc_plus}}}
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] FALSE}
{set [enabled] TRUE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] FALSE}
}
{set
[zero_length]
TRUE})
Expand Down Expand Up @@ -2290,9 +2334,18 @@
(compress TRUE)
(enabled TRUE)
(init
{set
[enabled]
{is_ugc_plus}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] TRUE}
{set [enabled] FALSE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] TRUE}
})
(text
{if
{&&
Expand All @@ -2313,9 +2366,18 @@
{set
[zero_length]
TRUE}
{set
[enabled]
{is_ugc_plus}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] TRUE}
{set [enabled] FALSE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] TRUE}
})
(text
{if
{&&
Expand Down Expand Up @@ -2350,10 +2412,18 @@
{set
[legacy_presets]
FALSE}
{set
[enabled]
{!
{is_ugc_plus}}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] FALSE}
{set [enabled] TRUE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] FALSE}
})
(term
{if
[legacy_presets]
Expand Down Expand Up @@ -2400,9 +2470,11 @@
{set
[start_offset]
0.25}
{set
[allow_keys]
{is_ugc_plus}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [allow_keys] TRUE}
{set [allow_keys] FALSE}
})
(allowed_notes
(37 38 39 40 41))
(get_instrument
Expand Down Expand Up @@ -2501,10 +2573,18 @@
{set
$mp.last_times
(0 0 0 0 0 0 0 0)}
{set
[enabled]
{!
{is_ugc_plus}}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] FALSE}
{set [enabled] TRUE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] FALSE}
})
(term
{if
[enabled]
Expand Down Expand Up @@ -2574,9 +2654,18 @@
(track_name VENUE)
(enabled TRUE)
(init
{set
[enabled]
{is_ugc_plus}})
{is_ugc_plus}
{if_else $is_ugc_plus
{set [enabled] TRUE}
{set [enabled] FALSE}
}
{if
{&&
{file_exists {sprint "songs/updates/" {meta_performer song} "/" {meta_performer song} "_update.mid"}}
{== {{song_mgr get_meta_data {meta_performer song}} version} 30}
}
{set [enabled] TRUE}
})
(term
{if
[enabled]
Expand Down
2 changes: 1 addition & 1 deletion _ark/config/modifiers.dta
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(mod_drum_surface_navigation default_enabled save_value use_save_value) ;vanilla
(mod_drum_fills save_value delayed_effect use_save_value) ;vanilla, dx diasbles by default
(mod_static_fills) ; no drum fills allowed, auto activate drum player
(mod_doublespeed save_value use_save_value custom_location) ;vanilla - dx added use_save_value (and removes it lol)
(mod_doublespeed save_value use_save_value) ;vanilla - dx added use_save_value (and removes it lol)
(mod_independent_track_speeds default_enabled save_value use_save_value) ; vanilla, dx enables by default
(mod_synced_track_speeds) ; use the same track speed for all difficulties
(enable_popup_help default_enabled save_value use_save_value) ; vanilla
Expand Down
4 changes: 3 additions & 1 deletion _ark/dx/locale/dx_locale_updates.dta
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
(cal_audio_desc_pad
"This test determines the amount of Audio Latency in your system. Every time you hear a tick, press the A button.")
#endif

(dx_track_speed_locked "Track Speed menu cannot be entered online.")
(dx_track_speed_desc "Breakneck Speed is equivalent to 150% Track Speed")
;server stuff
;ashcentral
(ash_overshell_register_online "Play on AshCentral")
Expand Down Expand Up @@ -684,6 +685,7 @@
(hint_career_desc
"Welcome to the Rock Band 3 Deluxe Career!\n\nYour progress as a musician is measured by goals. As you get better at a particular instrument, you'll beat more goals for that instrument. Beating goals is a big deal; goals can give you more fans, more clothing, and even better transportation to travel around in!")
(vocal_parts_0 "No Vocals")
(by_recent "Source")
(overshell_rb3esettings "Deluxe Settings")
(trackspeed_msg "NOTE SPEED: %d%%")
(speed_msg "SONG SPEED: %d%%")
Expand Down
9 changes: 7 additions & 2 deletions _ark/dx/overshell/dx_overshell_macros.dta
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,13 @@
{overshell update_all}
)
(mod_doublespeed
{modifier_mgr toggle_modifier_enabled mod_doublespeed}
{overshell update_all}
{if_else {{$this get_session_mgr} is_online_enabled}
{dx_passive_messenger_symbol {sprint {localize dx_track_speed_locked}}}
{do
{set $dx_track_speed_from_modifiers TRUE}
{$this show_state dxState_TrackSpeeds}
}
}
)
(mod_fakejuke
{do
Expand Down
18 changes: 15 additions & 3 deletions _ark/dx/overshell/dx_speed_states.dta
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@
options_audio
)
(enter
{if {! {session is_in_game}}
{$this show_message}
{$this setup_message_text dx_track_speed_desc FALSE}
{set $dx_no_message_sound TRUE}
}
{set $dx_list_item_selected FALSE}
{set $dx_list_pos 0}
{set $current_list options_audio.lst}
Expand Down Expand Up @@ -505,9 +510,16 @@
}
)
(on_cancel
{if_else {$this in_game}
{$this show_state dxState_DeluxeSettings}
{$this show_state dxState_SetSpeeds}
DX_OS_CLOSE_MSG
{if_else $dx_track_speed_from_modifiers
{do
{$this show_modifiers}
{set $dx_track_speed_from_modifiers FALSE}
}
{if_else {$this in_game}
{$this show_state dxState_DeluxeSettings}
{$this show_state dxState_SetSpeeds}
}
}
)
)
Expand Down
Binary file removed _ark/dx/song_dta_collection/gen/accidentallyinlove.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/aceofspades.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/alabamagetaway.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/alive.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/alivelive.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/amazingjourney.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/anywayyouwantit.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/bathwater.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/battery.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/beautiful.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/bigempty.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/black.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/bluecollarman.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/bluespark.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/brother.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/buffalosoldier.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/callme.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/capitalg.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/coolforcats.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/couldyoubeloved.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/danceepidemic.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/deep.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/deluxe.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/donteasemein.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/dontspeak.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/donttellmeyouloveme.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/drainyou.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/dropitlikeitshot.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/eminencefront.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/evenflow.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/excusememr.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/exgirlfriend.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/exodus.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/eyeofthetiger.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/garden.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/getclean.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/girluwant.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/gone.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hadadad.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hairofthedog.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hammersmashedface.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hellagood.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hellothere.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/heybaby.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hockeytheme.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/hungrywolf.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/idiotsrule.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ishotthesheriff.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/isthislove.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/jamming.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/janesays.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/jeremy.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/justagirl.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/kidsinamerica.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/killedbydeath.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/kungfufighting.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/lazyeye.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/livinonaprayer.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/longtrainrunnin.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/losangeles.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/masterexploder.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/masterslave.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/melatonin.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/mountainsong.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/new.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/nowomannocry.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/oceans.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/oceansize.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/once.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/onelove.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/pieceofmyheart.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/pigsinzen.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/pinballwizard.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/porch.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/realgoodlooking.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/rebelgirl.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/redemptionsong.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/release.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/renegade.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ridininmychevy.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/rockinamerica.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/rocknme.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/running.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/satisfymysoul.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/saucyjack.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/seaandsand.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/sensualseduction.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/shacklersrevenge.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/simplekindoflife.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/sixsixsix.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/snoopsupsideyahead.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/spiderwebs.dtb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/stiritup.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/summertimerolls.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/sundaymorning.dtb
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/takethemoney.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/tedjustadmitit.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/thankyouboys.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/thashiznit.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/thatsthahomie.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/themetal.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/threelittlebirds.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/throughbeingcool.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/timeisrunningout.dtb
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5000804.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5001204.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5001786.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5001934.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5002183.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5002892.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5002994.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5003035.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5003146.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5004219.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5004892.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/ugc_5004923.dtb
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/underneathitall.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/upthebeach.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/waitinginvain.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/walkingonsunshine.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/wearetheroadcrew.dtb
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/wheredyougo.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/whiteunicorn.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/whitewedding.dtb
Binary file not shown.
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/whygo.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/woman.dtb
Binary file not shown.
Binary file removed _ark/dx/song_dta_collection/gen/yougiveloveabadname.dtb
Binary file not shown.
Loading

0 comments on commit decc795

Please sign in to comment.