diff --git a/_ark/ps4/dx/overshell/dx_states.dta b/_ark/ps4/dx/overshell/dx_states.dta index a16b4be..29f8624 100644 --- a/_ark/ps4/dx/overshell/dx_states.dta +++ b/_ark/ps4/dx/overshell/dx_states.dta @@ -358,7 +358,7 @@ {if_else $noui "HUD: OFF" "HUD: ON"} {if_else $nohud "Performance Mode: ON" "Performance Mode: OFF"} {if_else $songtitle "Song Title Always: ON" "Song Title Always: OFF"} - "Menu Theme" + "Overshell Theme" ) } {$this setup_confirm_actions a @@ -369,7 +369,8 @@ {if_else $noui "HUD: OFF" "HUD: ON"} {if_else $nohud "Performance Mode: ON" "Performance Mode: OFF"} {if_else $songtitle "Song Title Always: ON" "Song Title Always: OFF"} - "Menu Theme" + "Overshell Theme" + "UI Theme" {if_else $menubg "Menu BGs: OFF" "Menu BGs: ON"} ) } @@ -490,10 +491,14 @@ {$this show_state kState_RB4DXDelayedEffectWarn} {$this trigger_select_effects} ) - ("Menu Theme" + ("Overshell Theme" {$this show_state kState_RB4DXMenuTheme} {$this trigger_select_effects} ) + ("UI Theme" + {$this show_state kState_RB4DXUITheme} + {$this trigger_select_effects} + ) } ) ; (UI_BUTTON_DOWN_MSG ;TODO: Scroll to new list data on last entry, workaround for in game @@ -676,6 +681,42 @@ ) ) +;UI Theme +(kState_RB4DXUITheme + (view {$this get_auto_list_view}) + (enter + {$this setup_confirm_actions a + ( + "Rock Band 4 Rivals" + "Launch Rock Band 4" + ) + } + ) + (SELECT_MSG + {local $list_data {($objId UIListCom) get_data_in_column token}} + {switch $list_data + ("Rock Band 4 Rivals" + {unless {dx_file_exists "ps4/ui_prerivals"} + {dx_file_rename "ps4/ui" "ps4/ui_prerivals"} + {dx_file_rename "ps4/ui_bak" "ps4/ui"} + } + ) + ("Launch Rock Band 4" + {if {dx_file_exists "ps4/ui_prerivals"} + {dx_file_rename "ps4/ui" "ps4/ui_bak"} + {dx_file_rename "ps4/ui_prerivals" "ps4/ui"} + } + ) + } + {$this show_state kState_RB4DXDelayedEffectWarn} + {$this trigger_select_effects} + ) + (on_cancel + {$this show_state kState_RB4DXVisSettings} + {$this trigger_cancel_effects} + ) +) + ;Track Settings #define RB4DXTRK_DATA ( diff --git a/_ark/ps4/ui_prerivals/background/meta_background1.scene_ps4 b/_ark/ps4/ui_prerivals/background/meta_background1.scene_ps4 new file mode 100644 index 0000000..890ff7a Binary files /dev/null and b/_ark/ps4/ui_prerivals/background/meta_background1.scene_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/bar_bg.png_ps4 b/_ark/ps4/ui_prerivals/game/bar_bg.png_ps4 new file mode 100644 index 0000000..d01283b Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/bar_bg.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/game1.layout_ps4 b/_ark/ps4/ui_prerivals/game/game1.layout_ps4 new file mode 100644 index 0000000..0b4460e Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/game1.layout_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/hud1.scene_ps4 b/_ark/ps4/ui_prerivals/game/hud1.scene_ps4 new file mode 100644 index 0000000..1ac6892 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/hud1.scene_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/particles/bubble.sgraph_ps4 b/_ark/ps4/ui_prerivals/game/particles/bubble.sgraph_ps4 new file mode 100644 index 0000000..c4b6f31 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/particles/bubble.sgraph_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/particles/textures/particle_bubble.bmp_ps4 b/_ark/ps4/ui_prerivals/game/particles/textures/particle_bubble.bmp_ps4 new file mode 100644 index 0000000..c55b20e Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/particles/textures/particle_bubble.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/player_messages.dta b/_ark/ps4/ui_prerivals/game/player_messages.dta new file mode 100644 index 0000000..26b92a3 --- /dev/null +++ b/_ark/ps4/ui_prerivals/game/player_messages.dta @@ -0,0 +1,14 @@ +( + ("energy_phrase_hit" "When this player successfully completes an energy phrase, gaining energy.") + ("energy_phrase_miss" "When this player fails to complete an energy phrase.") + ("player_failed" "When this player has failed out.") + ("player_saved" "When this failed player has been resurrected.") + ({if_else {file_exists "settings/sfx/nomiss.dta"} nop "gem_miss"} "When this gem player swings (not necessarily at a note) and misses.") + ({if_else {file_exists "settings/sfx/nomiss.dta"} nop "play_gem_miss_sound"} "When this gem player swings and misses and they are not allowed to flail.") + ({if_else {file_exists "settings/sfx/nomiss.dta"} nop "play_annoying_gem_miss_sound"} "When this gem player does not create input for an extended period of time and starts ignoring notes.") + ("guitar_solo_mode_changed" "When we flip between improv and authored solos in-game, not via the overshell.") + ("vocal_phrase_rating" "When we complete a vocal phrase and are given a new phrase rating.") + ("jit_track_popup" "When a track JIT popup needs to be presented or dismissed.") + ("jit_guitar_gem" "when the guitar JIT popup needs to trigger a strum animation to be in-time with a gem.") + ("streak_block_hit" "When this player successfully gets a streak block.") + ("streak_ended" "When this player misses a note to end a streak.")) diff --git a/_ark/ps4/ui_prerivals/game/song_artist_overlay1.entity_ps4 b/_ark/ps4/ui_prerivals/game/song_artist_overlay1.entity_ps4 new file mode 100644 index 0000000..b631ecf Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/song_artist_overlay1.entity_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/song_artist_overlaya.entity_ps4 b/_ark/ps4/ui_prerivals/game/song_artist_overlaya.entity_ps4 new file mode 100644 index 0000000..1607e1b Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/song_artist_overlaya.entity_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/song_artist_overlaytl.entity_ps4 b/_ark/ps4/ui_prerivals/game/song_artist_overlaytl.entity_ps4 new file mode 100644 index 0000000..d83c4a7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/song_artist_overlaytl.entity_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/bre_design_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/bre_design_ui.bmp_ps4 new file mode 100644 index 0000000..f1f1d88 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/bre_design_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/bre_design_util.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/bre_design_util.bmp_ps4 new file mode 100644 index 0000000..ed26fb1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/bre_design_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/bre_frame_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/bre_frame_ui.bmp_ps4 new file mode 100644 index 0000000..8fd4cb5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/bre_frame_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/bre_part.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/bre_part.bmp_ps4 new file mode 100644 index 0000000..c2d7a9b Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/bre_part.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/bre_widget_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/bre_widget_ui.bmp_ps4 new file mode 100644 index 0000000..37b346f Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/bre_widget_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/cloud.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/cloud.bmp_ps4 new file mode 100644 index 0000000..b75e6fb Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/cloud.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/difficulty_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/difficulty_frame_ui.png_ps4 new file mode 100644 index 0000000..b33459f Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/difficulty_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-1.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-1.png_ps4 new file mode 100644 index 0000000..b241fc1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-1.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-2.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-2.png_ps4 new file mode 100644 index 0000000..fccbf00 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-2.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-3.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-3.png_ps4 new file mode 100644 index 0000000..45ea533 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-3.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-4.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-4.png_ps4 new file mode 100644 index 0000000..1767cfd Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-4.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-5.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-5.png_ps4 new file mode 100644 index 0000000..806ac6c Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-5.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-dumplord420.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-dumplord420.png_ps4 new file mode 100644 index 0000000..034b46a Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-dumplord420.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fake-user-you.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/fake-user-you.png_ps4 new file mode 100644 index 0000000..94d6870 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fake-user-you.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_a_ui.png_ps4 new file mode 100644 index 0000000..58a2fa2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_b_ui.png_ps4 new file mode 100644 index 0000000..31af4ae Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_c_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_c_ui.png_ps4 new file mode 100644 index 0000000..1423e46 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_cb_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_cb_ui.png_ps4 new file mode 100644 index 0000000..6176e05 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_cb_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_count_in_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_count_in_ui.png_ps4 new file mode 100644 index 0000000..b2a5278 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_count_in_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_d_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_d_ui.png_ps4 new file mode 100644 index 0000000..f7b0250 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_d_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_e_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_e_ui.png_ps4 new file mode 100644 index 0000000..2da4315 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_e_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_f_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_f_ui.png_ps4 new file mode 100644 index 0000000..3ec241e Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_f_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_g_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_g_ui.png_ps4 new file mode 100644 index 0000000..0415757 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_g_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_generic_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_generic_a_ui.png_ps4 new file mode 100644 index 0000000..14a4f15 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_generic_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/frame_h_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/frame_h_ui.png_ps4 new file mode 100644 index 0000000..927c472 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/frame_h_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/friend_score_bg.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/friend_score_bg.png_ps4 new file mode 100644 index 0000000..8978cd8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/friend_score_bg.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/fx_noise_a.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/fx_noise_a.bmp_ps4 new file mode 100644 index 0000000..037317d Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/fx_noise_a.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/gamer_pic_shard.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/gamer_pic_shard.bmp_ps4 new file mode 100644 index 0000000..07e2908 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/gamer_pic_shard.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/grey_star.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/grey_star.bmp_ps4 new file mode 100644 index 0000000..e0cc2d7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/grey_star.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_bass_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_bass_ui.png_ps4 new file mode 100644 index 0000000..a8b7252 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_bass_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_drums_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_drums_ui.png_ps4 new file mode 100644 index 0000000..af85468 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_drums_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_guitar_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_guitar_ui.png_ps4 new file mode 100644 index 0000000..3c621b4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_guitar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_harm_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_harm_ui.png_ps4 new file mode 100644 index 0000000..373e5c5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_harm_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_pro_drums_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_pro_drums_ui.png_ps4 new file mode 100644 index 0000000..d77b761 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_pro_drums_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/icon_vocals_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/icon_vocals_ui.png_ps4 new file mode 100644 index 0000000..892f6b2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/icon_vocals_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/mask_unison_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/mask_unison_ui.bmp_ps4 new file mode 100644 index 0000000..b269deb Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/mask_unison_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/options_prompt_new_small_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/options_prompt_new_small_ui.bmp_ps4 new file mode 100644 index 0000000..b7c1ee0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/options_prompt_new_small_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/score_bg_generic_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/score_bg_generic_ui.png_ps4 new file mode 100644 index 0000000..2544004 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/score_bg_generic_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/score_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/score_frame_ui.png_ps4 new file mode 100644 index 0000000..d439cde Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/score_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_groove_master_ui.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_groove_master_ui.png_ps4 new file mode 100644 index 0000000..b0bafd3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_groove_master_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_icon_atlas_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_icon_atlas_ui.bmp_ps4 new file mode 100644 index 0000000..4423dae Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/stage_presence/sp_icon_atlas_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_gold.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_gold.bmp_ps4 new file mode 100644 index 0000000..83a4d78 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_gold.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_gold_full.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_gold_full.bmp_ps4 new file mode 100644 index 0000000..27ae25e Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_gold_full.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_increment_circle.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_increment_circle.bmp_ps4 new file mode 100644 index 0000000..d446bbb Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_increment_circle.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_red_full_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_red_full_ui.bmp_ps4 new file mode 100644 index 0000000..e9166ff Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_red_full_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_red_ui.bmp_ps4 new file mode 100644 index 0000000..fbdb67d Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_white.bmp_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_white.bmp_ps4 new file mode 100644 index 0000000..c9b0b7b Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_white.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game/textures/star_white.png_ps4 b/_ark/ps4/ui_prerivals/game/textures/star_white.png_ps4 new file mode 100644 index 0000000..32f82f6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game/textures/star_white.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game_savior_failed/failure_angel_ui.png_ps4 b/_ark/ps4/ui_prerivals/game_savior_failed/failure_angel_ui.png_ps4 new file mode 100644 index 0000000..ebe0901 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game_savior_failed/failure_angel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game_savior_failed/failure_swirls.png_ps4 b/_ark/ps4/ui_prerivals/game_savior_failed/failure_swirls.png_ps4 new file mode 100644 index 0000000..745ae95 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game_savior_failed/failure_swirls.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game_savior_failed/savior_angel_ui.png_ps4 b/_ark/ps4/ui_prerivals/game_savior_failed/savior_angel_ui.png_ps4 new file mode 100644 index 0000000..406cc01 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game_savior_failed/savior_angel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/game_savior_failed/savior_swirls.png_ps4 b/_ark/ps4/ui_prerivals/game_savior_failed/savior_swirls.png_ps4 new file mode 100644 index 0000000..0c3f455 Binary files /dev/null and b/_ark/ps4/ui_prerivals/game_savior_failed/savior_swirls.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/locale/eng/locale_keep.csv_ps4 b/_ark/ps4/ui_prerivals/locale/eng/locale_keep.csv_ps4 new file mode 100644 index 0000000..41e83a3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/locale/eng/locale_keep.csv_ps4 differ diff --git a/_ark/ps4/ui_prerivals/overshell/scripts/icons.script b/_ark/ps4/ui_prerivals/overshell/scripts/icons.script new file mode 100644 index 0000000..bd78912 --- /dev/null +++ b/_ark/ps4/ui_prerivals/overshell/scripts/icons.script @@ -0,0 +1,27 @@ +(define Icons + (rev 0) + (description "Icon Management Script") + (props + (track_type int + (allowed_values TRACK_TYPE_LIST) + (default kTrackGuitar)) + (slot_com object + (required_coms + (RBOvershellSlotCom))))) +(edit_poll + {$this update_icon }) +(poll + {$this update_icon }) +(enter + #include ../../../dx/ui/dx_hooks.dta +) +(update_icon + {if [$this slot_com] + {set [DrawNode showing] + {== + [$this track_type] + [([$this slot_com] RBOvershellSlotCom) display_track_type] + } + } + } +) diff --git a/_ark/ps4/ui_prerivals/overshell/slot.entity_ps4 b/_ark/ps4/ui_prerivals/overshell/slot.entity_ps4 new file mode 100644 index 0000000..66b1ea6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/overshell/slot.entity_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/list_item_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/practice/list_item_selected_ui.png_ps4 new file mode 100644 index 0000000..09e4012 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/list_item_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_hamburger_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_hamburger_ui.bmp_ps4 new file mode 100644 index 0000000..c20a9ea Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_hamburger_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_left_1_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_left_1_ui.bmp_ps4 new file mode 100644 index 0000000..5d797ad Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_left_1_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_left_2_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_left_2_ui.bmp_ps4 new file mode 100644 index 0000000..c914fd8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_left_2_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_left_bump_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_left_bump_ui.bmp_ps4 new file mode 100644 index 0000000..742c423 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_left_bump_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_left_trigger_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_left_trigger_ui.bmp_ps4 new file mode 100644 index 0000000..c0cf031 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_left_trigger_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_options_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/practice/practice_options_ui.bmp_ps4 new file mode 100644 index 0000000..368dbc3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_options_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_speed_change_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/practice/practice_speed_change_arrow_ui.png_ps4 new file mode 100644 index 0000000..5bc3009 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_speed_change_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/practice_speed_change_ui.png_ps4 b/_ark/ps4/ui_prerivals/practice/practice_speed_change_ui.png_ps4 new file mode 100644 index 0000000..66aa110 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/practice_speed_change_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/right_arrow_disabled_ui.png_ps4 b/_ark/ps4/ui_prerivals/practice/right_arrow_disabled_ui.png_ps4 new file mode 100644 index 0000000..0886fe8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/right_arrow_disabled_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/practice/right_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/practice/right_arrow_ui.png_ps4 new file mode 100644 index 0000000..4fa6fd4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/practice/right_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/scripts/results_no_part.script b/_ark/ps4/ui_prerivals/results/scripts/results_no_part.script new file mode 100644 index 0000000..9a32fe1 --- /dev/null +++ b/_ark/ps4/ui_prerivals/results/scripts/results_no_part.script @@ -0,0 +1,12 @@ +(define Interface + (rev 0) + (description "Passes the slot info from scene to No Part entity.") + (was_interface TRUE) + (props + (slot_index int + (set_on_instance TRUE) + (help "The slot value for what Player's data should be used.") + (default -1)))) +(exit + {dx_file_delete "insong.dta"} +) \ No newline at end of file diff --git a/_ark/ps4/ui_prerivals/results/textures/band_high_score_star_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/band_high_score_star_ui.png_ps4 new file mode 100644 index 0000000..1dd242c Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/band_high_score_star_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/band_icon_med_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/band_icon_med_ui.png_ps4 new file mode 100644 index 0000000..3e5f6fd Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/band_icon_med_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/band_icon_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/band_icon_small_ui.png_ps4 new file mode 100644 index 0000000..1fcf60a Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/band_icon_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/brutal_fx_text.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/brutal_fx_text.png_ps4 new file mode 100644 index 0000000..2c0b4fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/brutal_fx_text.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/brutal_glow_ring_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/brutal_glow_ring_ui.png_ps4 new file mode 100644 index 0000000..931df33 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/brutal_glow_ring_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/brutal_green_burst_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/brutal_green_burst_ui.png_ps4 new file mode 100644 index 0000000..ca99ea9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/brutal_green_burst_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/brutal_results_title_bar_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/brutal_results_title_bar_ui.png_ps4 new file mode 100644 index 0000000..8892bfa Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/brutal_results_title_bar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/brutal_selected_panel03_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/brutal_selected_panel03_ui.png_ps4 new file mode 100644 index 0000000..4c7dbdc Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/brutal_selected_panel03_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/bullseye_1920_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/bullseye_1920_ui.png_ps4 new file mode 100644 index 0000000..9bce7c9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/bullseye_1920_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/bullseye_gig_results_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/bullseye_gig_results_ui.png_ps4 new file mode 100644 index 0000000..a0f8729 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/bullseye_gig_results_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/bullseye_shadow_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/bullseye_shadow_ui.png_ps4 new file mode 100644 index 0000000..64ef5cb Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/bullseye_shadow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/divider_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/divider_red_ui.png_ps4 new file mode 100644 index 0000000..0e7b27f Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/divider_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/divider_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/divider_ui.png_ps4 new file mode 100644 index 0000000..c133f46 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/divider_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fake_temp_helpbar_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/fake_temp_helpbar_ui.png_ps4 new file mode 100644 index 0000000..d5c00db Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fake_temp_helpbar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fc_fx01_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fc_fx01_ui.bmp_ps4 new file mode 100644 index 0000000..ffce757 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fc_fx01_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fc_fx02_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fc_fx02_ui.bmp_ps4 new file mode 100644 index 0000000..96b5f1d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fc_fx02_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fc_fx03_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fc_fx03_ui.bmp_ps4 new file mode 100644 index 0000000..2ae157d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fc_fx03_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fc_fx04_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fc_fx04_ui.bmp_ps4 new file mode 100644 index 0000000..cafc7b7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fc_fx04_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fc_fx_flare_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fc_fx_flare_ui.bmp_ps4 new file mode 100644 index 0000000..b1a82c3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fc_fx_flare_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/fx_text.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/fx_text.bmp_ps4 new file mode 100644 index 0000000..d9f22be Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/fx_text.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/gameplay_screenshot_test_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/gameplay_screenshot_test_ui.bmp_ps4 new file mode 100644 index 0000000..23243d7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/gameplay_screenshot_test_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/gig_results_blue_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/gig_results_blue_panel_ui.png_ps4 new file mode 100644 index 0000000..b4cc2e1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/gig_results_blue_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/glow_ring_04.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/glow_ring_04.bmp_ps4 new file mode 100644 index 0000000..0717fd6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/glow_ring_04.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/glow_ring_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/glow_ring_ui.png_ps4 new file mode 100644 index 0000000..eb95aa0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/glow_ring_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/golden_eye_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/golden_eye_ui.png_ps4 new file mode 100644 index 0000000..044cbf9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/golden_eye_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/green_burst_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/green_burst_ui.bmp_ps4 new file mode 100644 index 0000000..8329791 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/green_burst_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_bass_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_bass_tr_ui.png_ps4 new file mode 100644 index 0000000..4b30d75 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_bass_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_bass_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_bass_ui.png_ps4 new file mode 100644 index 0000000..3112f29 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_bass_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_drums_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_drums_tr_ui.png_ps4 new file mode 100644 index 0000000..b0c23be Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_drums_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_drums_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_drums_ui.png_ps4 new file mode 100644 index 0000000..cc94cce Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_drums_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_fc_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_fc_ui.png_ps4 new file mode 100644 index 0000000..beb5ea8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_fc_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_guitar_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_guitar_tr_ui.png_ps4 new file mode 100644 index 0000000..5aa2b66 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_guitar_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_guitar_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_guitar_ui.png_ps4 new file mode 100644 index 0000000..f1ecb9d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_guitar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_harmony2_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_harmony2_tr_ui.png_ps4 new file mode 100644 index 0000000..6a150fe Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_harmony2_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_harmony3_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_harmony3_tr_ui.png_ps4 new file mode 100644 index 0000000..88c79c2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_harmony3_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_improv_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_improv_tr_ui.png_ps4 new file mode 100644 index 0000000..54edf17 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_improv_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_pro_drums_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_pro_drums_tr_ui.png_ps4 new file mode 100644 index 0000000..6674aad Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_pro_drums_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_vocal_tr_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_vocal_tr_ui.png_ps4 new file mode 100644 index 0000000..2cf7304 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_vocal_tr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/icon_vocal_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/icon_vocal_ui.png_ps4 new file mode 100644 index 0000000..e11b1e9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/icon_vocal_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/preethree_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/preethree_panel_ui.png_ps4 new file mode 100644 index 0000000..c9407b4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/preethree_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/results__fail_title_bar_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/results__fail_title_bar_ui.png_ps4 new file mode 100644 index 0000000..bf229cc Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/results__fail_title_bar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/results_layout_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/results_layout_ui.png_ps4 new file mode 100644 index 0000000..b2c19d4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/results_layout_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/results_title_bar_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/results_title_bar_ui.png_ps4 new file mode 100644 index 0000000..123f16a Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/results_title_bar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/results_yellow_select_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/results_yellow_select_ui.png_ps4 new file mode 100644 index 0000000..355f22d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/results_yellow_select_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/scroll_arrows_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/scroll_arrows_ui.bmp_ps4 new file mode 100644 index 0000000..2c67e3d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/scroll_arrows_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel01_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel01_ui.bmp_ps4 new file mode 100644 index 0000000..b27efbc Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel01_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel02_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel02_ui.bmp_ps4 new file mode 100644 index 0000000..8142515 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel02_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel03_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel03_ui.bmp_ps4 new file mode 100644 index 0000000..7e9a78f Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel03_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel04_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel04_ui.bmp_ps4 new file mode 100644 index 0000000..06df042 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/selected_blue_panel04_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/stage_presence_burst_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/results/textures/stage_presence_burst_ui.bmp_ps4 new file mode 100644 index 0000000..1f282fb Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/stage_presence_burst_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/stage_presence_icon_small.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/stage_presence_icon_small.png_ps4 new file mode 100644 index 0000000..e4c86e0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/stage_presence_icon_small.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/star_small_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/star_small_empty_ui.png_ps4 new file mode 100644 index 0000000..d4182a1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/star_small_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/star_small_gold_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/star_small_gold_ui.png_ps4 new file mode 100644 index 0000000..7545687 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/star_small_gold_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/star_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/star_small_ui.png_ps4 new file mode 100644 index 0000000..0b4b15b Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/star_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/taunt_pop_up_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/taunt_pop_up_bg_ui.png_ps4 new file mode 100644 index 0000000..083fa17 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/taunt_pop_up_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/temp_fade_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/temp_fade_bg_ui.png_ps4 new file mode 100644 index 0000000..2fcd685 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/temp_fade_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_ui.png_ps4 new file mode 100644 index 0000000..3b6482a Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_v2_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_v2_ui.png_ps4 new file mode 100644 index 0000000..1234336 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/top_panel_percentage_v2_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/total_stars_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/total_stars_ui.png_ps4 new file mode 100644 index 0000000..293ce7c Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/total_stars_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/yellow_selection_down_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_down_ui.png_ps4 new file mode 100644 index 0000000..fb4985d Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_down_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_down_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_down_ui.png_ps4 new file mode 100644 index 0000000..09ef7d6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_down_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_ui.png_ps4 b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_ui.png_ps4 new file mode 100644 index 0000000..e156dc4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/results/textures/yellow_selection_up_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/shared/fake_bg.scene_ps4 b/_ark/ps4/ui_prerivals/shared/fake_bg.scene_ps4 new file mode 100644 index 0000000..890ff7a Binary files /dev/null and b/_ark/ps4/ui_prerivals/shared/fake_bg.scene_ps4 differ diff --git a/_ark/ps4/ui_prerivals/shared/fake_bg_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/shared/fake_bg_ui.bmp_ps4 new file mode 100644 index 0000000..8380ee6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/shared/fake_bg_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/startup/mnemonix1.bk2 b/_ark/ps4/ui_prerivals/startup/mnemonix1.bk2 new file mode 100644 index 0000000..4fbb63b Binary files /dev/null and b/_ark/ps4/ui_prerivals/startup/mnemonix1.bk2 differ diff --git a/_ark/ps4/ui_prerivals/textures/album_placeholder.png_ps4 b/_ark/ps4/ui_prerivals/textures/album_placeholder.png_ps4 new file mode 100644 index 0000000..09c7356 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/album_placeholder.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/band_wars/bw_achievement_and_badge_grid_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/band_wars/bw_achievement_and_badge_grid_ui.bmp_ps4 new file mode 100644 index 0000000..c2e0465 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/band_wars/bw_achievement_and_badge_grid_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/band_wars/bw_search_players_grid_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/band_wars/bw_search_players_grid_ui.bmp_ps4 new file mode 100644 index 0000000..81f497d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/band_wars/bw_search_players_grid_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/bass.png_ps4 b/_ark/ps4/ui_prerivals/textures/bass.png_ps4 new file mode 100644 index 0000000..fb1d5de Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/bass.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_meter_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_bg_ui.png_ps4 new file mode 100644 index 0000000..1bbb9ab Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_meter_fill_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_fill_ui.png_ps4 new file mode 100644 index 0000000..b9783be Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_fill_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.bmp_ps4 new file mode 100644 index 0000000..c2a6aff Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.png_ps4 new file mode 100644 index 0000000..4b0322f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_outline_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_meter_silver_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_silver_ui.png_ps4 new file mode 100644 index 0000000..b35952f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_meter_silver_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_star_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_star_ui.png_ps4 new file mode 100644 index 0000000..38a7f3b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_star_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_temp_darkness_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_temp_darkness_bg_ui.png_ps4 new file mode 100644 index 0000000..d24a6f1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_temp_darkness_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_wager_grid_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_grid_ui.bmp_ps4 new file mode 100644 index 0000000..49c770d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_grid_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_wager_meter_shell_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_meter_shell_ui.bmp_ps4 new file mode 100644 index 0000000..0dcffe9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_meter_shell_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_wager_screen_top_banner_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_screen_top_banner_ui.bmp_ps4 new file mode 100644 index 0000000..92e4dbf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_screen_top_banner_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/btm_wager_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_selected_ui.bmp_ps4 new file mode 100644 index 0000000..d0e251c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/btm_wager_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/difficulty_pip_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/btm/difficulty_pip_empty_ui.png_ps4 new file mode 100644 index 0000000..5b9cf09 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/difficulty_pip_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/btm/star_rock_icon.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/btm/star_rock_icon.bmp_ps4 new file mode 100644 index 0000000..6306cdf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/btm/star_rock_icon.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_off_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_off_ui.png_ps4 new file mode 100644 index 0000000..043b05d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_off_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_ui.png_ps4 new file mode 100644 index 0000000..26989af Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_dots_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_fail_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_fail_ui.png_ps4 new file mode 100644 index 0000000..777dd27 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_fail_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_speaker_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_speaker_ui.png_ps4 new file mode 100644 index 0000000..962972e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_speaker_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_tv_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_tv_ui.png_ps4 new file mode 100644 index 0000000..ac9424a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_guitar_tv_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_speaker_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_speaker_ui.png_ps4 new file mode 100644 index 0000000..a9b578f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_speaker_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/calibration_success_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/calibration_success_ui.png_ps4 new file mode 100644 index 0000000..9bf8cc8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/calibration_success_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/light_off_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/light_off_ui.png_ps4 new file mode 100644 index 0000000..6c86560 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/light_off_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/light_on_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/light_on_ui.png_ps4 new file mode 100644 index 0000000..ebc43af Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/light_on_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_backdrop_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_backdrop_ui.png_ps4 new file mode 100644 index 0000000..0da24db Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_backdrop_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_needle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_needle_ui.png_ps4 new file mode 100644 index 0000000..852307c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_needle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_ui.png_ps4 new file mode 100644 index 0000000..fe2f4de Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/calibration/video_calibration_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/band_item_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/band_item_selected_ui.png_ps4 new file mode 100644 index 0000000..f9ea556 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/band_item_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_above_ui.png_ps4 new file mode 100644 index 0000000..731ec3a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_below_ui.png_ps4 new file mode 100644 index 0000000..ce21173 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/band_list_item_below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_locked_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_locked_ui.bmp_ps4 new file mode 100644 index 0000000..e7bd02d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_locked_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_ui.bmp_ps4 new file mode 100644 index 0000000..d50b1a3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_flag_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_100px_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_100px_ui.png_ps4 new file mode 100644 index 0000000..548aba4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_100px_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_100px_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_100px_ui.png_ps4 new file mode 100644 index 0000000..b078168 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_100px_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_small_ui.png_ps4 new file mode 100644 index 0000000..b078168 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_ui.png_ps4 new file mode 100644 index 0000000..b078168 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_locked_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_small_ui.png_ps4 new file mode 100644 index 0000000..548aba4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_ui.png_ps4 new file mode 100644 index 0000000..548aba4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/big_break_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/campaign_gig_shade_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/campaign_gig_shade_small_ui.png_ps4 new file mode 100644 index 0000000..121116a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/campaign_gig_shade_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_large_ui.png_ps4 new file mode 100644 index 0000000..99cf7d0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_small_ui.png_ps4 new file mode 100644 index 0000000..8520cf8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/campaign_shade_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/create_band_plus_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/create_band_plus_icon_ui.png_ps4 new file mode 100644 index 0000000..8dc63ad Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/create_band_plus_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/difficulty_nodes_tour_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/difficulty_nodes_tour_ui.bmp_ps4 new file mode 100644 index 0000000..912c079 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/difficulty_nodes_tour_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/fan_gig_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/fan_gig_icon_ui.png_ps4 new file mode 100644 index 0000000..c3999e4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/fan_gig_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/icon_backdrop.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/icon_backdrop.png_ps4 new file mode 100644 index 0000000..5d96e41 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/icon_backdrop.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/icon_border.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/icon_border.png_ps4 new file mode 100644 index 0000000..2b1455e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/icon_border.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/icon_center.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/icon_center.png_ps4 new file mode 100644 index 0000000..2b7b753 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/icon_center.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/icon_center_blue.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/icon_center_blue.png_ps4 new file mode 100644 index 0000000..1657812 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/icon_center_blue.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/icon_glow.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/icon_glow.png_ps4 new file mode 100644 index 0000000..e59aa10 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/icon_glow.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.bmp_ps4 new file mode 100644 index 0000000..bc1294b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.png_ps4 new file mode 100644 index 0000000..a801e8c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/new_gear_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/path_solid.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/path_solid.png_ps4 new file mode 100644 index 0000000..a3709ae Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/path_solid.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/path_uv.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/path_uv.bmp_ps4 new file mode 100644 index 0000000..9590da5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/path_uv.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/path_uv.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/path_uv.png_ps4 new file mode 100644 index 0000000..1dbd7dd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/path_uv.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/path_uv_util.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/path_uv_util.bmp_ps4 new file mode 100644 index 0000000..2411eb7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/path_uv_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/show_item_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/show_item_selected_ui.png_ps4 new file mode 100644 index 0000000..a6a64e3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/show_item_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_above_ui.png_ps4 new file mode 100644 index 0000000..a505950 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_below_ui.png_ps4 new file mode 100644 index 0000000..2586f91 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_tour_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_tour_ui.bmp_ps4 new file mode 100644 index 0000000..89e784a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/show_list_item_tour_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/small_star_gold_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/small_star_gold_ui.png_ps4 new file mode 100644 index 0000000..2fa58af Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/small_star_gold_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/small_star_grey_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/small_star_grey_ui.bmp_ps4 new file mode 100644 index 0000000..9438a0a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/small_star_grey_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_effect_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_effect_ui.png_ps4 new file mode 100644 index 0000000..e84e09c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_effect_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_ui.png_ps4 new file mode 100644 index 0000000..69e7c1b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_bronze_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_gold_effect_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_effect_ui.png_ps4 new file mode 100644 index 0000000..aceb33d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_effect_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_gold_tour_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_tour_ui.png_ps4 new file mode 100644 index 0000000..aa658b9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_tour_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_gold_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_ui.png_ps4 new file mode 100644 index 0000000..7943095 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_gold_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_grey_tour_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_grey_tour_ui.png_ps4 new file mode 100644 index 0000000..3c88921 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_grey_tour_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_grey_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_grey_ui.png_ps4 new file mode 100644 index 0000000..850203d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_grey_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_silver_effect_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_silver_effect_ui.png_ps4 new file mode 100644 index 0000000..fe54127 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_silver_effect_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_silver_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_silver_ui.png_ps4 new file mode 100644 index 0000000..9f4822a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_silver_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_white_tour_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_white_tour_ui.png_ps4 new file mode 100644 index 0000000..6a79cef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_white_tour_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/star_white_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/star_white_ui.png_ps4 new file mode 100644 index 0000000..6621bf6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/star_white_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_choice_path_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_choice_path_ui.png_ps4 new file mode 100644 index 0000000..e05b2f3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_choice_path_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_item_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_item_selected_ui.png_ps4 new file mode 100644 index 0000000..5a73e6c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_item_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_completed_pip_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_completed_pip_ui.png_ps4 new file mode 100644 index 0000000..a06bc13 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_completed_pip_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.bmp_ps4 new file mode 100644 index 0000000..0ba1b0d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.png_ps4 new file mode 100644 index 0000000..0ba1b0d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_current_pip_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_dotted_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_dotted_large_ui.png_ps4 new file mode 100644 index 0000000..875c953 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_dotted_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_locked_pip_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_locked_pip_ui.png_ps4 new file mode 100644 index 0000000..94c629d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_locked_pip_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_bottom_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_bottom_ui.png_ps4 new file mode 100644 index 0000000..2f15745 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_bottom_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_top_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_top_ui.png_ps4 new file mode 100644 index 0000000..46bdfd5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_dotted_top_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_bottom_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_bottom_ui.png_ps4 new file mode 100644 index 0000000..428e6ff Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_bottom_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_top_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_top_ui.png_ps4 new file mode 100644 index 0000000..64929c3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign/tour_stop_small_solid_top_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_circle.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_circle.png_ps4 new file mode 100644 index 0000000..67eb839 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_circle.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_ring.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_ring.png_ps4 new file mode 100644 index 0000000..c43ca4a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_history/campaign_bg_ring.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_locked_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_locked_ui.png_ps4 new file mode 100644 index 0000000..a1cd7f7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_locked_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_unlocked_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_unlocked_ui.png_ps4 new file mode 100644 index 0000000..3072dd2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_history/star_progress_unlocked_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_amsterdam_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_amsterdam_ui.png_ps4 new file mode 100644 index 0000000..aa3032e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_amsterdam_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_auckland_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_auckland_ui.png_ps4 new file mode 100644 index 0000000..5c6cc0e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_auckland_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_austin_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_austin_ui.png_ps4 new file mode 100644 index 0000000..14117bd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_austin_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_berlin_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_berlin_ui.png_ps4 new file mode 100644 index 0000000..beaf10b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_berlin_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_bogota_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_bogota_ui.png_ps4 new file mode 100644 index 0000000..31c7b0c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_bogota_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_boston_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_boston_ui.png_ps4 new file mode 100644 index 0000000..bc9ff5e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_boston_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_dublin_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_dublin_ui.png_ps4 new file mode 100644 index 0000000..03cdf71 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_dublin_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_la_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_la_ui.png_ps4 new file mode 100644 index 0000000..a64d349 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_la_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_lima_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_lima_ui.png_ps4 new file mode 100644 index 0000000..0ea32be Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_lima_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_london_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_london_ui.png_ps4 new file mode 100644 index 0000000..ce193b9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_london_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_minneapolis_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_minneapolis_ui.png_ps4 new file mode 100644 index 0000000..e4ae4a5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_minneapolis_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_montreal_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_montreal_ui.png_ps4 new file mode 100644 index 0000000..86f6535 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_montreal_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_moscow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_moscow_ui.png_ps4 new file mode 100644 index 0000000..7c48739 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_moscow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_newyork_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_newyork_ui.png_ps4 new file mode 100644 index 0000000..489524f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_newyork_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_paris_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_paris_ui.png_ps4 new file mode 100644 index 0000000..863b589 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_paris_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_perth_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_perth_ui.png_ps4 new file mode 100644 index 0000000..8950840 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_perth_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_reykjavik_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_reykjavik_ui.png_ps4 new file mode 100644 index 0000000..bdae5f9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_reykjavik_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rio_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rio_ui.png_ps4 new file mode 100644 index 0000000..c289c63 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rio_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rome_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rome_ui.png_ps4 new file mode 100644 index 0000000..5010e72 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_rome_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seattle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seattle_ui.png_ps4 new file mode 100644 index 0000000..0ce61d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seattle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seoul_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seoul_ui.png_ps4 new file mode 100644 index 0000000..75ed717 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_seoul_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_shanghai_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_shanghai_ui.png_ps4 new file mode 100644 index 0000000..fc82162 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_shanghai_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stlouis_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stlouis_ui.png_ps4 new file mode 100644 index 0000000..bfb0307 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stlouis_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stockholm_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stockholm_ui.png_ps4 new file mode 100644 index 0000000..5f6ceed Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_stockholm_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_sydney_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_sydney_ui.png_ps4 new file mode 100644 index 0000000..0a89d06 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_sydney_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_tokyo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_tokyo_ui.png_ps4 new file mode 100644 index 0000000..c54dc7d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_tokyo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_vancouver_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_vancouver_ui.png_ps4 new file mode 100644 index 0000000..4f14def Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_hometown/hometown_vancouver_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_choice_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_choice_ui.png_ps4 new file mode 100644 index 0000000..7cb4c48 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_choice_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2a_ui.png_ps4 new file mode 100644 index 0000000..a123c25 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2b_ui.png_ps4 new file mode 100644 index 0000000..0922b11 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour2b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3a_ui.png_ps4 new file mode 100644 index 0000000..99f8db3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3b_ui.png_ps4 new file mode 100644 index 0000000..5ee84a0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3c_ui.png_ps4 new file mode 100644 index 0000000..f3fa22a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour3c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4a_ui.png_ps4 new file mode 100644 index 0000000..a7d855b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4b_ui.png_ps4 new file mode 100644 index 0000000..94782bb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4c_ui.png_ps4 new file mode 100644 index 0000000..0240216 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour4c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5a_ui.png_ps4 new file mode 100644 index 0000000..2b06276 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5b_ui.png_ps4 new file mode 100644 index 0000000..18e9b9d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5c_ui.png_ps4 new file mode 100644 index 0000000..d965126 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour5c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6a_ui.png_ps4 new file mode 100644 index 0000000..0732889 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6b_ui.png_ps4 new file mode 100644 index 0000000..9134ad7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6c_ui.png_ps4 new file mode 100644 index 0000000..8d044eb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour6c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7a_ui.png_ps4 new file mode 100644 index 0000000..f46e9a1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7b_ui.png_ps4 new file mode 100644 index 0000000..eedde4d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7c_ui.png_ps4 new file mode 100644 index 0000000..5b54ed3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour7c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8a_ui.png_ps4 new file mode 100644 index 0000000..163abd0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8b_ui.png_ps4 new file mode 100644 index 0000000..38efb78 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8c_ui.png_ps4 new file mode 100644 index 0000000..ce72916 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour8c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour_background.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour_background.png_ps4 new file mode 100644 index 0000000..b8dd5b9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/campaign_tour_background.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/narrative_placeholder.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/narrative_placeholder.png_ps4 new file mode 100644 index 0000000..c2a1b9d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/narrative_placeholder.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_narrative/tribute_tour_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_narrative/tribute_tour_ui.png_ps4 new file mode 100644 index 0000000..8d044eb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_narrative/tribute_tour_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/badge_middle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/badge_middle_ui.png_ps4 new file mode 100644 index 0000000..fd4a065 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/badge_middle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_lit_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_lit_ui.png_ps4 new file mode 100644 index 0000000..8146e01 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_lit_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_ui.png_ps4 new file mode 100644 index 0000000..b83bef7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_ui.png_ps4 new file mode 100644 index 0000000..db6d15c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_small_ui.png_ps4 new file mode 100644 index 0000000..f9cd166 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_fans_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_large_ui.png_ps4 new file mode 100644 index 0000000..792d3f3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_ui.png_ps4 new file mode 100644 index 0000000..fa4a628 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_gear_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_lit_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_lit_ui.png_ps4 new file mode 100644 index 0000000..03477dc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_lit_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_ui.png_ps4 new file mode 100644 index 0000000..f5f9c22 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_ui.png_ps4 new file mode 100644 index 0000000..e3cd894 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_small_ui.png_ps4 new file mode 100644 index 0000000..e5ffec0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_money_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_progress_icon_shadow.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_progress_icon_shadow.png_ps4 new file mode 100644 index 0000000..f86dfee Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_progress_icon_shadow.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_large_ui.png_ps4 new file mode 100644 index 0000000..d4e0a00 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_small_ui.png_ps4 new file mode 100644 index 0000000..d4e0a00 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_very_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_very_small_ui.png_ps4 new file mode 100644 index 0000000..d4e0a00 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_shows_very_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_completed_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_completed_ui.bmp_ps4 new file mode 100644 index 0000000..73c9274 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_completed_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_completed_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_completed_ui.bmp_ps4 new file mode 100644 index 0000000..05c2036 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_completed_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_ui.bmp_ps4 new file mode 100644 index 0000000..44bcb4c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_large_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_ui.bmp_ps4 new file mode 100644 index 0000000..c71a7e6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_large_ui.png_ps4 new file mode 100644 index 0000000..03ab5a8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_ui.png_ps4 new file mode 100644 index 0000000..ccba854 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_bar_unlocked_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_large_ui.png_ps4 new file mode 100644 index 0000000..8b1d4a2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_ui.png_ps4 new file mode 100644 index 0000000..f369918 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/campaign_star_progress_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_fans_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_fans_icon_ui.png_ps4 new file mode 100644 index 0000000..61f7b49 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_fans_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_money_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_money_icon_ui.png_ps4 new file mode 100644 index 0000000..ecb843e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_money_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_bar_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_bar_ui.png_ps4 new file mode 100644 index 0000000..2274fff Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_bar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_ui.png_ps4 new file mode 100644 index 0000000..dbbf319 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/large/campaign_star_progress_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/campaign_progress/solid_ring_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/campaign_progress/solid_ring_ui.png_ps4 new file mode 100644 index 0000000..15e68ac Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/campaign_progress/solid_ring_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/affordable_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/affordable_ui.png_ps4 new file mode 100644 index 0000000..3ab1f0f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/affordable_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/char_loader_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/char_loader_icon_ui.png_ps4 new file mode 100644 index 0000000..c932d27 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/char_loader_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.bmp_ps4 new file mode 100644 index 0000000..6bbfb5c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.png_ps4 new file mode 100644 index 0000000..fc95b00 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/character_jg_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_male_head_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_male_head_ui.png_ps4 new file mode 100644 index 0000000..1bd4701 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_male_head_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_ui.png_ps4 new file mode 100644 index 0000000..4bd14d0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/character_loader_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/character_shade_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/character_shade_ui.png_ps4 new file mode 100644 index 0000000..c077605 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/character_shade_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/color_pallette_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/color_pallette_item_ui.png_ps4 new file mode 100644 index 0000000..41dee1e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/color_pallette_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/customize_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/customize_panel_ui.png_ps4 new file mode 100644 index 0000000..d449be6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/customize_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/expensive_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/expensive_ui.png_ps4 new file mode 100644 index 0000000..7827293 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/expensive_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/jg_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/jg_selected_ui.bmp_ps4 new file mode 100644 index 0000000..19b6083 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/jg_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/new_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/new_item_ui.png_ps4 new file mode 100644 index 0000000..3aa0805 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/new_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/new_rock_shop_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/new_rock_shop_item_ui.png_ps4 new file mode 100644 index 0000000..d84e930 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/new_rock_shop_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/character_creator/price_tag_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/character_creator/price_tag_ui.png_ps4 new file mode 100644 index 0000000..a84821c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/character_creator/price_tag_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/city_select/large_star_white_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/city_select/large_star_white_ui.png_ps4 new file mode 100644 index 0000000..25ad333 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/city_select/large_star_white_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/city_select/lock_large_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/city_select/lock_large_ui.png_ps4 new file mode 100644 index 0000000..da6bc95 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/city_select/lock_large_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/city_select/lock_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/city_select/lock_ui.png_ps4 new file mode 100644 index 0000000..106d380 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/city_select/lock_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/city_select/small_star_white_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/city_select/small_star_white_ui.png_ps4 new file mode 100644 index 0000000..7fe7c2d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/city_select/small_star_white_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/crowd_meter_glow_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/crowd_meter_glow_ui.bmp_ps4 new file mode 100644 index 0000000..632734f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/crowd_meter_glow_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/crowd_meter_pointer_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/crowd_meter_pointer_ui.png_ps4 new file mode 100644 index 0000000..cf9b882 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/crowd_meter_pointer_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/crowd_meter_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/crowd_meter_ui.png_ps4 new file mode 100644 index 0000000..03d65c6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/crowd_meter_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.bmp_ps4 new file mode 100644 index 0000000..45efe55 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.png_ps4 new file mode 100644 index 0000000..25000cc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_ui.png_ps4 new file mode 100644 index 0000000..769ba68 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_w_lines_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_w_lines_ui.png_ps4 new file mode 100644 index 0000000..34c902f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_frame_w_lines_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.bmp_ps4 new file mode 100644 index 0000000..a4252d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.png_ps4 new file mode 100644 index 0000000..dcb254b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/difficulty_full_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_display/larger_devil_head_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_display/larger_devil_head_ui.png_ps4 new file mode 100644 index 0000000..cd5caee Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_display/larger_devil_head_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/difficulty_pip_empty.png_ps4 b/_ark/ps4/ui_prerivals/textures/difficulty_pip_empty.png_ps4 new file mode 100644 index 0000000..5c61dc3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/difficulty_pip_empty.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/drum.png_ps4 b/_ark/ps4/ui_prerivals/textures/drum.png_ps4 new file mode 100644 index 0000000..1159927 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/drum.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/guitar.png_ps4 b/_ark/ps4/ui_prerivals/textures/guitar.png_ps4 new file mode 100644 index 0000000..d56dbd4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/guitar.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/blue_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/blue_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..e2320b9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/blue_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/button_inset_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/button_inset_ui.bmp_ps4 new file mode 100644 index 0000000..27a84cb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/button_inset_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/green_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/green_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..282b443 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/green_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/hamburger_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/hamburger_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..cc30deb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/hamburger_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..b9e16ce Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_ui.png_ps4 new file mode 100644 index 0000000..b9e16ce Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/horizontal_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/options_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/options_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..b7c1ee0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/options_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/orange_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/orange_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..f3ed848 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/orange_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..959db2a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..7079acb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_blue_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..90e04f3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..cf934dc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_green_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..c221aa5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..6127bd2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_orange_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..b356790 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..610ed5b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_red_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..85dd6d9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..7a192a0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/ps_yellow_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/red_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/red_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..01d9540 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/red_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/select_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/select_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..11811c1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/select_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/start_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/start_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..1e37dcd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/start_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..e658595 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_ui.png_ps4 new file mode 100644 index 0000000..e658595 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/vertical_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..ae8d89a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..768ef36 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_blue_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..0bead6a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..5b90e16 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_green_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..add1ef7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..b7bff70 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_orange_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..2eda3a9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..37e2972 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_red_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_combo_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_combo_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..92b977d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_combo_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_vocals_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_vocals_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..ccbd014 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/xo_yellow_vocals_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/help_bar/yellow_prompt_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/help_bar/yellow_prompt_new_ui.bmp_ps4 new file mode 100644 index 0000000..6d9013a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/help_bar/yellow_prompt_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullheight_slider_track_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullheight_slider_track_ui.bmp_ps4 new file mode 100644 index 0000000..be9ad46 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullheight_slider_track_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.bmp_ps4 new file mode 100644 index 0000000..df8b718 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.png_ps4 new file mode 100644 index 0000000..29254fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1at_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1at_ui.png_ps4 new file mode 100644 index 0000000..0dd8ecf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1at_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.bmp_ps4 new file mode 100644 index 0000000..87b1ea2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.png_ps4 new file mode 100644 index 0000000..1464c55 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_1below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_above_ui.bmp_ps4 new file mode 100644 index 0000000..6c3fd9a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_below_ui.bmp_ps4 new file mode 100644 index 0000000..9a660c7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_bundle_overlay_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_bundle_overlay_ui.bmp_ps4 new file mode 100644 index 0000000..5f0e2f4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_bundle_overlay_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.bmp_ps4 new file mode 100644 index 0000000..9e5d73e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.png_ps4 new file mode 100644 index 0000000..21c8b52 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_collapsed_header_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_textonly_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_textonly_ui.bmp_ps4 new file mode 100644 index 0000000..4ca0125 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_textonly_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_ui.bmp_ps4 new file mode 100644 index 0000000..0d3d00a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_expanded_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_album_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_album_ui.bmp_ps4 new file mode 100644 index 0000000..eae8ea7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_album_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_header_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_header_ui.bmp_ps4 new file mode 100644 index 0000000..fcacd82 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_header_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_shadow_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_shadow_ui.bmp_ps4 new file mode 100644 index 0000000..16296eb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_shadow_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_ui.bmp_ps4 new file mode 100644 index 0000000..7accbb6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_textonly_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.bmp_ps4 new file mode 100644 index 0000000..b078a1f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.png_ps4 new file mode 100644 index 0000000..b148e5d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_underneath_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_underneath_ui.bmp_ps4 new file mode 100644 index 0000000..3727877 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_underneath_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselectable_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselectable_ui.bmp_ps4 new file mode 100644 index 0000000..6a9a036 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselectable_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselected_ui.bmp_ps4 new file mode 100644 index 0000000..6d69603 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_fullscreen_unselected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.bmp_ps4 new file mode 100644 index 0000000..9d44f27 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.png_ps4 new file mode 100644 index 0000000..f2c0234 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.bmp_ps4 new file mode 100644 index 0000000..367b16a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.png_ps4 new file mode 100644 index 0000000..ee83809 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_collapsed_1below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_expanded_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_expanded_ui.bmp_ps4 new file mode 100644 index 0000000..91a1108 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_expanded_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_brutal_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_brutal_ui.png_ps4 new file mode 100644 index 0000000..c72c116 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_brutal_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_ui.png_ps4 new file mode 100644 index 0000000..b0a2b5e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_halfscreen_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1above_ui.png_ps4 new file mode 100644 index 0000000..91aaa80 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1at_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1at_ui.png_ps4 new file mode 100644 index 0000000..d411173 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1at_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1below_ui.png_ps4 new file mode 100644 index 0000000..c91f4a2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_individual_collapsed_1below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_above_ui.bmp_ps4 new file mode 100644 index 0000000..88aba10 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_below_ui.bmp_ps4 new file mode 100644 index 0000000..0196a0c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_selected_ui.bmp_ps4 new file mode 100644 index 0000000..0728cf6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_sort_area_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_sort_area_ui.bmp_ps4 new file mode 100644 index 0000000..afa97a9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_leaderboards_sort_area_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_above_ui.bmp_ps4 new file mode 100644 index 0000000..b7f6785 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_below_ui.bmp_ps4 new file mode 100644 index 0000000..bc91ed6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_above_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_above_ui.bmp_ps4 new file mode 100644 index 0000000..b63b9cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_above_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_below_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_below_ui.bmp_ps4 new file mode 100644 index 0000000..53b56d4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_gig_below_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_header_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_header_ui.bmp_ps4 new file mode 100644 index 0000000..cc40dd2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_partialscreen_collapsed_header_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsearch_slider_track_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsearch_slider_track_ui.bmp_ps4 new file mode 100644 index 0000000..1f11347 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsearch_slider_track_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsubheader_slider_track_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsubheader_slider_track_ui.bmp_ps4 new file mode 100644 index 0000000..d8ea086 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/jg_storewithsubheader_slider_track_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_orange_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_orange_ui.png_ps4 new file mode 100644 index 0000000..e88a641 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_orange_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_red_ui.png_ps4 new file mode 100644 index 0000000..e88a641 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_somp_ready_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_somp_ready_ui.png_ps4 new file mode 100644 index 0000000..52853cc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_somp_ready_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_ui.png_ps4 new file mode 100644 index 0000000..52853cc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_scale9_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_thumb_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_thumb_ui.png_ps4 new file mode 100644 index 0000000..96e5930 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jewlers_glass/scroll_bar_thumb_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_bg_ui.png_ps4 new file mode 100644 index 0000000..335f9f9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_check_mark_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_check_mark_ui.png_ps4 new file mode 100644 index 0000000..60bf9d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_check_mark_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_01_ui.png_ps4 new file mode 100644 index 0000000..c83cfa5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_02_ui.png_ps4 new file mode 100644 index 0000000..05822a8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_clamp_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_frame_lite.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_lite.bmp_ps4 new file mode 100644 index 0000000..198ee7a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_lite.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.bmp_ps4 new file mode 100644 index 0000000..ddb5d74 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.png_ps4 new file mode 100644 index 0000000..64a3fc5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_framelong_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_framelong_ui.png_ps4 new file mode 100644 index 0000000..4edf29a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_framelong_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_01_ui.png_ps4 new file mode 100644 index 0000000..910617e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_02_ui.png_ps4 new file mode 100644 index 0000000..09a1925 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_fret_hand_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_01_ui.png_ps4 new file mode 100644 index 0000000..55fc551 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_02_ui.png_ps4 new file mode 100644 index 0000000..c603529 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_03_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_03_ui.png_ps4 new file mode 100644 index 0000000..411bbf9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_03_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_04_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_04_ui.png_ps4 new file mode 100644 index 0000000..f4e6462 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_04_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_05_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_05_ui.png_ps4 new file mode 100644 index 0000000..467f59a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_05_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_06_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_06_ui.png_ps4 new file mode 100644 index 0000000..4f8a048 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_06_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_07_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_07_ui.png_ps4 new file mode 100644 index 0000000..850ae94 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_07_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_guitar_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_guitar_ui.png_ps4 new file mode 100644 index 0000000..21554e4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_guitar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_hand_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_hand_ui.png_ps4 new file mode 100644 index 0000000..79ab51d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_hand_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_headstock_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_headstock_ui.png_ps4 new file mode 100644 index 0000000..2908f2e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_headstock_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_long_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_long_arrow_ui.png_ps4 new file mode 100644 index 0000000..2152d82 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_long_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_short_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_short_arrow_ui.png_ps4 new file mode 100644 index 0000000..974d22d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_lo_short_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_hi_no_check_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_no_check_ui.png_ps4 new file mode 100644 index 0000000..2f0807f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_hi_no_check_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_kick_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_kick_01_ui.png_ps4 new file mode 100644 index 0000000..62dd54d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_kick_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_kick_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_kick_02_ui.png_ps4 new file mode 100644 index 0000000..f72ab2a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_kick_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_01_ui.png_ps4 new file mode 100644 index 0000000..9b3d61e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_02_ui.png_ps4 new file mode 100644 index 0000000..4a3ceca Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_03_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_03_ui.png_ps4 new file mode 100644 index 0000000..d0b0668 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_03_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_04_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_04_ui.png_ps4 new file mode 100644 index 0000000..49a4614 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_04_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_05_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_05_ui.png_ps4 new file mode 100644 index 0000000..f1c8451 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_05_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_06_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_06_ui.png_ps4 new file mode 100644 index 0000000..2bbe646 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_06_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_07_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_07_ui.png_ps4 new file mode 100644 index 0000000..a03699e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_lo_hi_07_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_strum_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_strum_01_ui.png_ps4 new file mode 100644 index 0000000..b3f141f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_strum_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_strum_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_strum_02_ui.png_ps4 new file mode 100644 index 0000000..6aedd44 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_strum_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_01_ui.png_ps4 new file mode 100644 index 0000000..38e5e79 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_02_ui.png_ps4 new file mode 100644 index 0000000..a2e77bb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tambourine_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tap_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_01_ui.png_ps4 new file mode 100644 index 0000000..600277b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tap_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_02_ui.png_ps4 new file mode 100644 index 0000000..0af3439 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tap_03_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_03_ui.png_ps4 new file mode 100644 index 0000000..fc6212b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tap_03_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_01_ui.png_ps4 new file mode 100644 index 0000000..eed2059 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_02_ui.png_ps4 new file mode 100644 index 0000000..099878f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_tilt_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_vote_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_01_ui.png_ps4 new file mode 100644 index 0000000..0bb30eb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_vote_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_02_ui.png_ps4 new file mode 100644 index 0000000..cfbb063 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/jit/jit_vote_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_arrow_ui.png_ps4 new file mode 100644 index 0000000..2efa820 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/jit/jit_vote_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/layout_reference_local_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/layout_reference_local_ui.png_ps4 new file mode 100644 index 0000000..3086aea Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/layout_reference_local_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/loading/defaultbg_tiny.png_ps4 b/_ark/ps4/ui_prerivals/textures/loading/defaultbg_tiny.png_ps4 new file mode 100644 index 0000000..8c900ef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/loading/defaultbg_tiny.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/mic.png_ps4 b/_ark/ps4/ui_prerivals/textures/mic.png_ps4 new file mode 100644 index 0000000..fe12ed4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/mic.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/hmx_notify_icon_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/hmx_notify_icon_ui.bmp_ps4 new file mode 100644 index 0000000..3dca951 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/hmx_notify_icon_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_gamerpic_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_gamerpic_frame_ui.png_ps4 new file mode 100644 index 0000000..482907b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_gamerpic_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_above_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_above_ui.png_ps4 new file mode 100644 index 0000000..a20d228 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_above_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_below_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_below_ui.png_ps4 new file mode 100644 index 0000000..6edd998 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_below_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_red_ui.png_ps4 new file mode 100644 index 0000000..ac3663a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_ui.png_ps4 new file mode 100644 index 0000000..282db8b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_shade_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_shade_ui.png_ps4 new file mode 100644 index 0000000..2342438 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_jg_shade_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_b_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_b_ui.bmp_ps4 new file mode 100644 index 0000000..f77ea80 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_b_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_c_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_c_ui.bmp_ps4 new file mode 100644 index 0000000..f77ea80 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_c_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_b_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_b_ui.bmp_ps4 new file mode 100644 index 0000000..e691cda Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_b_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_ui.bmp_ps4 new file mode 100644 index 0000000..e691cda Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_ui.bmp_ps4 new file mode 100644 index 0000000..f77ea80 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_main_screen_panel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/notifications/igns_right_panel_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/notifications/igns_right_panel_bg_ui.png_ps4 new file mode 100644 index 0000000..463502d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/notifications/igns_right_panel_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/icon_bass.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/icon_bass.png_ps4 new file mode 100644 index 0000000..d005938 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/icon_bass.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/icon_drums.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/icon_drums.png_ps4 new file mode 100644 index 0000000..0c77ac9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/icon_drums.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/icon_guitar.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/icon_guitar.png_ps4 new file mode 100644 index 0000000..ba58190 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/icon_guitar.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/icon_mic.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/icon_mic.png_ps4 new file mode 100644 index 0000000..7b919d9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/icon_mic.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border01.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border01.bmp_ps4 new file mode 100644 index 0000000..e62652e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border01.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border02.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border02.bmp_ps4 new file mode 100644 index 0000000..72e2a0d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_border02.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.bmp_ps4 new file mode 100644 index 0000000..e5de55d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.png_ps4 new file mode 100644 index 0000000..3ef1a06 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/onboarding_popup_main.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/solopreview.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/solopreview.png_ps4 new file mode 100644 index 0000000..e7b59ce Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/solopreview.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/solopreview_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/solopreview_ui.png_ps4 new file mode 100644 index 0000000..37935db Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/solopreview_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_01_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_01_ui.png_ps4 new file mode 100644 index 0000000..e7a0889 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_01_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_02_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_02_ui.png_ps4 new file mode 100644 index 0000000..a6c3832 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_02_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_03_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_03_ui.png_ps4 new file mode 100644 index 0000000..d9d6c3f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_03_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_04_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_04_ui.png_ps4 new file mode 100644 index 0000000..9488a9d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/onboarding/vocal_tut_04_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/edit_shade_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/edit_shade_ui.png_ps4 new file mode 100644 index 0000000..9f544d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/edit_shade_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_check.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_check.png_ps4 new file mode 100644 index 0000000..4c9beec Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_check.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_check_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_check_ui.png_ps4 new file mode 100644 index 0000000..18f2dcc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_check_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_checkbox.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_checkbox.bmp_ps4 new file mode 100644 index 0000000..6706024 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_checkbox.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_checkbox_hilited.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_checkbox_hilited.bmp_ps4 new file mode 100644 index 0000000..b03deef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_checkbox_hilited.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_checkbox_source_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_checkbox_source_ui.png_ps4 new file mode 100644 index 0000000..58b4f9d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_checkbox_source_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_hilite_large.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_hilite_large.png_ps4 new file mode 100644 index 0000000..25d3f1b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_hilite_large.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_hilite_small.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_hilite_small.png_ps4 new file mode 100644 index 0000000..e65b23d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_hilite_small.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider.png_ps4 new file mode 100644 index 0000000..6b196f6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_hilited.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_hilited.png_ps4 new file mode 100644 index 0000000..8b73c9e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_hilited.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_source_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_source_ui.png_ps4 new file mode 100644 index 0000000..f9b8356 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_source_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_color_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_color_ui.png_ps4 new file mode 100644 index 0000000..447d217 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_color_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_ui.png_ps4 new file mode 100644 index 0000000..873ca04 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_thumb_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_track.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_track.png_ps4 new file mode 100644 index 0000000..63739fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_track.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_track_hilited.png_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_track_hilited.png_ps4 new file mode 100644 index 0000000..eb9b32f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_track_hilited.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/options/options_slider_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/options/options_slider_ui.bmp_ps4 new file mode 100644 index 0000000..9b215e7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/options/options_slider_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bass_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_active_ui.png_ps4 new file mode 100644 index 0000000..6dbef3a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bass_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_control_ui.png_ps4 new file mode 100644 index 0000000..2f88569 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bass_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_no_control_ui.png_ps4 new file mode 100644 index 0000000..6c50028 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bass_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bg_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bg_ui.png_ps4 new file mode 100644 index 0000000..95b76d8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bg_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_active_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_active_ui.bmp_ps4 new file mode 100644 index 0000000..423f66d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_active_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_inactive_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_inactive_ui.bmp_ps4 new file mode 100644 index 0000000..a339ace Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_bottom_inactive_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_connect_controller_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_connect_controller_ui.bmp_ps4 new file mode 100644 index 0000000..80868b7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_connect_controller_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_drums_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_active_ui.png_ps4 new file mode 100644 index 0000000..1a4a5f6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_drums_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_control_ui.png_ps4 new file mode 100644 index 0000000..d4e2911 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_drums_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_no_control_ui.png_ps4 new file mode 100644 index 0000000..f5f45b9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_drums_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_active_ui.png_ps4 new file mode 100644 index 0000000..8503f20 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_control_ui.png_ps4 new file mode 100644 index 0000000..c1b9106 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_no_control_ui.png_ps4 new file mode 100644 index 0000000..288e6cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_guitar_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_icon_base_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_icon_base_ui.png_ps4 new file mode 100644 index 0000000..c51e4bf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_icon_base_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_indic_blue.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_blue.bmp_ps4 new file mode 100644 index 0000000..7478cad Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_blue.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_indic_green.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_green.bmp_ps4 new file mode 100644 index 0000000..8595fe2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_green.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_indic_orange.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_orange.bmp_ps4 new file mode 100644 index 0000000..e2df2d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_orange.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_indic_red.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_red.bmp_ps4 new file mode 100644 index 0000000..b90f6a2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_red.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_indic_yellow.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_yellow.bmp_ps4 new file mode 100644 index 0000000..0de6abb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_indic_yellow.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_master_bright.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_master_bright.bmp_ps4 new file mode 100644 index 0000000..b7bbe66 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_master_bright.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_active_ui.png_ps4 new file mode 100644 index 0000000..f8d688f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_control_ui.png_ps4 new file mode 100644 index 0000000..018686f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_no_control_ui.png_ps4 new file mode 100644 index 0000000..e5fdc21 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_pro_drums_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_shadow.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_shadow.png_ps4 new file mode 100644 index 0000000..f46a532 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_shadow.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_short_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_short_ui.bmp_ps4 new file mode 100644 index 0000000..7fb91bc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_short_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_ui.bmp_ps4 new file mode 100644 index 0000000..f69edf2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_active_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_inactive_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_inactive_ui.bmp_ps4 new file mode 100644 index 0000000..26c0e7e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_base_inactive_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_slider_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_ui.bmp_ps4 new file mode 100644 index 0000000..9b215e7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_slider_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_top_meta_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_top_meta_ui.bmp_ps4 new file mode 100644 index 0000000..82eaefe Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_top_meta_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_active_ui.png_ps4 new file mode 100644 index 0000000..981e244 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_control_ui.png_ps4 new file mode 100644 index 0000000..41b26f0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_no_control_ui.png_ps4 new file mode 100644 index 0000000..2d589d4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony2_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_active_ui.png_ps4 new file mode 100644 index 0000000..7892f77 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_control_ui.png_ps4 new file mode 100644 index 0000000..7306064 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_no_control_ui.png_ps4 new file mode 100644 index 0000000..fcae367 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_harmony3_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_active_ui.png_ps4 new file mode 100644 index 0000000..be9f164 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_control_ui.png_ps4 new file mode 100644 index 0000000..a042355 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_no_control_ui.png_ps4 new file mode 100644 index 0000000..a7621cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocal_improv_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_active_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_active_ui.png_ps4 new file mode 100644 index 0000000..9a3b70b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_active_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_control_ui.png_ps4 new file mode 100644 index 0000000..ab9b9d1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_no_control_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_no_control_ui.png_ps4 new file mode 100644 index 0000000..6506d4e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/os_vocals_no_control_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_disabled_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_disabled_ui.bmp_ps4 new file mode 100644 index 0000000..420db35 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_disabled_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_hilite_disabled_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_hilite_disabled_ui.bmp_ps4 new file mode 100644 index 0000000..3fe783c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_hilite_disabled_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_bottom_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_bottom_ui.png_ps4 new file mode 100644 index 0000000..db80384 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_bottom_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_hilite_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_hilite_ui.bmp_ps4 new file mode 100644 index 0000000..f4daaf8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_hilite_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_list_entry_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_list_entry_ui.bmp_ps4 new file mode 100644 index 0000000..541ddba Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_list_entry_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_top_shadow_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_top_shadow_ui.bmp_ps4 new file mode 100644 index 0000000..a80a5a4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_ingame_top_shadow_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_meta_header_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_meta_header_ui.bmp_ps4 new file mode 100644 index 0000000..c911e53 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_meta_header_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/over_meta_hilite_header_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/over_meta_hilite_header_ui.bmp_ps4 new file mode 100644 index 0000000..f2e1fdc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/over_meta_hilite_header_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_lineless_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_lineless_ui.bmp_ps4 new file mode 100644 index 0000000..4f77b5a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_lineless_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_ui.bmp_ps4 new file mode 100644 index 0000000..4f77b5a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/overshell/overshell_meta_list_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_notification_reference_local_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/player_notification_reference_local_ui.png_ps4 new file mode 100644 index 0000000..eaa6d93 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_notification_reference_local_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/icon_full_band_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/icon_full_band_ui.bmp_ps4 new file mode 100644 index 0000000..2ac0097 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/icon_full_band_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/icon_pro_drums_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/icon_pro_drums_ui.bmp_ps4 new file mode 100644 index 0000000..f59b5ab Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/icon_pro_drums_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_empty_ui.bmp_ps4 new file mode 100644 index 0000000..5365e92 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_full_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_full_ui.bmp_ps4 new file mode 100644 index 0000000..ae9a4ae Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_full_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_highlight_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_highlight_ui.png_ps4 new file mode 100644 index 0000000..4bd79ab Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/progress_bar_highlight_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_large_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_large_ui.bmp_ps4 new file mode 100644 index 0000000..7c857b7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_large_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_ui.bmp_ps4 new file mode 100644 index 0000000..34c8f51 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_1000_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_large_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_large_ui.bmp_ps4 new file mode 100644 index 0000000..1b6432e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_large_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_ui.bmp_ps4 new file mode 100644 index 0000000..aafaa9b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/player_stats/stats_icon_top_friends_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/bias by pg logos/bias_logo_white.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/bias by pg logos/bias_logo_white.png_ps4 new file mode 100644 index 0000000..b96c58e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/bias by pg logos/bias_logo_white.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_65americanclean.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_65americanclean.png_ps4 new file mode 100644 index 0000000..0ef25d8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_65americanclean.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishblues.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishblues.png_ps4 new file mode 100644 index 0000000..1b9fe55 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishblues.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishclassic.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishclassic.png_ps4 new file mode 100644 index 0000000..cdd2153 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishclassic.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishrock.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishrock.png_ps4 new file mode 100644 index 0000000..61373c8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_britishrock.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_highwaymetal.png_ps4 b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_highwaymetal.png_ps4 new file mode 100644 index 0000000..6efc4ed Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/positive_grid/onboarding_positivegrid_highwaymetal.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rb4_logo_temp.png_ps4 b/_ark/ps4/ui_prerivals/textures/rb4_logo_temp.png_ps4 new file mode 100644 index 0000000..d01cb6f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rb4_logo_temp.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rb4_logo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rb4_logo_ui.png_ps4 new file mode 100644 index 0000000..6693dae Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rb4_logo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rivals_logo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rivals_logo_ui.png_ps4 new file mode 100644 index 0000000..9c96c0c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rivals_logo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/actualsize_test_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/actualsize_test_ui.png_ps4 new file mode 100644 index 0000000..4f6348c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/actualsize_test_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_dresspants_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_dresspants_ui.png_ps4 new file mode 100644 index 0000000..3a648a2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_dresspants_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_lacedleggings_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_lacedleggings_ui.png_ps4 new file mode 100644 index 0000000..ef158f8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_lacedleggings_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_metalleggings_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_metalleggings_ui.png_ps4 new file mode 100644 index 0000000..1e51091 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_fembottom_female_metalleggings_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femcostume_costume_halfandhalf_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femcostume_costume_halfandhalf_ui.png_ps4 new file mode 100644 index 0000000..fb895fe Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femcostume_costume_halfandhalf_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_glam_bustier_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_glam_bustier_ui.png_ps4 new file mode 100644 index 0000000..8ac5b50 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_glam_bustier_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_goth_wireframe_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_goth_wireframe_ui.png_ps4 new file mode 100644 index 0000000..8688ede Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_goth_wireframe_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_metal_leathervest_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_metal_leathervest_ui.png_ps4 new file mode 100644 index 0000000..dda7836 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_metal_leathervest_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_modern_tee_campaign_1_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_modern_tee_campaign_1_ui.png_ps4 new file mode 100644 index 0000000..31bca3a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_modern_tee_campaign_1_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_psych_meshvest_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_psych_meshvest_ui.png_ps4 new file mode 100644 index 0000000..de23021 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_psych_meshvest_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_tidy_suitjacket_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_tidy_suitjacket_ui.png_ps4 new file mode 100644 index 0000000..24b97d3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/fem_femtop_tidy_suitjacket_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_electrotone_bass_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_electrotone_bass_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..e3b26ca Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_electrotone_bass_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jaguar_bass_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jaguar_bass_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..942e42c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jaguar_bass_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jazz_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jazz_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..f28d086 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_jazz_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..ccfc3f5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_b_ui.png_ps4 new file mode 100644 index 0000000..5be7001 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_campaign_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..a034152 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_wood_worn_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_wood_worn_ui.png_ps4 new file mode 100644 index 0000000..72636f8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_precision_01_wood_worn_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_wildwood_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_wildwood_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..4619291 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_bass_wildwood_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..bec5b4f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_chrome_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_chrome_ui.png_ps4 new file mode 100644 index 0000000..c59347b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_chrome_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_gold_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_gold_ui.png_ps4 new file mode 100644 index 0000000..ca8dc38 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_drums_generic_01_gold_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_dinky_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_dinky_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..d9da583 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_dinky_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_doublejet_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_doublejet_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..16ca848 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_doublejet_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jaguar_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jaguar_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..8f102e1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jaguar_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jupiter_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jupiter_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..448ed9b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_jupiter_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_kingv_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_kingv_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..d11c880 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_kingv_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_mustang_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_mustang_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..4c4580e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_mustang_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_a_ui.png_ps4 new file mode 100644 index 0000000..7240817 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_b_ui.png_ps4 new file mode 100644 index 0000000..a3e7f5c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_campaign_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..7f89232 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_wood_worn_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_wood_worn_ui.png_ps4 new file mode 100644 index 0000000..db6a644 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_stratocaster_01_wood_worn_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_telecaster_01_sparkle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_telecaster_01_sparkle_ui.png_ps4 new file mode 100644 index 0000000..cb4cf85 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/inst_guitar_telecaster_01_sparkle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_goth_pants_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_goth_pants_ui.png_ps4 new file mode 100644 index 0000000..cb79ace Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_goth_pants_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_dresspants_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_dresspants_ui.png_ps4 new file mode 100644 index 0000000..c3f8604 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_dresspants_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_hairleggings_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_hairleggings_ui.png_ps4 new file mode 100644 index 0000000..46316cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malebottom_male_hairleggings_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_malecostume_costume_neonwarrior_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malecostume_costume_neonwarrior_ui.png_ps4 new file mode 100644 index 0000000..548590d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_malecostume_costume_neonwarrior_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_larp_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_larp_ui.png_ps4 new file mode 100644 index 0000000..11e39e3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_larp_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_zombiescout_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_zombiescout_ui.png_ps4 new file mode 100644 index 0000000..2a165b5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_costume_zombiescout_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_glam_featherjacket_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_glam_featherjacket_ui.png_ps4 new file mode 100644 index 0000000..7ab021a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_glam_featherjacket_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_goth_skullandcorset_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_goth_skullandcorset_ui.png_ps4 new file mode 100644 index 0000000..deece7f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_goth_skullandcorset_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_metal_vest_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_metal_vest_ui.png_ps4 new file mode 100644 index 0000000..b186e40 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_metal_vest_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_modern_tshirt_campaign_1_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_modern_tshirt_campaign_1_ui.png_ps4 new file mode 100644 index 0000000..b1967b4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_modern_tshirt_campaign_1_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_psych_nehrujacket_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_psych_nehrujacket_ui.png_ps4 new file mode 100644 index 0000000..3543cf4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_psych_nehrujacket_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_punk_studjacket_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_punk_studjacket_ui.png_ps4 new file mode 100644 index 0000000..7426c91 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_punk_studjacket_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_tidy_suitjacket_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_tidy_suitjacket_ui.png_ps4 new file mode 100644 index 0000000..a883090 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/male_maletop_tidy_suitjacket_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_eye_patch_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_eye_patch_ui.png_ps4 new file mode 100644 index 0000000..6294688 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_eye_patch_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_gas_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_gas_ui.png_ps4 new file mode 100644 index 0000000..34c5072 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_gas_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_led_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_led_ui.png_ps4 new file mode 100644 index 0000000..6096909 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_mask_led_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_night_vision_goggles_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_night_vision_goggles_ui.png_ps4 new file mode 100644 index 0000000..516d2b6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/rock_shop/uni_headcessories_night_vision_goggles_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/gold_bar_top_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/gold_bar_top_ui.png_ps4 new file mode 100644 index 0000000..0e4c1a5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/gold_bar_top_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/header_background_merged_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_merged_ui.png_ps4 new file mode 100644 index 0000000..934e0ef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_merged_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/header_background_new_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_new_ui.bmp_ps4 new file mode 100644 index 0000000..934e0ef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_new_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/header_background_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_ui.png_ps4 new file mode 100644 index 0000000..c3d912c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/header_background_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_extended_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_extended_ui.png_ps4 new file mode 100644 index 0000000..3783ccd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_extended_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_ui.bmp_ps4 new file mode 100644 index 0000000..206545e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/header_lines_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/pat01_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/pat01_ui.bmp_ps4 new file mode 100644 index 0000000..0b95665 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/pat01_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/pat02_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/pat02_ui.bmp_ps4 new file mode 100644 index 0000000..4d40a03 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/pat02_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/pat03_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/pat03_ui.bmp_ps4 new file mode 100644 index 0000000..f3accaf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/pat03_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/pat04_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/pat04_ui.bmp_ps4 new file mode 100644 index 0000000..ce23a2c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/pat04_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/screen_header_static_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/screen_header_static_ui.png_ps4 new file mode 100644 index 0000000..4d674bb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/screen_header_static_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/screen_header/shade_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/screen_header/shade_ui.bmp_ps4 new file mode 100644 index 0000000..8c87218 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/screen_header/shade_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/setlist/album_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/setlist/album_empty_ui.png_ps4 new file mode 100644 index 0000000..8892103 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/setlist/album_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/setlist/empty_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/setlist/empty_item_ui.png_ps4 new file mode 100644 index 0000000..777a26b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/setlist/empty_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/setlist/setlist_content_holder_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/setlist/setlist_content_holder_ui.png_ps4 new file mode 100644 index 0000000..8470523 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/setlist/setlist_content_holder_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_off_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_off_ui.png_ps4 new file mode 100644 index 0000000..2e2efbc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_off_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_on_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_on_ui.png_ps4 new file mode 100644 index 0000000..33e0a3b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/setlist/shuffle_icon_on_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/album_generic_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/album_generic_ui.png_ps4 new file mode 100644 index 0000000..3631959 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/album_generic_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/arrow_down_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/arrow_down_ui.png_ps4 new file mode 100644 index 0000000..8bf9381 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/arrow_down_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/arrow_left_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/arrow_left_ui.png_ps4 new file mode 100644 index 0000000..8f27b4e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/arrow_left_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/arrow_right_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/arrow_right_ui.png_ps4 new file mode 100644 index 0000000..25b4c95 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/arrow_right_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/autosave_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/autosave_icon_ui.png_ps4 new file mode 100644 index 0000000..00f7a10 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/autosave_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/autosave_rings_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/autosave_rings_ui.png_ps4 new file mode 100644 index 0000000..adeb9d4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/autosave_rings_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/button_red_scale9_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/button_red_scale9_ui.png_ps4 new file mode 100644 index 0000000..6e5e6ac Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/button_red_scale9_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/button_scale9_accent_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_accent_ui.png_ps4 new file mode 100644 index 0000000..25fd429 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_accent_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/button_scale9_glow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_glow_ui.png_ps4 new file mode 100644 index 0000000..f02825a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_glow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/button_scale9_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_ui.png_ps4 new file mode 100644 index 0000000..f755bef Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/button_scale9_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/color_map_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/color_map_ui.png_ps4 new file mode 100644 index 0000000..11a8f7d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/color_map_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/combo_box_arrow_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/combo_box_arrow_ui.png_ps4 new file mode 100644 index 0000000..2c26cb1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/combo_box_arrow_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/credits_end_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/credits_end_ui.png_ps4 new file mode 100644 index 0000000..76743e1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/credits_end_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/credits_hr_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/credits_hr_ui.png_ps4 new file mode 100644 index 0000000..16bcef6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/credits_hr_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/credits_logo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/credits_logo_ui.png_ps4 new file mode 100644 index 0000000..31b30c9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/credits_logo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/cross.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/cross.png_ps4 new file mode 100644 index 0000000..30e316b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/cross.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/error_shade_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/error_shade_ui.png_ps4 new file mode 100644 index 0000000..390b86a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/error_shade_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/error_window_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/error_window_ui.png_ps4 new file mode 100644 index 0000000..bb49d73 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/error_window_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/generic_avatar_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/shared/generic_avatar_ui.bmp_ps4 new file mode 100644 index 0000000..3595392 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/generic_avatar_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_ui.png_ps4 new file mode 100644 index 0000000..69f12d2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_wheel_ui.png_ps4 new file mode 100644 index 0000000..b0efa61 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/hmx_loader_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_focused_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_focused_ui.png_ps4 new file mode 100644 index 0000000..bd0bc07 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_focused_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_ui.png_ps4 new file mode 100644 index 0000000..03fbae2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/horizontal_list_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_a_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_a_ui.png_ps4 new file mode 100644 index 0000000..67c3b7d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_a_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_b_ui.png_ps4 new file mode 100644 index 0000000..cbf6279 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_c_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_c_ui.png_ps4 new file mode 100644 index 0000000..f5da1e2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/interstitial_alert_c_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/interstitial_bg_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/interstitial_bg_b_ui.png_ps4 new file mode 100644 index 0000000..644fd0c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/interstitial_bg_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/list_window_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/list_window_ui.png_ps4 new file mode 100644 index 0000000..0e1f3ea Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/list_window_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/modal_window_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/modal_window_ui.png_ps4 new file mode 100644 index 0000000..01416cd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/modal_window_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/pax_background_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/pax_background_ui.png_ps4 new file mode 100644 index 0000000..e64ea89 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/pax_background_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/pipe_vertical_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/pipe_vertical_ui.png_ps4 new file mode 100644 index 0000000..6f4667b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/pipe_vertical_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/quick_popup_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/quick_popup_ui.png_ps4 new file mode 100644 index 0000000..2939ca4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/quick_popup_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/repeating_chevrons_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/repeating_chevrons_ui.png_ps4 new file mode 100644 index 0000000..d310036 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/repeating_chevrons_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_long_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_long_ui.png_ps4 new file mode 100644 index 0000000..9a200dd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_long_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_ui.png_ps4 new file mode 100644 index 0000000..f67c1be Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/repeating_shells_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/scale_pattern_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/scale_pattern_ui.png_ps4 new file mode 100644 index 0000000..6ffd565 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/scale_pattern_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/stage_presence_icon.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/stage_presence_icon.png_ps4 new file mode 100644 index 0000000..2553a34 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/stage_presence_icon.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/star_icon.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/star_icon.png_ps4 new file mode 100644 index 0000000..36e2e6b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/star_icon.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/star_icon_loading_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/shared/star_icon_loading_ui.bmp_ps4 new file mode 100644 index 0000000..a7b8979 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/star_icon_loading_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/temp_gradient_background_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/temp_gradient_background_ui.png_ps4 new file mode 100644 index 0000000..2de88e9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/temp_gradient_background_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/wood_grain_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/wood_grain_ui.png_ps4 new file mode 100644 index 0000000..14aada8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/wood_grain_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/xb_red_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/xb_red_prompt_ui.png_ps4 new file mode 100644 index 0000000..4a94f6d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/xb_red_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/shared/~tilda.png_ps4 b/_ark/ps4/ui_prerivals/textures/shared/~tilda.png_ps4 new file mode 100644 index 0000000..82b7b69 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/shared/~tilda.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/difficulty_brutal_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_brutal_ui.png_ps4 new file mode 100644 index 0000000..aeca43d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_brutal_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/difficulty_easy_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_easy_ui.png_ps4 new file mode 100644 index 0000000..2493e08 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_easy_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/difficulty_expert_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_expert_ui.png_ps4 new file mode 100644 index 0000000..8638d57 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_expert_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/difficulty_hard_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_hard_ui.png_ps4 new file mode 100644 index 0000000..b4434b4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_hard_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/difficulty_medium_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_medium_ui.png_ps4 new file mode 100644 index 0000000..059e3e9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/difficulty_medium_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/header_line_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/header_line_ui.bmp_ps4 new file mode 100644 index 0000000..e8a7038 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/header_line_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_all_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_all_red_ui.png_ps4 new file mode 100644 index 0000000..dc5e9bc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_all_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_all_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_all_ui.png_ps4 new file mode 100644 index 0000000..f785baf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_all_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_red_ui.png_ps4 new file mode 100644 index 0000000..17ee474 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_ui.png_ps4 new file mode 100644 index 0000000..ea8a935 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_bass_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_red_ui.png_ps4 new file mode 100644 index 0000000..9f31f96 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_ui.png_ps4 new file mode 100644 index 0000000..f84ed76 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_drums_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_ui.png_ps4 new file mode 100644 index 0000000..bd7ae09 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_b_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_b_ui.png_ps4 new file mode 100644 index 0000000..6e785d6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_b_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_e_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_e_ui.png_ps4 new file mode 100644 index 0000000..f3e5da9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_e_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_h_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_h_ui.png_ps4 new file mode 100644 index 0000000..17d0fe6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_h_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_m_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_m_ui.png_ps4 new file mode 100644 index 0000000..1f40154 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_m_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_ui.png_ps4 new file mode 100644 index 0000000..7dcae12 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_x_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_x_ui.png_ps4 new file mode 100644 index 0000000..f77bfb8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_fc_small_whole_x_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_red_ui.png_ps4 new file mode 100644 index 0000000..c1a1259 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_ui.png_ps4 new file mode 100644 index 0000000..806b919 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_guitar_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_blue_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_blue_ui.png_ps4 new file mode 100644 index 0000000..79f6287 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_blue_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_red_ui.png_ps4 new file mode 100644 index 0000000..37b63a4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_harmony_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_red_ui.png_ps4 new file mode 100644 index 0000000..1b94024 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_ui.png_ps4 new file mode 100644 index 0000000..9d6e0bd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_pro_drums_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_red_ui.png_ps4 new file mode 100644 index 0000000..1833edf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_ui.png_ps4 new file mode 100644 index 0000000..6a42a1b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_rb4_features_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_red_ui.png_ps4 new file mode 100644 index 0000000..1358330 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_ui.png_ps4 new file mode 100644 index 0000000..ba21b57 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_one_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_red_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_red_ui.png_ps4 new file mode 100644 index 0000000..74a61d0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_red_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_ui.png_ps4 new file mode 100644 index 0000000..e1bfa5c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_three_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_ui.png_ps4 new file mode 100644 index 0000000..cb30b17 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/icon_vocals_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/instrument_difficulty_nodes_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/instrument_difficulty_nodes_red_ui.bmp_ps4 new file mode 100644 index 0000000..4d87dda Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/instrument_difficulty_nodes_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_brutal_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_brutal_ui.png_ps4 new file mode 100644 index 0000000..d915385 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_brutal_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_ui.png_ps4 new file mode 100644 index 0000000..d915385 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/jump_menu_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_red_ui.bmp_ps4 new file mode 100644 index 0000000..fe4dcfd Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_small_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_small_ui.bmp_ps4 new file mode 100644 index 0000000..ad3af9f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_small_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_ui.bmp_ps4 new file mode 100644 index 0000000..d6380cb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_gold_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_gold_ui.bmp_ps4 new file mode 100644 index 0000000..7520bba Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_gold_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_red_ui.bmp_ps4 new file mode 100644 index 0000000..e51bc01 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_gold_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_gold_ui.bmp_ps4 new file mode 100644 index 0000000..bada012 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_gold_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_red_ui.bmp_ps4 new file mode 100644 index 0000000..d74dde2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_ui.bmp_ps4 new file mode 100644 index 0000000..14ad0e8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_small_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_ui.bmp_ps4 new file mode 100644 index 0000000..66a89af Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_white_red_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_white_red_ui.bmp_ps4 new file mode 100644 index 0000000..be84396 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/rating_filled_white_red_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/search_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/search_icon_ui.png_ps4 new file mode 100644 index 0000000..a315c8c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/search_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_icon_ui.png_ps4 new file mode 100644 index 0000000..9aed2ff Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_minus_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_minus_ui.png_ps4 new file mode 100644 index 0000000..e29cbcb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_minus_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_brutal_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_brutal_ui.bmp_ps4 new file mode 100644 index 0000000..fed919c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_brutal_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_ui.bmp_ps4 new file mode 100644 index 0000000..8ed4d7f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bar_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_brutal_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_brutal_ui.bmp_ps4 new file mode 100644 index 0000000..8f490b8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_brutal_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_ui.bmp_ps4 new file mode 100644 index 0000000..e1382f9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_bottom_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_brutal_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_brutal_ui.bmp_ps4 new file mode 100644 index 0000000..c233a09 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_brutal_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_ui.bmp_ps4 new file mode 100644 index 0000000..771337a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_panel_current_slot_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/setlist_plus_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/setlist_plus_ui.png_ps4 new file mode 100644 index 0000000..b3bb3f8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/setlist_plus_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/shuffle_icon_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/shuffle_icon_ui.png_ps4 new file mode 100644 index 0000000..3dd3c39 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/shuffle_icon_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.bmp_ps4 new file mode 100644 index 0000000..1fdae63 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.png_ps4 new file mode 100644 index 0000000..2a6e600 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/song_detail_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/song_leaderboard_panel_bottom_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/song_leaderboard_panel_bottom_ui.bmp_ps4 new file mode 100644 index 0000000..e1382f9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/song_leaderboard_panel_bottom_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/song_library/song_list_albumborder_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/song_library/song_list_albumborder_ui.bmp_ps4 new file mode 100644 index 0000000..93a6d38 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/song_library/song_list_albumborder_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatdrumsolo.png_ps4 b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatdrumsolo.png_ps4 new file mode 100644 index 0000000..9fbd276 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatdrumsolo.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatguitarsolo.png_ps4 b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatguitarsolo.png_ps4 new file mode 100644 index 0000000..47f33d6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_greatguitarsolo.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/stage_presence/sp_groovemaster.png_ps4 b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_groovemaster.png_ps4 new file mode 100644 index 0000000..5bf1ba7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_groovemaster.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/stage_presence/sp_workthecrowd.png_ps4 b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_workthecrowd.png_ps4 new file mode 100644 index 0000000..4db1e70 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/stage_presence/sp_workthecrowd.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/stage_presence/stage_presence_part.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/stage_presence/stage_presence_part.bmp_ps4 new file mode 100644 index 0000000..c695841 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/stage_presence/stage_presence_part.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/background2_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/background2_ui.png_ps4 new file mode 100644 index 0000000..c6ff943 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/background2_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/background_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/background_ui.png_ps4 new file mode 100644 index 0000000..cb2e068 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/background_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/esrb_eng_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/esrb_eng_ui.png_ps4 new file mode 100644 index 0000000..aa1fc44 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/esrb_eng_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/esrb_fre_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/esrb_fre_ui.png_ps4 new file mode 100644 index 0000000..0b739b7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/esrb_fre_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/esrb_slate_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/esrb_slate_ui.png_ps4 new file mode 100644 index 0000000..7495ce1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/esrb_slate_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/esrb_spa_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/esrb_spa_ui.png_ps4 new file mode 100644 index 0000000..52a9d8b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/esrb_spa_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/generic_splash_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/generic_splash_ui.png_ps4 new file mode 100644 index 0000000..e030cba Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/generic_splash_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/harmonix_logo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/harmonix_logo_ui.png_ps4 new file mode 100644 index 0000000..297d8d5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/harmonix_logo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/madcatz_logo_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/madcatz_logo_ui.png_ps4 new file mode 100644 index 0000000..180be02 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/madcatz_logo_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/oam_eng_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/oam_eng_ui.png_ps4 new file mode 100644 index 0000000..72c0dad Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/oam_eng_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/oam_fre_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/oam_fre_ui.png_ps4 new file mode 100644 index 0000000..dcc1224 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/oam_fre_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/oam_spa_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/oam_spa_ui.png_ps4 new file mode 100644 index 0000000..8f4f53d Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/oam_spa_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/startup/online_and_music_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/startup/online_and_music_ui.png_ps4 new file mode 100644 index 0000000..ad51585 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/startup/online_and_music_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/change_keyboard_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/change_keyboard_ui.png_ps4 new file mode 100644 index 0000000..de2bab5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/change_keyboard_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/devil_head_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/devil_head_ui.png_ps4 new file mode 100644 index 0000000..bf596ca Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/devil_head_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/done_keyboard_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/done_keyboard_ui.png_ps4 new file mode 100644 index 0000000..bbd712a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/done_keyboard_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/new_release_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/new_release_panel_ui.png_ps4 new file mode 100644 index 0000000..0367abc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/new_release_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/os_title_bg_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/os_title_bg_ui.bmp_ps4 new file mode 100644 index 0000000..3fc662b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/os_title_bg_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/sale_backing_large_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/sale_backing_large_ui.bmp_ps4 new file mode 100644 index 0000000..c2260fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/sale_backing_large_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/sale_backing_small_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/sale_backing_small_ui.bmp_ps4 new file mode 100644 index 0000000..3d2df63 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/sale_backing_small_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_background_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_background_ui.bmp_ps4 new file mode 100644 index 0000000..4e022cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_background_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_dot_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_dot_ui.bmp_ps4 new file mode 100644 index 0000000..8e0092c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_dot_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_nodes_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_nodes_ui.bmp_ps4 new file mode 100644 index 0000000..4b1ca70 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_instrument_difficulty_nodes_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_large_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_large_ui.bmp_ps4 new file mode 100644 index 0000000..c7c644f Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_large_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_empty_ui.bmp_ps4 new file mode 100644 index 0000000..26e557a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.bmp_ps4 new file mode 100644 index 0000000..2bd6d77 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.png_ps4 new file mode 100644 index 0000000..6c1f640 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_medium_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_empty_ui.bmp_ps4 new file mode 100644 index 0000000..b9f42c9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_ui.bmp_ps4 new file mode 100644 index 0000000..a100de5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_albumborder_small_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_left_bottom_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_left_bottom_selected_ui.bmp_ps4 new file mode 100644 index 0000000..6f35e68 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_left_bottom_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_left_top_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_left_top_selected_ui.bmp_ps4 new file mode 100644 index 0000000..34cebfc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_left_top_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_main_separators_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_main_separators_ui.bmp_ps4 new file mode 100644 index 0000000..b805755 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_main_separators_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_area_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_area_selected_ui.bmp_ps4 new file mode 100644 index 0000000..f020c6c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_area_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_area_unselected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_area_unselected_ui.bmp_ps4 new file mode 100644 index 0000000..c78f1a6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_area_unselected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_char_selection_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_char_selection_ui.bmp_ps4 new file mode 100644 index 0000000..a76cd6a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_char_selection_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_char_space_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_char_space_ui.bmp_ps4 new file mode 100644 index 0000000..2b376e2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_char_space_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_cursor_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_cursor_ui.bmp_ps4 new file mode 100644 index 0000000..5e43f59 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_cursor_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_delete_key_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_delete_key_ui.bmp_ps4 new file mode 100644 index 0000000..5240e3a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_delete_key_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_search_pack_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_search_pack_ui.png_ps4 new file mode 100644 index 0000000..b7bdfcc Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_search_pack_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/store_subheader_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/store/store_subheader_ui.bmp_ps4 new file mode 100644 index 0000000..53320e7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/store_subheader_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/store/wishlist_backing_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/store/wishlist_backing_ui.png_ps4 new file mode 100644 index 0000000..297ac7c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/store/wishlist_backing_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_1_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_1_ui.png_ps4 new file mode 100644 index 0000000..88094d7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_1_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_2_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_2_ui.png_ps4 new file mode 100644 index 0000000..f6051ac Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_2_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_3_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_3_ui.png_ps4 new file mode 100644 index 0000000..0e5e4c2 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_3_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_x_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_x_ui.bmp_ps4 new file mode 100644 index 0000000..eaca40e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/vocals/vocal_arrow_x_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/blue_check_mark_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/blue_check_mark_ui.png_ps4 new file mode 100644 index 0000000..4bf81fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/blue_check_mark_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..8d2187b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.png_ps4 new file mode 100644 index 0000000..8d2187b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/blue_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.bmp_ps4 new file mode 100644 index 0000000..046aa5a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.png_ps4 new file mode 100644 index 0000000..046aa5a Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/circle_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..75814a1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.png_ps4 new file mode 100644 index 0000000..75814a1 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/empty_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..04b2e59 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.png_ps4 new file mode 100644 index 0000000..04b2e59 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/green_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.bmp_ps4 new file mode 100644 index 0000000..5c72f3b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.png_ps4 new file mode 100644 index 0000000..5c72f3b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/icon_empty_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/interior_circle_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/interior_circle_ui.png_ps4 new file mode 100644 index 0000000..7c18612 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/interior_circle_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/interior_circle_white_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/interior_circle_white_ui.png_ps4 new file mode 100644 index 0000000..dbd8d9c Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/interior_circle_white_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/midsong_voting_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/midsong_voting_frame_ui.png_ps4 new file mode 100644 index 0000000..d2850f5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/midsong_voting_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/notyetvoted_panel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/notyetvoted_panel_ui.png_ps4 new file mode 100644 index 0000000..7d5e3fa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/notyetvoted_panel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..5f70400 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.png_ps4 new file mode 100644 index 0000000..5f70400 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/orange_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/ps_blue_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/ps_blue_prompt_ui.png_ps4 new file mode 100644 index 0000000..8feb689 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/ps_blue_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/ps_green_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/ps_green_prompt_ui.png_ps4 new file mode 100644 index 0000000..366a3bb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/ps_green_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/ps_orange_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/ps_orange_prompt_ui.png_ps4 new file mode 100644 index 0000000..1269acb Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/ps_orange_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/ps_red_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/ps_red_prompt_ui.png_ps4 new file mode 100644 index 0000000..a84f3c9 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/ps_red_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/ps_yellow_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/ps_yellow_prompt_ui.png_ps4 new file mode 100644 index 0000000..e6058e0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/ps_yellow_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..3f50827 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.png_ps4 new file mode 100644 index 0000000..3f50827 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/red_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_frame_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_frame_ui.png_ps4 new file mode 100644 index 0000000..7cfe990 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_frame_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_shade_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_shade_ui.png_ps4 new file mode 100644 index 0000000..009a4e7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/setlist_voting_shade_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.bmp_ps4 new file mode 100644 index 0000000..2446483 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.png_ps4 new file mode 100644 index 0000000..2446483 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_selected_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_ui.png_ps4 new file mode 100644 index 0000000..3dfef9b Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/voting_content_item_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/voting_item_box_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/voting_item_box_ui.png_ps4 new file mode 100644 index 0000000..dfcd545 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/voting_item_box_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/xo_blue_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/xo_blue_prompt_ui.png_ps4 new file mode 100644 index 0000000..0cbd627 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/xo_blue_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/xo_green_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/xo_green_prompt_ui.png_ps4 new file mode 100644 index 0000000..4a6b5aa Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/xo_green_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/xo_orange_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/xo_orange_prompt_ui.png_ps4 new file mode 100644 index 0000000..bd20683 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/xo_orange_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/xo_red_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/xo_red_prompt_ui.png_ps4 new file mode 100644 index 0000000..b0141ad Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/xo_red_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/xo_yellow_prompt_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/xo_yellow_prompt_ui.png_ps4 new file mode 100644 index 0000000..4ed9919 Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/xo_yellow_prompt_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.bmp_ps4 b/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.bmp_ps4 new file mode 100644 index 0000000..0b81a6e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.png_ps4 b/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.png_ps4 new file mode 100644 index 0000000..0b81a6e Binary files /dev/null and b/_ark/ps4/ui_prerivals/textures/voting/yellow_wheel_ui.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_color.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_color.bmp_ps4 new file mode 100644 index 0000000..dc317ce Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_color.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_norm.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_norm.bmp_ps4 new file mode 100644 index 0000000..273e0c7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_norm.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_pbr.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_pbr.bmp_ps4 new file mode 100644 index 0000000..3ba09ac Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_land_pbr.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_ocean_norm.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_ocean_norm.bmp_ps4 new file mode 100644 index 0000000..4105714 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/4096/wmap_ocean_norm.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_amsterdam.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_amsterdam.png_ps4 new file mode 100644 index 0000000..8203d80 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_amsterdam.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_auckland.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_auckland.png_ps4 new file mode 100644 index 0000000..121a24d Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_auckland.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_austin.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_austin.png_ps4 new file mode 100644 index 0000000..8285bb6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_austin.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_berlin.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_berlin.png_ps4 new file mode 100644 index 0000000..a5a1bf3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_berlin.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_bogota.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_bogota.png_ps4 new file mode 100644 index 0000000..c9db0c6 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_bogota.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_boston.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_boston.png_ps4 new file mode 100644 index 0000000..17d6de7 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_boston.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_dublin.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_dublin.png_ps4 new file mode 100644 index 0000000..87422bc Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_dublin.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_la.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_la.png_ps4 new file mode 100644 index 0000000..be1540b Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_la.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_lima.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_lima.png_ps4 new file mode 100644 index 0000000..e6add17 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_lima.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_london.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_london.png_ps4 new file mode 100644 index 0000000..77a4936 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_london.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_minneapolis.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_minneapolis.png_ps4 new file mode 100644 index 0000000..f775438 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_minneapolis.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_montreal.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_montreal.png_ps4 new file mode 100644 index 0000000..c4e7c51 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_montreal.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_moscow.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_moscow.png_ps4 new file mode 100644 index 0000000..4309400 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_moscow.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_newyork.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_newyork.png_ps4 new file mode 100644 index 0000000..30f7fc8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_newyork.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_paris.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_paris.png_ps4 new file mode 100644 index 0000000..bdc75da Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_paris.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_perth.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_perth.png_ps4 new file mode 100644 index 0000000..7c21e9c Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_perth.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_reykjavik.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_reykjavik.png_ps4 new file mode 100644 index 0000000..5c48505 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_reykjavik.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rio.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rio.png_ps4 new file mode 100644 index 0000000..5a214cf Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rio.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rome.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rome.png_ps4 new file mode 100644 index 0000000..9937677 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_rome.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seattle.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seattle.png_ps4 new file mode 100644 index 0000000..9b80e77 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seattle.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seoul.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seoul.png_ps4 new file mode 100644 index 0000000..a362543 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_seoul.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_shanghai.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_shanghai.png_ps4 new file mode 100644 index 0000000..95eec6b Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_shanghai.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stlouis.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stlouis.png_ps4 new file mode 100644 index 0000000..3c6c344 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stlouis.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stockholm.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stockholm.png_ps4 new file mode 100644 index 0000000..3344241 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_stockholm.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_sydney.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_sydney.png_ps4 new file mode 100644 index 0000000..5cdcc2e Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_sydney.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_tokyo.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_tokyo.png_ps4 new file mode 100644 index 0000000..f1930d5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_tokyo.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_vancouver.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_vancouver.png_ps4 new file mode 100644 index 0000000..5faa990 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/cities/hometown_vancouver.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_glow.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_glow.bmp_ps4 new file mode 100644 index 0000000..193566c Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_glow.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names01_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names01_util.bmp_ps4 new file mode 100644 index 0000000..8d38b20 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names01_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names02_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names02_util.bmp_ps4 new file mode 100644 index 0000000..aee201d Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names02_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names03_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names03_util.bmp_ps4 new file mode 100644 index 0000000..453691f Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names03_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names04_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names04_util.bmp_ps4 new file mode 100644 index 0000000..863432a Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names04_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names05_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names05_util.bmp_ps4 new file mode 100644 index 0000000..304fc54 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names05_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names06_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names06_util.bmp_ps4 new file mode 100644 index 0000000..8bc77b8 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names06_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names07_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names07_util.bmp_ps4 new file mode 100644 index 0000000..ce05aa3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names07_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names08_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names08_util.bmp_ps4 new file mode 100644 index 0000000..997afa4 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names08_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/city_names09_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/city_names09_util.bmp_ps4 new file mode 100644 index 0000000..ed79a47 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/city_names09_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/flare_ghost01.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/flare_ghost01.bmp_ps4 new file mode 100644 index 0000000..45b5f34 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/flare_ghost01.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/fx_cone.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/fx_cone.bmp_ps4 new file mode 100644 index 0000000..4da8ae0 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/fx_cone.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/metal_color.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/metal_color.bmp_ps4 new file mode 100644 index 0000000..f10766a Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/metal_color.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/noise_var1.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/noise_var1.bmp_ps4 new file mode 100644 index 0000000..026e500 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/noise_var1.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/planet_norm.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/planet_norm.bmp_ps4 new file mode 100644 index 0000000..38f93e3 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/planet_norm.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/sky.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/sky.bmp_ps4 new file mode 100644 index 0000000..cff1a8c Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/sky.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/sky_nebula_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/sky_nebula_util.bmp_ps4 new file mode 100644 index 0000000..e6a0694 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/sky_nebula_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/smoothness_util.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/smoothness_util.bmp_ps4 new file mode 100644 index 0000000..efadc99 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/smoothness_util.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/space_color.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/space_color.bmp_ps4 new file mode 100644 index 0000000..a16a294 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/space_color.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/star01.png_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/star01.png_ps4 new file mode 100644 index 0000000..69ce212 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/star01.png_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/sun.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/sun.bmp_ps4 new file mode 100644 index 0000000..57dc27d Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/sun.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/water_norm.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/water_norm.bmp_ps4 new file mode 100644 index 0000000..ced88c5 Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/water_norm.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud.bmp_ps4 new file mode 100644 index 0000000..cd47fde Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud.bmp_ps4 differ diff --git a/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud_norm.bmp_ps4 b/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud_norm.bmp_ps4 new file mode 100644 index 0000000..0aad45e Binary files /dev/null and b/_ark/ps4/ui_prerivals/world_map/textures/wm_cloud_norm.bmp_ps4 differ