// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: 2021-Present The Jackal Authors // Package message provides a rich set of functions for displaying messages to the user. package message // GetLogo returns the awesome menu ascii logo. func GetLogo() string { if NoProgress { return "" } var logo = `          *,                                                                                        *(((&&&&&/*.                                                                               *(((((%&&&&&&&*,                                                                           *(((((((&&&&&&&&&*              ,,*****,.                      **%&&&&&((((((              *(((((((((&&&&&&&@*    **@@@@@@&&&&&&&&&&@@@@@**         */&&&&&&((((((((((                 *((((((///(&&&&&&@@@@&&&&@@@@@@@@@&&&&&&&&&&&&&&@/* *%&&&&&&/////((((((*                    *(((///////&&&&&&&&&&&&&@@@@@@@@@&&&&&&&&&&&&&&&&&(%&&&/**///////(/*             */&&&&&&&&&&&&&&&&*/***&%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/*******///*             *&%&&&&&&&&&&&&&&&&&&&&&&&***&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&****/&&&&&&&&&&&&(/*  */((((((((((((((///////******%%&&&&&&&&//&@@*&&&&&&&&&&&&&&&&&&&#%&&&&*/####(/////((((/.      */((((((((((///////******%%%%%%%%%(##@@@//%&%%%%%%%&%&%%&&/(@@(/&&(***///////(((*              ***(((((/////********%%%%%%%/&%***/((%%%%%%%%%%%%%%%%(#&@*%/%%***/////**                    *&&%%%%%%//*******%%%%%%%%@@****%%/%%%%%%%%%%%%%%%%%%***@@%%**(%%%&&*                   *&&%%%%%(////******/(%%%%%%%@@@**@@&%%%%%%%%%%%%%%%%%(@@*%@@%%*****////%&*              *&%%%%%#////////***/////%%%%%%*@@@@@/%%%%%%%%%%%%%%%%%%%%@@@@%%*****///////((*           *%%%%((((///////*    *////(%%%%%%##%%%%%%%%%%%(%%%%*%%%%%%%%%%%*                         *(((((((/***            */////#%%%%%%%%%%#%%%%%%%%%%%%%%%%%%%%#*                                       %%(           ,*///((%%%%%%%%(**/#%%%##**/%%%%%*                                        %%%&&&&           *///*/(((((########//######**                                           %&&&&&*          *#######(((((((//////((((*                                                                ###%##############(((#####*                                                %@&&          *&#(%######*#########(#####/                                                /&&* ..       ,&#(/%####(*#########/#####/             #%@%&&&                      **         &&     ./%##((*&####/(#######(#####*(*            %&&&&&&                    *@%%@*             *&#####((((####*(#####(*###(*(##*              ,  %@&                 *@%%%%*            *%######((((*%####/*((*%####/*(###*  *                                *@%%%%%%*      *##* **#(###((((///#*#*(((((/#**#((*(##**#,*/##*,    %@&&                  *@%%%*%%%*  ****,*##/*#*##(((((((/(((((((((/(((*(((((###########*,  #&&#                  *@%%%*(%%%/*   **######(#((..((((((((((((((((((*  ,*(#####(((((*,                         *@%%%#(*%%%%*   ,**/####(* */(((((((((((((((((*     ,**,                                   *@%%%*(/(%%%%/*     ******(((((((((((*(((((*                                               *@%%%#(((*/%%%%%%##%%*((((((((((((**((((*                                                  *@%%%%*(((((((((((((((((((((((*/%*((*.             (&&&(                                   ,*%%%%%%*((((((((((((((((**%%%**,                (&                                          *%%%%%%%%%(/*****(#%%%%%**                      &%                                           ,**%%%%%%%%%%%%%***                                                                                                                                                           ,((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((,                                    .....(((((((/////////////////((((((((.....                                                                                                                             ///////////////      ///////      *****************  ***************,                             ////.       ///  ////     *///          ***  ****                                      ////,         ///    ////    *///////////////.  /////**/******                         /////          //////////////   *///      *///     ///*                                ./////////////// ////         ///  *///        ////   ///*                                                                                                                ` return logo }