Statistics

Problem Statement for "MaximumRange"

Problem Statement

Cat Noku was given a calculator for his birthday. The calculator is very simple. It can only store a single variable. The variable is called X and its initial value is 0. The calculator has only two buttons: + and -. Pressing + increments X by 1 and pressing - decrements X by 1. For example, if X is 4 and Noku presses +, X is incremented to 5.

A string of '+' and '-' characters can be seen as a sequence of instructions to press the corresponding buttons. The range of such a sequence of instructions is the difference between the largest and the smallest value stored in X while executing that sequence of instructions, in order.

For example, the range of "+++++++" is 7: the largest value of X is 7 (at the end) and the smallest value is 0 (in the beginning). The range of "---" is 3: maximum is 0, minimum is (-3), their difference is 0 - (-3) = 3. The range of "+-+-+-" is 1. The range of an empty sequence of instructions is 0.

Noku's calculator came with a piece of paper that contained a String s. Each character of s was either '+' or '-'. Noku will choose and execute any (not necessarily contiguous) subsequence of these characters. Help him do so in a way that maximizes the range of the executed sequence.

Compute and return the maximal range of a subsequence of the String s.

Definition

Class:
MaximumRange
Method:
findMax
Parameters:
String
Returns:
int
Method signature:
int findMax(String s)
(be sure your method is public)

Constraints

  • s will contain between 1 and 2,500 characters, inclusive.
  • Each element of s will be '+' or '-'.

Examples

  1. "+++++++"

    Returns: 7

    Cat Noku should choose the entire string s. As we saw in the problem statement, the range of "+++++++" is 7, and clearly this is the most we can get.

  2. "+--+--+"

    Returns: 4

    One optimal solution is to skip the fourth instruction (the '+' in the middle of s). Thus, the sequence of button presses will be "+----+". The value of X will change as follows: 0,1,0,-1,-2,-3,-2. The maximum number we see is 1 while the minimum number is -3, so the range is 1 - (-3) = 4.

  3. "++++--------"

    Returns: 8

  4. "-+-+-+-+-+-+"

    Returns: 6

  5. "+"

    Returns: 1

  6. "+++--+-++-++++++-++-+-+-+---+-++++-+++-+---+-++++--+++-+-+---+-++++-+-+-+++++--++-+---+++-+-+--++-++++-+-++-+++-+++---+-+++-++-++++++-++-+++---++-+-++-+-++++--++++-++++-+-+++-+++--+++++++++++---+++-+-++++-+-++--+++++++---+++-++-++"

    Returns: 149

  7. "++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++-++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++"

    Returns: 220

  8. "-++---+--+--++-+++---+-+++--+++-+---+---+---+-+++---++--+-++-++-+++-+-+--++--++----+---+++-+--++-++-------+----++-++-+----++-++++---++--+--+-++------+--++-++----++----+++---+++-+-+--+-+--+-+-----++-++-+--+--+-++++-+++-+++--++++++-+--++--------+--+---+-+-+-+--+--+----++-+-++++-+---+++-+--+----+----++-+-----+-+++---+++-+-++-+-+++++--------+++-------+----++----+--+---+--++-+--+---+++++-----++++----++-+----+----++----+--+--+++--+-++-++--+-+-+-+++++---+--++-++----+++-----+++--+-+-+--------++--+++-++-----++--++-++-++---+++-+--+++----+------++-+-+--+--+-+-+-++-+--++--+--+----+--+-+-+----++-------+++--++----+++++----+++--+---+-+---++++-++++--+----------++++----+-+--+++-+-+++++----++----+-+-++---+---+-+-+++-----++----+-+++-+++++++--+-++---+++-----++---+-+-++-++------++--+---+-+--+--+-++---++-++-+-------++++++++--++-+-+++--------+-+--++-+++----+-+--+++--++---+---++-+-+-+----++-+-+-+++---+--+----+++---+++-+++---+++---+++--+------++----+-----+-++++++-+++-------+---++----+++--++--++--+--+-+---+-+-+--++-+--++-+---+---+--+--+++++-+--+--++-++++++---+-+++-+---+++-+-------++---++----+++++---+--+-+----+++--++-"

    Returns: 621

  9. "------------------------------+------------------------+-----------------------------------+---+------+----------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------+-------------------+---------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------++----------------------------------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------"

    Returns: 1289

  10. "-+++++--+----+-+--+++-+-----------+---+-+-++-----+-----+++-++++-+++++--+-+-----+-++++--+-+--++-----+-+++----++-+---+--+--++----++++------++--+-+-+++-+---+--+++++-++-++------++-+-+-+--+--+--+-+-++-++-+-+--+-+-+--++-+---+-+-++----+++--++-+-+--+++-++-+--+-++--+-+++-+++++---++---+++-+------+-----+++++---+++---++----++------++--+---+--++-----+---+-+---+-++-+++----+-----+---+--------+++++---+-+--++-+-+---+-++--+--+--+--+-+-+-+++-+--++--+-+++---+--+-+--------+--------+-++++--+--+-+-+----++++-+++-+-++-++-+++-++-++---++---+----++------++-+-+--++-++-++-++++++++++-++--+-----+--++-++-+++-+--+--+--+--+-+---+-------+--+-+---++-+-+---++--++++---++++--+--+--++---+----+--+-++-+-+-+-+++++-----+--++++-+-+----+-+------++-+-++-++++---+-+--+-+--------+---+--++--+++++++-+--+-+------+-+++-+-+--+-+--++-+-+--+-+-+--++-+--++++---++-+----+------+-+-+---+-+----+-+-+---++++--++---+++++--+-+-++--+--+-+-+-+-+----+--+----------+--++--++-+---"

    Returns: 523

  11. "++-++--+++-+-+-+++-+++++-+----++++--+-+++++-++--++++-+-+++---++++++-+-+++----++++---+++--+---++++-----+--++--+-+--+--++-++-++-+-+---+--++--+++-+---++-++++--+----+--+-++-++-+-++-++++---+++-+----+-+-++--+-+-++++++-++-+++--++-+-+---++----++++-+-+-++++-++++++++-+++++-++-++-++-+++-++--++-++++----+++-++-+-++-++-+--+-+--++--++--+-+---+-+-+-++++---+-+++--+--+++---+-++----+++---+++-++-+--+--++++--+--+-+--+-++-++++++++-++--++++-+-++++-++++-++-++-++----+++++++++-+++-++++-++++-----++-+-+-++--+-+-++++-+-+-+--+-+++++--++++-+-+++-+-++--++-++-++++++-++-++----++++-+++-+++++-+-++---++-+-+++-++++++-+-++-+-++--++++-+-++-+-++++++++-++---++-++-+++-++-++-+-+++++--++++++++--++++--+++--+-++-+-++----++++++--++-+++-++++-++++-+-+-++-+---++-++-+-++++++-+++++++--+-+++++++-----++-+++-+---+-++--+++-++++-+-+++++-----++--++-++++-++---++-++---++-+-++++++--++++++-++-----+-++--++++-++++--+++--+-+--+-+++--++-+-+++---++-+-+-+-++-+--+++-+-+-+++-+--+++-++-+--++---+++++-++++++-++++-+-+--++++-+++---++-+--++-++---++++---++-+-+++--+-++++-++++--++---++-----+-+--+-++-----++--+++++-+++++---+-+-+-++++++----+-+--+-++--++-++++-+--++++++++--+-+--+-++-++++++++++++-+++++-++++-++++-++-++--++-++---+-+-++---+++--+-+--+--+++-+-+++----+-+++-++--+-+-+++-+---+++-+++++-+-++++-----++-++-++++-++--++--+-++-++++++++-+--+-+++++++-+++-+--++--+++--+-+++++++-++---+++--+-+-+-+---++---+-+--+--+----++-+---+-+++++++++-++++-++----+++--+++++---++----++++-+---+-++++--++-+++-+-++++-++++--+++++--++--++---+-++++++---+--++-+-++--+++++-+++-+++-+---+--+-++-++++-+-++--+++++++-----++-+-+-+-++-++++-++-+++-+++++--+---+++++--+++++---++++-++++--+-+++-+--+-+++----++-++++-+++-+-++--+-++++++---++-+---+++++++-++-+-+-+++++++--+-+-++-+++++-+-+-++++--++-+++-+--+--+-+--++++---++-++++++-++--+++-+----++++++-++++--+--++--+-+-+---++-+-+-+-++-+-+-+--++-++-++++++++--+-++-++++++--+-++---+--+-+++-+-+++++++++--+-+---++--+-++--+---+++--++-+---+++-+-+++-+-++++---++-+++++--++-+++++++++-+++++++-++++-++++++--++++-+++-+-++++--+++-++-+--+++--+--++++++++++-++-+-+-++++--++-+-++-++-+-++--+++-++-+++++++-+-++++++-++-+++++-++--++--+++++-++++--+---++++++++-++-++--++-+++-------++-++++-+++-+-+++-+-+-+++---+-+++--+--++++++-++++++--+---+-+-++---+-++++-+-+++++-++++++-+++-+++++--+++---+--+-++--+++---+++-++-++-+-++++-+++++--++++-----++++"

    Returns: 1376

  12. "++--+-++---------++----+++--++-++--+----++-+-++---++-+++-+--+-+-+++-++-+--++--+++---++++-++-+--+++---++-----+++-+---+----++--++-+-+++++---+++--++++++--+++--+-++++-++-+--+--++++--++--+++-++--+----++-++-+-+-+--+-----+-+-+--+++-+++---+--++--+++++++++++--+++++++--++-++---+++++---+--+-+--++----+---+++-+-++++---++++-+-+-----+-+--++--+-++-+++++++-+----+---+-+---+-+----+++++----+-++++++-+--++-++--+++++--+++++++-++-+++-++++++-++-+-+++-+-+++++----++++----+-+-+-+-++-+--+---++-+-++---+---+---++--+--+--+-+-+---+++--+++++--+--+++++++-+-+--------+-++---+-+++++--+--++-++++-+-+--+---+++++++-+-+++----+-+-+----++++----+-+-+++---+++--++--+-+---+--+++-++-+-++++--+++----+++-+++--+-+-------++-+------++-+-+----++-+---+---+--++---++++-+-----+-+++++-+--++-+-+++++---+--+++-++-++--++++--+-++--+++---+---+++-++-+-++++---+-+--------+++--+---+--++-+--++-++-+-++++++-+--+---+-++-+++++++++-++-+----+--+++-+-+-++++++----++-+-++-++++-+-----+-+++++++++++-++--+-+-++-+++-+-++++-+-+++--++++-+---+--++--+++-+++---++++---++-+-++++-+++----++-++-+--+++---++++-+----+--+++---+--++++-+-+++-+++---+++--+-+---+++--+-+-+++-++++-+++-++---++--+-+++++-++----+-+++-+-++++++-+-+-+--+---++-------+-++-++-+++++-+-+++-++-+---+-------++----++-+--++--+-+-+-++-+-+--++-+++-++++-+-+-+-+-++----+++--+--+-+++++-+++++-+++-++-+--+--+--++++-++--+--++--++-++-+--+-+++++-++-+++-+-+-++-+-++-+++++++++-+++++------+-+++++-++--+++--++----+-+-++-+-++++----+--+----++-----+-++---++++++-+----+---+++---++----+--+++--+--+-+-------++++-+++-+-+--++-++-+----++---++-+--+-+---+-+-++++--+-+++-+++--+-++-++-++--++-----+++++++++++--++++-++-+-+-+---+++----+-+-++----+-+--+-+-++---++-+-+++---+-++++-+-+-++-+++++--+++--+-+--+++-+--+-+--+++-----+---+++----+++--+----+-++--+-++-+-+--+-+--+++--+-++-+---+--+++-++++++++-+--+-+++++---+++---+---+--++--+++++++++--+-++-+-+-+---++--+-+++--+--+-+---+++++-+++-+---++++--+---++--+++-++-+-+-++++-++--++-+++--+-+---+--+-++++-++-+++++---+-+-+-+++---+-+-+++-+++-++-+---+-+++--+--+-+-+-+--++--++-++-----+-+++++++-+-+----++----+-+-++-+++---+-++-------+-+--+-+++---++++-+--++--+++--+++----+++++++--+-+-----+--+---+++++-+++--+-++-+--+-+--++---+++-++-+-++----+-+----+-++-+-+--+--------++--+--++-+-+-++--++++-++--+++-+---+++--+-+--+-++++-+++++-++-++-+++----+++-++----+-+++-+++++++-+++++++-++-++++++--+-+-+--++++++----+--+++---+++-+---+-+-+++-+--+--+-+-++++-++-+-+++--++++---++++++-+++++++-+-+--+-+++++-++++++++++--+---++-+-+-"

    Returns: 1275

  13. "++++++++++++++++++++-++++++-+-++++++-+++++++++++-++++-+++-+++++++++++++++++++++++++++++--++++++++-++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++--++++++++++++++-++++++++++++++++++++-++++++++-++++-++++++++-++++++++++++++++++++++++++-+++++++-+++++++++-+-++++++++++++-++++++++-+++-++-++++++++++++++++++++-++-++++++++++++-+-++++++++++++++++++++-+++++++-+++++++++++++++++-+++-++--+++++-+--++++++-++++++++++-++++++++++++++++++-+++++++++++++++++++++++++++-+++++++++++++++++++++++++++-++-++-++++++++++++++++-+++++++++++++++++-+++++-+++++++++++++-+-+++++++-++++++++++++++++++++-++++++++-+++++++++++++-++++++++++++++++++-++++++++++++-+++-+++++++++++++++-+++++++++++---++++++++++++++-+++++-+++++++-++++++++++-++++-+++-++-+++++++++++++++-++-++++++++++-++-++-++++++++-+++--+++++++++++++++++++++-+++--+++++-++++++++++++-++++++++++++++++++-++++++++++++++-+++-++--+++++++-+++++-++++++++++-+++-+++++++++++++-+++++++++++++++++++++++++++-++++++++++++++++++-++++++++++++-+++++++++++-++++++++++-+++-++++++++++++++-++++++-++++++++++-+++++++-++++-++++-++++++++++++++++++++++++++-+++++++++++++++++-+++++++++--+++++++-++++++++-++--+++++++-++++++++++-+-++++++++++-+++++++++-+++++-++++++++++++-++++++++++++++++++++++++++++++-+++++++++++++++-+++++++++++++++++++++++++++++++++++-++++++++-++++-+++++++++++++-+++++++-+++++++++++++++++-+++++++++-+++++++++++++-+++++++++++++++++++++-+++++-+++++++++++++++-++-+++++++++++++++++++++-+++++++-++++++++++++++-++++++++++++++++++++++++-+++++++++++-+++++-++-+++++++-++-++++++++++++++++-+++++++"

    Returns: 1371

  14. "+---------+++-++----+---+-----+--+--++-------++----+-+-+--+--+++------+--++-----++-+++----++--++++-+-+------+++-+---+-+----------+-------+--+-++-------+----+-+---+--+-++-+-+-+-+---++----------++---++++----+-+-+++---+++-+-++++--+-+++--+-----+----------+--+------++---+--+++---++-------+-----+++--+-++-+-+-+-----++--+-++-----+---------------+---+-+-------+---++++------+-------+----+++-+-+-+---+------+-----+--+--+--++--+-++----+-++-+-------+-------+--------++++--+++-----------+-+--+----++--+++-------++--+-----------+------+-----------+----++--+++-+--+++-++--+------+-++-----------+--+-----+++----+-+----+-------+---++-++----+---+--+-----+-------+----++-----+-+---+---++---------+-------+----++-----+---+++--------+---------+-+-++--+--------+-+---++--+-+--------++-+----------++----++----+------+-++--------+-------+-+-++---+--+-++--++-+---+--+-++--+----++---+-+--++------+---+---+-++-----++-+-------+-+++-+--+----+----+-------+----+---+----+-----+----+-++--+-+-+------------+--+-+--++-+-------+------+--+-++---++------+-+---+---+--++-++-+---+-++-+-+------+----+--++--++----++-----+---+-----+++-+---++--++-+-+--------++--------------++--+-+-----+-+-----+-++-+--+--+---+---+------+----+-++--+----++----------+-+--------+------++-+---+-+------+----------+-+----+--+--------+--+--+-----+--++----+-----+++++--++--------+--------+----++-+-++----+-+-+-+----+-----+---+-+-+--+-+-+-++-++--+---+--+++-+---------+------+-+--------++---+----------++-+--+---------+-++---+----++--+---++-+-----+-------+---+-+-+-----+--------+-+-+-+-+--------+-++-----++--+-------+-++-+++--+-+------++----------++-+---+-+-+------+++-+-----------+---+---++++--+--------+++------+-+---+-+-+--+---+-+---+-------++-+----+-++-----+-+-++--+-+--+---+---+--------------+-----+-+---++--+--+-++------------++++----------++-++-+--++-+-+--+++----+-----++-+++--------+++--+--+--+-+-+-+-++---+-+-+-+--+--+-++-+-+-+-+++---+----------+-+----+----+-+--+------+--+-+----++-+---++-+---+---------+-++-++-+-----------------++----+-+-+--+-+----+-----++---+----+--+-----------+-+-+-+-----+++------+-------------++-------+---++---++------+--++-----+-------+------+---+--+--+----+----+----++----+---+----+------+--++-++-++--------------------++-++--+-----+--+++-+-++---+-+-----+-+-------+-+-------+-++++-----++---+-----+--+------------+-+--++--+--------++----++---++-+-------+-----++--------+--+-+--++--------+---+--------+-+++-+-+--++-+-+---+---+---+--"

    Returns: 1702

  15. "----------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+-----------+-----------+--------------------------+-----------------------------------------------------------------------------+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+-------------+------------------------------+-----------------------------------------------------------------------------------------+------------------------+------------------------------------------+-----------+------------------------------------------------------------+-+---------------------------------+---------------------------------------------------------+----------------------------------------------------------+----------------------------+----------------------------------------------------+-++---------------------------------------------------------------------+---------------------------+-------+---------+----------------------------------------------------------------------------------------------------------------+--------------------------------------+---------------------------------------------------------------------+------------------+----------------------------------------------------------------------+--+-------------------------------------------------------+----------------------------------+---"

    Returns: 1496

  16. "---++---+-+---+++++-+----++++-+-++----++-+--+---+++-++-++---+++++-+-+--+--+++----+-+-+-++---++---++---++-+-+------+---++-++-++-++-++-+--++-+-+--+--++--+-----++++--++++-+-+-++++--+--++++---+++--++++--++-+++-+-++-----++++++-+++--+----+-++--+++-+---+-------++-++++-+-+-++++-+++---++---+-++++--+--+-+-+-+++-+-+--+-----+-+-+--++-++-+--+--+--++++--+----++-+-+++++-++--++--+-++++--+--+----+-+++-++++-+++-+++-+--++-+-++-++-----+--++++++++++--+-----++-+-+------++++--++---+-+-++-+++++-++++-+--++-+++++-+-+++++++--++-++-+-++-+++--+-+--+--++++-++++++++----+--+++---+++-++------++++++--+-++--------+-+-++---+++-++-+++++--++++-+-+--+---+-+-+--+-+-+--+--+--++-++---++--+++--+---++-+--++---+++-+-++-+-+----++-++++-+-+---+----+--+++-+++-+-+-+-+-+++-+--+-+-+-+---+-++-+--+++-+-+-+-+++-+++++-----+-++++++-++-+++-++++++--+-+-+--++--+++-+-+-+----+++-+----++++++-++--+--+--+---++-+++-++--+++--+++++++--++-+-+-+-+----+++---+--++++-----+-++-------++-++-++-++-+--+-++++++--++++--++----++++-+----++---++--+--+++-+--+--+---+-++++-++-++++-++--++-+-----+-++----++--+-++-++-+++--+-+-+-+++-----+-+---+-++-----++---+++--+-+---+++++++--++-+--++-+---+++--+-+---+-+++--++-++-+++++---+++++++--+-----+-+++--+-+--++-+--+++-++++-+++-+--+-+------++-+++++-----+-+++-+++--++---+++-+----+-+----++-++---+-+++++-++-+----+--------++--+--+-+++-++-++--------++-+++++-+-++--+-+-+-+--+----+--++++--++-++---+-++---++-+++++++-+++--+++-+-----+----+-+++-+--+++-+--+-+--++-+-+++++++--+++--+--+++++++++--+-+-+-++--+-+--+-+-+--+++---+-+--+-----+---+--++----+-+-+++--++-+--+-+-----+----+-+++-+-++-"

    Returns: 791

  17. "+++--++--++-++--++++-+--++++-+---+--+++-+++-----++++++++++++-+-++++---++-++++++-+-++++-++-+++----+++++--++"

    Returns: 68

  18. "++++-++-+-+++++++++-++++++-+--+-+--+++-+++--++-++++++++++-++++++++++++-++++-+--+++++--+++++-+++--+++-+++++++------++--+--+-+-++--+-++++-++-++--++-+-+++++-+--+-++++--+-+---+--+-++++++-+-+-----+-+-+----++-++++++++++-+++++-++++++-++++++--++--++++-+++++-++-+-+++--+--+-++++-+++++-+++++---++++++++-+-+++++++++++++++++++-+++-+++++-+-++-+++++-+++--+++-+--++++-++-++++++-++-+++++++-+-+-+++-+++++++++++++-+++-+++--+-++++++-++-++-+++++++-+++++++-+-++-+++-+++-+++++++--+++++-+++-+-+-+++-+-----++++++++-+++-+-++++++-++++++---++++-+-+++-++---+++++-++-+++-+---++++++++++++-+++-+++++++++++-++++++++-+-++-++-++++-++--+-++++-++++++++-++++-++++++++-++++++++++-+++++++++++++-+-++++--++++++++-+++++++-++-++--++++--+-++-++++--+--++++--+++++++-+++-+++++-+++++++--++-+++-+--++++-++++--------++++++++-+++---+-+-+--++++--+---+++-++++++++++--++++--+-+++++-+-+++++++--+++--++-++++--++++-++-+++--+++-+++++++---+-+--+--++++++++++++++++--+-++++++--+-++++++++++++++++++---+++++-++-+--++++-++-+++-+-++--+--+++++--+++++++-++++-+-++++++++++++++--+-++--+++-++++--+-+-++++-++-++++--++--+--+-++-++-+-+-++++--"

    Returns: 766

  19. "++-+---+----+---+---++--+-+---+-+-++----------+---------+---++-----------------+---+----++--+---+--+---------------+-+++--+---+-----------+++-----------------++------------+++---++-----+-+-------------+---++---+++------++-------------+-+----+--+---+-----+----++-----------------++------+--++-+----------+----++++--++----+-+---+--+---++---+--+-+-----+--+-++--------------------+-+-----+-+++--------------------+-------+-+-----------+-----+-+-+----+--+--+-----+-----+----------+-+--+-+---+----+------+---+---------+--+---------+-------++-+--++--++-------+-+---------+----+-----+-+-+-++-+--+++++++------+----+-----------+-+----+-----+-----+---++----++---++--------------++--++-------+--++----+----++--+------------+--+--+-------------+----------++---++----+-----++-+----++-----------+---+----++--+------+---+-----+-------+----+-+----+-+--+++-+-------+-----+-++-+----++----+--+----++---------------+++----------+-+--++++--------++-+----+---+---+---++-+----++-+--+----------+-------+---+---+-----+-------++----------------+-+-+-++------+---+---+--+-+----++----+-+----+---+-+-------+---+-+---------+------+-----------+---+--+-+----+--+-----+------+----+-----------------------+--++--+--------------+-----------------------------+------+-+-----+-----+-+------+---++--+--+-+-----+---+++++----------------+------+------+++--++-+-++--+----------+-+--------+-++----+-+++-+--------+---+-++--++++---------+-----+-++-------+-++----++--+--+--------+----++--------+------------+-+--+-------------+-------+-----+----"

    Returns: 1162

  20. "-+++++-+-++----+++++++++++++++++-++-++++++++-+-++-++-+--+++---+++--+++-+-+++++-+++++-++-++-++++++++---+-++-++-++++++-+-+++--++-++-++----+-+-+++---++-+++-----++-++++++++++-+++-+++++--+-+--+++++++-+++-++++++-++--+-++++++-++-+++++-+++----++++--+++++-+-++++-+++-++++--+--++++---++-++++-++-++++++++-+---++---+-+++++-+-+--+-+++---+"

    Returns: 219

  21. "--++---+---++++----+--+-+-++-----++++-+-++---+++++---++++-++++--++++--++-+---++--+-++++----+-+-+++-----++-++-+---++-+-+-+-+--+-++-++--+---+--+++--+--+-+---++---+++++-+-+---+-+-+--+---+--++------++---++++--++-+---+-++++-----+--+-++--+++--++-+++--+-+-++---+-+--+-+---+-+-+--++++---+---+-+-+++++++-++-+--++--++--+-+++-+--+-++---+-+-------+--+---+-+--++--+--++--++++++-++---+++-++-++-++-++--+----+-++--+-+-++++++-+---+++++-+++-+++--+++-+-+--+--++++-+--++++---+-+++++++++++-++++++-+-+++-+--+-----++----+--+++-++++-+-+++------+++++-++-++--++-----+++++--+--+-++-+-+--++-++--+-++-+--+---+---+++--+-+-++-+-+-+--+-++++---+++-++--+++--++--+---++-+++++--++++--++-++++---+--+-++-+++-++++-+-++-+-+-+--++---+-+++-++---++++-+++-+----+--+--+--++-+-++--++++-+-++++++++--+---++++-----++++-+-++++--++-+-+--++++-++-++-+-++-++-++++-+-----++++-+-++-+-+--+-+-+++++++--+++++-+--++----+-++++++++--+---+-++---++-----++++-++-+---++-++--+-+-+-+-+-+--+-+-+-++-----++++-++++++++++++-+++---++-+++++-++++++++----+++++++---+---++--+++-+-++-++++-+++-++-+----+--+-----++++---++-+-+-++--+-++++-+++++++--++--+-++-+++-+-+-++++----++-+-+++++++-+--+++--+--+++-+-+-+--+-++--+-+---++---+-+-+++--++-++++-----++-+---+-+---+-++-+-++-++-+--+-++++-+++-+-++-+-+-+--++++++------++-+--+-+++--+--++++-+++++--+--+++-++---+++----++-+-+--++-+++-+-+---++-+-+++--++++--++-++++++-+-------+----+-++++-++-----++-+-++-------+-+++---+-++-++--+++-+-+++++----+++------++-+++++---++--+++-+-+-++-+++---+----++-++-+-++-----+---+++++-+++--+------+---+--+++--+-+--++-++--++-+-+++--+---+++++++--++--+++--------+-+++-+-+++--+-+--++++--+-++-+--++-++--+++++------+-+-------+-++-+-+--+-++++--+++++---+++++++++++-++-++-+++-+-++--++----+-------++++++-+-+--+---+++-+-++--+-+++++--+++--+---++-+-+-+++++-+--+++-+++------+++++++-++-+--+--+---+----+++-+-+-+++-+++--+--++++++-----++-++--++--+-+-++-++--++----++-++-++-+---+---+++-+-+-+-++-+++++-+-+++---++-++-+-++--++-+++--++++++++-+-+--+-++++++-++-+---++++--++-+-+-++-+-+--+-++--+++++"

    Returns: 1051

  22. "--------------------------------------------------------------------------------------------------------------+------------+-------------------+-------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------+----------+---------------------------+--------------------------+----------------------------------------------+----------+----------------------------------------------------------------------------------------------------+--------------------+-+--------------+--+-------+--------------------------------------------------------------+-------------------+-------------------------------+--------+-------------------------------------------------------------------------------------------+---------+----------------------+------------------------------------------------------------------+----+-------------------------------------------+----------+-----------------------------------------+---------------------------------------------------------------------------------------------------------+-----------------------+-+------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------+---+--------------------------------+------------------------------------------------------------------------------------------------+------------------------+-----------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+----------------------------------------------------------------------------+--------------++------------------------------------------------------------------+---"

    Returns: 1851

  23. "+++++++++++-+++-++++++++++++++++-++++--+--+++---+++++-+++--+++++++++++++-+++++++++++++++--++++-+-+---+++++++-+-++--++-+++-++-++-+-+++-+-+-+++-++++-++-+++++++-+++++-++-+-+++---+++++++-++--++-++++-+-++++++---++++---+--++++-+--+++++++++++---++-+-++++++++-++++++++-++++++-+-++-++++++-+-++++++++--+++++-+++++++++-++++-+++++--+++-++-+"

    Returns: 247

  24. "------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------"

    Returns: 1113

  25. "-----+--+-------+-------+-----------+--+-------+--------------------++----------------+----+--------------+---+--------------------+----------+--+------+--------+-----++---------------------------+-+---------------------+-----------------------++-+--+-------------------++-+----------------------------+-+------------------+-------------+--+--+--+-----+-------+-+-----+++-+----------------+----+--------------------------------------+---------+---------+-----------------------------------+-+----++----------+-+--+-+---+---++-+-------------+---------------------+---------------------------------+----+--+--++---+-+---------++--+-----+---+---+---------+-+---------------------+---------+--------------+++--------+---------------+----------------+----+----------------------------------+---+-------+-------------------++------------------------------++---------------------+-------------------+------------+---+---------+----++-----------++----------+--+-----+-+--------------------++----------+-+----++-+-----+------+---+-----------------+-----------++-----+-+-+----+++-----------+---+-----------------+----------------------+---+-----+--++------+----+---------------+-+---------+----+---+----------------+---+--------------+--------++----++---------------------------+---+-------+---+------+-+----------++--------+----+-----------+----+-------------++-+---+-----------------------+-----------------+--+-+-----+-------+----++--+-----+---------------------------+---------+--------------+---------+-+-----+-------++------------+-----------+-++--++-------+----+----------------------+-------+----+----+--+--------------++---++---+------------+-+-+---------------------------------+--+----+----+++---+--++----+--------+-------------+--+---------+------------------+------+------------------------+---------+-+----+-------------+--+-+---+------+------------+----------+--++-----+-++--------------+----------------------------------+--+-------+-----+-----+----+--+------------+-----------+------------------------------+---+------+-+--+--------+------+--+-----+--------------------+---+----+--+---+-------+-+----------------+---------+--+--+--++--+-+--------+++---------------++---+---------+----+-------++-----+------+---+----------+-------+--------+-----+-----------+--------------------+---------+------+-----+--------------------------++---------+--"

    Returns: 2054

  26. "++++-+--+-+++-++-++-+-+++++-++--+-----++++---++-+-+-+++---++--++++--++-++--+++-+--+++++--+++++++-++-+++-++++-+--++++++-++--++-++-++---++--+++++--+-+++-+++-+-+++++-+++++++++-+-+-+--++-+-++++-+++++++-++++++++-+----+-++--++-+++-+++-+++++-++++--++-----+++++-++++++-+--+-++-----+++++--+-++++++-+-++---+---+-+++--+++-++--++-++-++-++++++-++++---+-+---+-------+++-++++++++++++-+-++--++++++++-+++++-++-++--+-+-+---++++++++++-++-+--+-+-++++++++-++-+-+++---+++-+-+++-+-++-++-++++--++++++++++-++++--+++-+++++--++++++++++-+++-+++--++-++-++-++++++++---+++++-+--+++++++-++-+-++-+-+++++--+++-++++-+++++++-+-+++++-+-+++---+++++++++++++++--++--++-++++-+-+-+-+-++++-+-++++++-++++-+-+-+---+++++++-++++-++++-+++++++-++-++++++++-++++-+-++++++++++--+---+++-+---++--+++++++++++-+-+---++---++-++--+++++++-----++-+++---++-+-++-+---+-+-++-+-+++++++++-++-++++++-++++++-++++--+-++++++++--++-++-++++++--++----+-+-+++++++-+-++--+------++-+-++++--+++-+--+++-++-+++++-+++-+---+-+-++--++---+++++--++--++-+++-+--++-+++-+--++---+++---+++--+-+-++++-++++-+++++++--++--+++-+++-+--+---+++--++-+++++-++--++++-+---+++--++++-+-++-+-++++++-+--+-++--+---+-+++++++-++-++--++-+++-+---+--++-++---+-++-++++-+++--++++++++-+++-+-+-++-++++-+-++---++++++++--++++-+-+---+++-+-+++-+++-++-++--+++++--++-+++++-++++-+++-++-----+++-+----++++-++--++-+-+++-+++++-+++--+-++-+-+-+----++---++-++---+++-++++++---+++++++-++--++---+++++-++++++++++-"

    Returns: 903

  27. "++++++++++++++++-++++++++-+++++++++++-+++++++++++++++++++++++-++++++++++++++++++++-++++++-++++++-++++++-++++++++++++++-+++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++-+++++++++++++++++++-++-++-++++++++-++++++++++++++++--++--+++++++++++++++++-++-+++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++-+-++-++++++++++++++++-++-++++++++++++-++++++++++++++++++++++++++++++++++++++-++++++++++++++++-+++++++++++++++-++++++++++-++++++++++++-+++++-++++++++++++-++-+++++++++++++++++++++++++++++++++++++++-++++++++++-++++++++-++++++++++-+++++++++++++-+-++++++++-+++++++++++++-+++++-++++++++++++++++++--++++++++++++++++++++++++++++++++++++++++-++++++-+++-+++++++-++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++--+++++++++++++++++++++++--+++++++++++++++-++++++++++++++++++++++++-+++++++++++++++++++-++++++++++++++-++-++++++-+++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++-+++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++-++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++"

    Returns: 1115

  28. "-++++++++++++++-+++++++-+++--+++-+++++++++-++-++++-++++++-++++++----+-+-+++++++++--++++-+++-+++-+-+-+-+++++-+-++-++++++--++++++-++++++++++--+-+++-+-+++++++++-++---+--+++++++++++++++++++++--+-++++-++++++++-++++++-+--++-++-+-+-+-++++-+-+++++++-+++++-+-++"

    Returns: 193

  29. "-----+--++-+-----++++-+-----+----++++++--+----+-+---+--+-+---++--------+-+-+-------+-+-+--------+++------++-++-------+-+---+++++-+----+++-+---+++-++++-+++-+-+-----+-"

    Returns: 103

  30. "+--+-++-++-------+++-+-+-++--++----+++-+-+++-++-----+++-+--+---+-+---+++-+----++-+-+++-+++-++++++-+----+--++---++----++-+++++--++--+-+-+---++++-++-++++-++---------++-+++++-+-+++++++----+---+-+--+----+++---++---++--+++---+-----+-+++++----+----++-+-+---+-+-+-+-+-+---+-+++-+-----+--+++++++++-+---++--++-+-++-+-+++-+-++----+++---+-+--++-+++-+++---+++-+++-+++-+++--+--+--++--++++-++++++-++--++-++-+------++++-+----++--+++-+---+----++-++++--+-++--+-++--+-------+-+-+++-+++-+-+----++++++-++++---++-+-++++-+++++-+-+-+-+++++--++++++++-+--+++---++-+--+---+--++++++----+++++-+---++-+-+-+--++--+-+-++-++--+-+++----++---++++-+-+---++--++--++++++--+++-++++--+-+-++++-++-+--++++-++-+---+-+-++--+-++++-+-+-+-+---++++--+-++++++-+--+++----+-++-+-+--------+-++-+--+++-+-+-+-+-++---+++-+-+++---+-+++--+++-+-+++-+-+++-+---+++--+-+-+--++--+--+++-+--+--++++-+++++++++--++++-++-+++--+++--++++++-++----+-++-+-+++-+--+-++++---+-+-+--++--++---+--++--++-+-+-+++++-++--+++++++-++---+++++--+++--+-+---++-+-+--+-++++--++-++--+-+-+--+-+-+-+-++-++--++-+-+++-+-+-+---++--++++++--+-++++---++++--++++++--+--+--++++++++----++++--++-++-+-++++-++-++-+-++--++-++-+-+-++-+++-++-++++-++-+--+++-++-+++--++++++++-+-+-++-++----++++++----+-+-+----++-++++-+--+++--+-+-++++---++--++++++++++--++---++-+++++-+++++++-+++--+-+++---+----+-++++---+++---++-+-+--+++++-+-+-+-++++++++++-+++++++----+++++++-+-+-+++--++-+-+-++-+++---+++-++---++-+--++-+++-+-+-+-+-+-+++-----+-++++-+-++++-+++++--++++--++++---++---+++++-+---++-+++---+-+-+++++++--+++----+-+--+++-++-+--+-++++-+--+-----+-+-+-+-+--+++-++-++++-++--+--+--++++++-+-+-+--+++--+++--++-+-+-+--+-++++-++--+-+++++++++++-+-+-+++---++++-++-+--+-+---+-+++++-++----++++--++-+---+++++++++-+++++-----+---++-+++-++++-+++++--++---+-+-+-+++++++--+--+++-+--+---++++-++-+++-+-++-++-+-+---+-+--+-+-++-+-+-+-+++++++++-+-++++----++-+---++++-++-+-++-+++--++++--+++++--+--+-+++-+--+---+--+-+--+--+++-+-++--+++----+-+-++-+++--+--+-++++-+++--++--+-+--+++++---+--+-+--++-++++--+--+-++-+++++---+---+---++-+++-++-+-+-+++++-+-++-+++++++-++---------+--+---+++++--+-++--+--++-+--++++-+++++--+---++--++-+-------++-+-+--++-+--++--++++++-++-+++-+++--++--+-+-++---+--+---+-++++-+-+--+--++-++-+--+-++++-+++--++++++----++++-++++----+++++--+++++++-+--+-+++-+++-+++++--+--++-+-+--+--+++-+-+++-+---++--+++---++++++++++-+--+-+-++++++-+--+--+++++-+---++-++---+--++"

    Returns: 1315

  31. "-++-++++---+--+-+++---+-++-----++----+-++-+----------+++-+-+++--++-+++++--++++---+++--+--++-+++++-++++---+--+-++--++-++++-+--+-+-+-+---+-+++---+++-+++++++--+--+--+-+-++-+--++-+-++-+-+-++++-+++-++-++-+++++-+++++-+-++--+--+--++-+--++-+-+++--+++++-++++++-++-++++----+-----++--+-++--+++-+--+-+++++-+---+++++++++++-+-+-++--+++-+-+--++-+-++-+-+-++---++++++---++----++++++++-+-+-++-+----++-++++++++-+--++-+--+-+-+-++++-++--+--+-+-+--+++-++++-+-++++-++-+++-++-++-+++++-++++++--++++----++++-----+--++-+--+----+-+-+-++-++----++-++--+++-+-+-+++++++--+------++--+---++-++---+++-+--++-+---++++-+-++--++------++++--+++++-+--+--+-+---+--+-++----+-+++--++--+---+----++++++++----+++---+--+-++++++--+++++----++++---+"

    Returns: 388

  32. "+-+-+---+-+--++---------+--------+--+--+-----++---++--+-+--++---+--+-+--+----++--+---+----+++--+++-+--+---+---+-+--++++-+-+---+-+----+-+---+---++---+-++++---+--+-+-+---+--++-+---++--+++-----+-----+-+-+-+-++-----+-----++------++--------+--+-----+---+---------+--+-++--+-----------++---+-------------++------+-++-+---+--+---+---------+--+-------+----++-+------+-----+-+-++----+---------+++-+----++--------+-----+-+-----+---+------------+----+--+------++--+------+++--+------++-+++-----+--+--+-+-----+-++-----++----++---+-+++--+++--+------++-+-+-++-+----------++-++---++-----+----+-++--------+-----------+++---+---+-+----+++-----+-----+-++-------++----++---------++-++-------++-++--------+---+-----++-+-+-+---+-------+--+-+---+--+---+++"

    Returns: 515

  33. "++++++++--+++++-+++++-+---++-++-+++++---+--++----+++-+++++++-+-++--++---+-+-+-++++++++-+++-++++--++++-++-++--++++++--++++++-+++-+++-+--++++++--+++-+-+-++----++++++-+++-++++-+++-+-++++++-+++-++-++++++-+++++--+++-+++-+--++++++-+---++-++++-++---+++++++-+-++--+--++++++----+-++--+++-+++-++++++-+----+++---+++-++++++++-+++++-+++--+-+++-+----++-+-+-+--+++++-++++-++---+++-++--+++++-++-+-++--+-++++++-++++-+++++-++---++--+++--+-+-++-++++++++--++++-++-++++--++-++-++++++-+-++++++--++-++--+--++-+++++-+++++--+--++++++++++---++-+-++++++++-++++++++++++++--+--+----++++-++-+++----++++++-++-+-+++--+++-+++-+++++++++-+-+-++-++++++++-+++++-+++++++-+--++-++-+++++-+++-++-+++--++++-+++++++++++-++++++-++++++-+++++-++++++--+-+-+++-"

    Returns: 494

  34. "--+----++---+++-+-----+++-------+--+++-+-++-------++--+-++++---++--++-++----------++-++-++-++-------++-+-+-++-+--+--+-+++++++----+---+-+--++-+-++++---+---++---+---++-+--+--+-----+---+----++++----++--++++---+--+--+---++--+-+-----+------+---++-+-++-----++++----+------+--++--+-+-++++++-----+-++-++-++++-++--+----+-----+--+-++++-----+-++-++---+----++---++-+--+--+++-++-+--+++---++-+-------++-+----+--++--++--++++++++---+---++--+++-----++-+----+-+------++-+----+-+----+--++----+-+---+-+-+----+---+------+-+-+---++++++--+-+-++-+-+--+-++-++--+-++--++++-------++-+-++-++-+--++--+++--+--+--+--++--------+--+--+++-+--+++-+++-++----++--+++--+-++---+++---++-++-++-+-+--+-+++----+----------------++-----+++-+----+---------++--+++---+--------+----+--++----+---+-+-------+-++-+-+------+++-+-+--+---++----+-+-++------+++-++-+----+-++--++-++++-+++++-++--+-++--++-+++---+---++-++--++---++++-++-+++++--+---+---+-++++--+--+-++++-+-+---+----+-++-++---+-+++-+--++-+----+-++-+-+-++----+-+------++-+--+-+++---------+++----++--+---+---+-+---++--+----+++-++-++--++--+-----+++-++---+++-+-+--+-+------++----+-+--+----+--++-----+-+---+----++++--+++-++--+++-++++---++--+----++++++-+-----+--++++-++-+--+-+-++-+---+-+---+++-++---+---+--+-+++-++-+++-++----+-+-+----+--+-+-+++-++----+--+-+----+--+--+--+-----+--+-++------+--------+-------+--+++-+---++-+++-+-+--+---+-+++------++-++-+--+--+++---+-+++--+++-++-+----++-+-+-+--+--+---++-++---++-+---++------++-++-+--+-+-+-++--+-++-+-+--++++--+---+-----+-++------+++++-++-+-+--+--+-+------++-+-+-+++-+++++-++----++-++--+-+-+++------++--+++++----++++++++----+-++-++++--+----+-+--++-+----+++--+--+++++-++-+--+-+-++-+-++--+----++-+++-+----+++--++-++-+-++-++-+++-++-----++-------+----+-------+--++-+--++-+-+---+--+-+---+--+-+++--+-++-++-+++-------+-----+--+++++-+++---+++++------------+-++++++++---+------+----+-+++--+-+----+--+---+-+++++---+---+++---+------+--------+--------+++--+-+----+----------++-+-++-+---++----+++---++++++---++++++-+-+-+-----++-+++-++-+-+-++-+--+-+-++-------++-------+++--+++--++--+-+-------++----+--++++++--+-+---++++-+-+-+-++---+--+-+--++-++--++--+---+-+-------++-++-+--+-+++-+---+---+---++--++++-+----+---++--+----+----+++++------+---+-++++-+-+-++++-+-++--+-+--++-+-+---+++--+--++--+--++++-+----+-+---+--++-+--++++--+--+----"

    Returns: 1295

  35. "+++++++++++++++-+++++++++++++++-+++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++-++-+++++++-++-+++++++++++++++++++++++-+++-+++++-+++++++++++++++-+++++++++++++++++++++++++++++++++++-+-++-++++++++++++++++++-++-++++++++-++-++++++++++++++++++++++++-++++++++++++++++++++++++--++++++++++-++++++++++++++++++-+++++++++++-++++++++-+++-++++++++++++++++++++-+++-++-++++++++-+++++++-++++++-++++-+++++++++++++++++++++++++++++++++-+++++-+-+++++++++++++++++++++++++++++++-+++++++++++++-++-++++++++++-+++++++++++++++++++++++++-+++++++++++++++++++++++++-++++++++++++++++++++-+++++++-++++++++++++++++++++++++++-++++++++++++++++++++-++-+++++++++++-+--+++-+++++-++++++++++-+++--++++++++-+-+++++++++++++++++-+++++++++-++++-++++++++++++++++++++++++++++-++-+++++++++++++++++++++++++++++-+++++++++++++++++++++++++++-+++++++++-++++++++++++++++++++++++++++++-+++++-++++-+++++++-++++++++-+++--+-+-++++++-+++++++++++++++++++++++++++++-+++++++++++++-++++++++-+++++---+++++++++++++++++-+++-+++++++++++++++++-+++--++++-+++++++-+++++++++++++++++++++++++++++++++-+-++++-++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++-+-++++++++++-+++++++++++++-+-++++++++++++++++++++++++++-+-++++++++++++++-+++++-+++++--++++++++++++++++++++++++++++++-+++++++++++++++++-+++++++++++++++-+++++++++++-+++++-+++++-+++++++++++--+++++++++-++-++++++++++-++++++++++-++-++++-++-+++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++-++++++++++++++++++++++++--+++++++++++++++++-++++++++++++++++++++++++++++++-+++++++++++-++++++++++-++++++-+++-+++++++++-+-++-+++++++--++++++++++-++-++++++++++-++++++++++-+++++++++++++++++++-+++++-+++++++++++++-++++--++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+-+++++++++++++-++++++-++++++++++-+-+++++++++++++++++++-+++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++-+++++++++++++++-++-+++++++++++++++++-+-++++++++++++-+-++++++++++++++-+++++++++++++++++++++-++++++++++++++++-++++++++++--++++++++++++++++++++++++++++-++++-++++++++++++++++-+++++++++++++++++++++++++++++++++++-+++++++++++-++--+++++-+++++-+++++++++++++++++++-++-+-+++++++++++++++"

    Returns: 2007

  36. "------+-----+--+------+-++-+-----+---+-++--+---+--+--+-+-----++-++-------++-++-------+-----+--+--++--+-+----+++---+-+----+---+-+--+----+-+--+--+-++--------++-----++---+-+---++--+-+-----------+-+-+-++-++-------++--+----+----------------------+-+++-+-+-+---+----------+-+--+--+---+--+-----++----+--+-------++-+-+---++---+++-++--+--+---+---++---+-------+--+---+-----------"

    Returns: 264

  37. "------+-----+-+---------+----++-----------+--------++-+----+----+---+--------------+----+--+--+-+------++-+----+-------------++-----+--+---+-----+---++-++--------+------+-+------+----+---+----------------++---+--+++--+-++----++----+-+----+------++-----------+--+--+-+--+------+-+--------+-+-----+-------+----+---------+----+-----+-----++--+--+-------+-------+---+-------++-+-+--+------+--+-+----+---+------+-----+--+-+---------------+---+-------+--------------+----------------+-+-----+----+--+-----+---+-++------------------++--------+--------------+----------------+--+-----------+-----+-+---+--+--+------++--+-------+--+-+----+-----------------+-+-----++----------+---+-----------+--+----+-++----+----++---+-----++-----+-------------++--+-----+----+--++-------+--+------+----+------+-------++----------++---------------+-+------++-----+------+--+-----------+-+---+---+-------++----+-+------++---------------+-++-------------------+--++----+----+---+------+------++---------+++-----+----+-------++------+-------++---+-+-----+-------------+-----+-----+-+----------+-----+-+---++--------+------+--+------+++--+---+-------+--+-------------+---+------++------+++--++------------+-++-+---+----++-+--------+--+------------------+---+-----------------------+---------+-+-+-----+-+--+--------+-----+-----------+-+------+---------+----+++---------------+-----------+--------+-+------+--+----+------+--------------+--++-+------+------------+---------+------+---------+-------+-----+-------------+-----+--+---+-+----"

    Returns: 1229

  38. "--++---+---+++--+-+-+++++-++----+---------++---+----+--+---++-+--+---+-++-----+-+-+-----++-+--+++-++-+---+-+---+-+-------+++--+----+-+-+-+----++--+-------+--------+----+------+-------++---+++-+---------+-------+----+-----+-----+---+--++-++----------------+--+-++---++--+---------++----+---++--------------------+-+-+++---+-----++-+--------+----+++---+--++--+-++----+--+--+---++--+---+--------+---+-+-+----+-----+----++-------++-+-----+--+--------+---+----+---+--+-+---+---+--+---+-++-----+---+--+--++-+-++-+---+---------++----+---+---------+--------------------++--+-+-++----------+-+------+---++-+-----+--+-+-------++---++---++-----+-------------+++---+--+-+----+--++---+--+---++--+-------------+----+--+-+--------++-++---+---++-++-+--++--+-----+-------++-++-----+---+-+-------+-----+-+--+---++-+++--------+---+-----+--------+-------+-+---+--------------+---+-------++---+-+-------++--+-+---++-+----+---++----+---+--++--------++----+-+------+--------++--+--+--+----+-------++-+---+++--------+-++---+---+---+-+++-+---+-+-----+-+---+----++--++--+---++---+--++++---++--+--+-----+-+-------+------------+-+------+--+--++------+---+-----+-+-----+++--++--++-+---+-+---++--+--+-++-+------+-----++----+-------++-+-++--------------+-+--+----+--+-+---+---+++++--++-+---++----++----++--------------+-+-+-+++----+--+--+---------------++---+---+--+-+---+--+----+---------+---+--+-------+-----+-+-++--+-+-++-+----+------------+---+---+-+++--+-------------+-+-++---+-------------++-+-++---+--+------+++-+---+---+++---------++-+--+-+-----+-+----+-+-+----+-++-+---+--+-++-++-+-+-++---+-----------+------++------+-+------------------++---++------++------++------+--------++--++-+---------+---++------+-++----+-----+---------+-------+--++---+---+---+----+-----+-+++-+-+-----+----+------++--+-+-----+---+-+-+---++--+-+-+-----++----+-----+++--+-----+++-------+++---++---+-++------+-+----++---+-----+---++--++----------------+---+--------++-------+---+--+-++-----+-+-+--++--+----++-+---+----+------++-+---+-+-+---------+--+---+-------+---++----+-+---+-----+-----------+------+-++++----+--+--+--+-+--+-----+-+--++-++---+------+------++------++---++--+-+-----+-----------+-+-+-------+-----+---+---+--++--+--+-----+---+-+-+---+--+--+------------+-+--+-++-+--------+----------+-+--+-++-+--------+------+--++++-+++-----------++----+----++-++-++---+-+-+--------+-----+---------+---+----+------+---++---+-----++----+-++-+----+-+++-----++--"

    Returns: 1746

  39. "++++++++++++--+-+++--++++++++--++++++-++++-++-+-++++-++-++++-++-+-++++++++-++++++-+++-+++-++++++---+-++-+-++++-++-+++-+++-+-+++-++++--++-+--+-++++++++-+-++++-++-++++-+--++--++++++---++-++++-+++++++++--+--+++---+-++++--+-+++-++++---++-----+++++++++-++-+++++++++++-++++++--+++-++-+++++-+-++++++-+++++++--+-+++++++-++++++++---+++++++++-++-+--++++++-++++++++++-+++-++++++++--++----++-+-+++-++++++++-+++-+--++++++-+--+---++--+-+++--++++++----+++++++++-+--+++-+-++++---+++-++++-+++++++++-++++-+-+++++-++++++++---++-+-+++++-+-++--++++++-++-++++++--+++++--+-+++++++++++-+++++++--+--+-+-+++-++++++++++--+--++--+++--+++++++-++--+-+++-++-++++-++-+++-+-+-+-+-+---++++++-+++-+-++++-+++++++++-+++++-++++++++++++-+++++++++++++-++-++++++-++++++-++-+-+++-+++++++++++-+-++++++-+-+-++-+-+++++++++++-+++++++++---+-++++++++-++-++++-+++++-++---++++++-++--++++++++++++--+++-++-+++++--++++-+++-+++++--++-+++++++-+++-++++++++++----++-+-++--+++++++++-++++-+++---+++-++-++++++++++++-++++++++++++++-++---+++++-+++++++-+++++--++++-+++-++++++-+++++++++++++++-++-+---++++-++-++++++++-++-++++++++-++++++++-++++++-++-+-+-++++++-+-++-+++-+++++-+++++-++++--++++++++++++---+++"

    Returns: 852

  40. "++-++++-+++++-+++-++++++-+++++++++-++-+++++-++-++++++++++++++++-++-++++++-++-+++-+-++-+-+++++++---++++++-+-+++++++++++++--+-+++++--+++-++++-+++--++-++++--++++++++--++++++-+++++++++++++++++++++--++-++-+++--+++-++++--+++-+-+++++--++-+-+++++++++-+--++++++++++--++-+--+-+++-+++--++++--+--+++++++-++++---++-+-+++-+-+++-+--+-+-++-+++-+++++-++-++--+-+++++-+-+------++--+-++++---+----++++++-+---+++++-++-++--++++++--++-++-+++--+-++-++++++---++++++++++-++--+++--+-++++-+-+++++++-+++--++------++++-+-+++++-+-++-++--++--++---++-+++-++----+++++++++-++-+--++++++++-++--+++-+++++++-+++++++++--+-++++-+++++-+-+-+++++-+---++++++-+++--+++++++--+++++-++++-++-+++-+++-++++++-++-+-+-++--++--+--+++--++++++++++++-+++++++-+-++++--++--++---++++++---++--+-+++--++++-+++-+++-+-+++-+--+--++---+++++++-+-+--++++++++++++-++--+-++++--++++-+++++++-++++-+-++-++-+++-+--+++++-+--++-+-+-+--+++++-+++--++++-+++-++-+-++---+++-+-+-+++++--++---+---+++++-++-++-++++-++++++-+-+++-++++-++++-+-+-+-++-+-+++++---+-+++++-----+-+++++-+-++---+++-+--+-+++--+++++--+-+--++-+--++-+-+++++++-+++++-++-++++-+++++-+++--+---+-+-++-++++-+--+++++++++++++-++++--+++++-+++-++++-+++++-+++-+-++-++---+++-+-++-+++++++++++-+++++-++++++++++---++++----+++-+++-+-+-+-+-+++++-++++-+++++++-+--+++++++-++++++-++-++++++++-+-++-+--++-++-++++++-+--++++++++++++-++-+--++-+-+-+--++-+--++++++--+++++-+---+-+-----++++++++---+++--+++++-+-+++-+-+--+++-++--++++-+-+++++--++---+++++--++++++--+++-+--+-+++---+-+++++++++-+-+-+-+-+++-+-++++++-++--+++-+--+++-+-++++-+++-++-++++++++-++++-+++++++++++-++-+--+++-+++--+-+++++---++-+--+++++++-++-++-+-++-+++++++-++-++++++++++-+++-++++++-+-++++-++++++-++-++++++--+++-++-++-+++---++++-++++++-+--+-+++++++-+-++++-+-+++++--++++++++++--+---++--+-+++++--+++-++++++-+++++++++-++-++---+++--+-+-+++++-+++++++++++-+++-+-+++-+--+-+++++-++--++-+-+-+++-+++----+++--+++++++++-+++++++-++-+---+-++-+++-+-+---+++--++++--++++-+++-++++++-++-++++++++++++++---"

    Returns: 1322

  41. "-------+---+-+-------------+-----+-+------------------++---+-----+---+++---+-+--+---++-----++--------+-+--+--+---++++-----+--+-----------+-+-----------+--+----++---++---+-+-------++-----++++---+-++------+-------------+-++-+--+-+-+---+---+--+----++-+--+---+--+--++-------++---------+----+++------+---+-+-----------------+----+--+-----++-------------------+-++---+------------+-+-----++---------+---++-------------+-----+-------+-----+++---+----+---------+--+-+----------+-----+---+----++-------------++-----------+--+-----------+-------+----+-++--+++---------+--+-----+------+------+------+---+-++----+--------------+---------+---+-----------+--++---+-----++--+-----+----------++-++----++----++--+---------------+------+-+---------+-----+------+-+-----+-------+--++++-------+--+---+---+-------+-+-+-+---------+++---++--+----+-+---+---+-+-------------------------------+----+++++----------+--+--+----+----+--++----+-++----+---------++----+--+----+--------------+--+---+-----+-+-++---------+-----+--++---+-+---+-+----+--+----+++-+-+-------+---------++---+-+-----+------+-----------+++---+-----+--+--+--+--+-------+-------+-----+-------------+-+-+-+-----------------+--+---+--+------+------------+-------------+-++--------++------+---+---+----+-----------+--------+-+---------------+----++++---+---+-------+---+-------+-+--------------+-+----------------+------+---+------------++++-------+-----++-------+--++-------+--+--------------------+----++-++---+----+--+----+------+-+-+----------++-------+---+-++++--+--+--------+--+++-+----+-+++--++-----+-+----------------------+--------+---++------------+-+-+-++-+---+-+---+---++--++---+-+-+--+++-----+-+--+--+---+--------+-+------+-+-+-------------+-----++-+-----+-------+----+-----------+---+----+-++------------------+--------------+----+------+----+----------+----+---+----+-----++----------+-+++------+--------------+-----+--------+-+++------++---+-----+-+-+-+-+--+---+--------------+------------+-----+-++-+-----+-----+--+----+-----------------++-+-----+-++------+------------+----+-----------++---+-+---+------------------+------------+-----+---------+-----+----+-----------+-+---+--------+---------++---+"

    Returns: 1708

  42. "-----++++-+++++-+++-+++++++-+-+--+--+-+-+-+++-+++-+-++-+-++-+++++++-+-++++--+++-+++-+++--++++++++-+-+++++-+++++--+++++-++-+-++----+++--+-++-+-+++++--+++++--+-++-++---++++--+--+-+++-+-+++-+-++++++-+---+++++++++--+-+-+-+-+++-+-+++-+++-++-++-+-+++-+++-+---++--+++--++++-++-+-+--+-+++-+-+-+++-++++++-++---+--++--+-++++---+++-++-+++++---+-+++-++-++--+-++-+-+--++----++-+-++-+++-+--+-+++--+-+++-+++-+---++-+---++++-++-+-+++-++++--++++--+--+-+++-+----+++++-+-++++---+++-++++++++---++--+++--++++++++++-++-+-+-+-+++-++++-++---+++-+++++-+--++---++-++--+-+-++++-+++-++-+++---+-+-+++++-+-+--++---+++++++--++--++++-+++-+++++--+++---+++--+++++-++--+-++-++++-++-++++-++++--+++-++-+++-++-++++-++-+-++--++++++++-+++++-++-+-++++-+++-+++++++++-++++---+++--++++-+++++-++++++---++-+++++++++++-++++---+-++-++++-++--+--++-+-+--+++++----+--++++-++-+++-++++++--+-+++-+-----+++----+-+----+-++-++++--+-+++--+----+-+++++++--+-++++-+--+-+++-+-++-++++--++---++++++++++++-+--+--+--++-----++-+---+---+++-+-+--+++-+-+++++++++++++++-+-+++-+-+++++++---+---++-+-++-+++++++-+++++-+--++++++-+++-++-+-+-+--+++-++++-+-+--+-+---++++++++--++++---++-+--+-++++++-+-+-+++++-+++++--++-+++++-++++-++++--++-+-+-+--+----++++--++--++--+-+-+++-++-+-+-+++++-+-++-+-+++++++--+++-+++--++-+---+++++-++-++---+-+++++-+-+-+--++++++++-+++++-+-+--++++-++++-++--+--+-+-++--+++---+-+++++-++++--++--+-+-+--+-----+-+++-+++-++++++-+-++++++---+++++---+-+--+"

    Returns: 884

  43. "+++--++++-++++-++-++-+++-++---+--++-++++++--+-++-++-+-+++++-++-++++-+++-++++++++-++-++++++-+++--++++-++-++-+++-+++++-++-++++-+-++++-+-+++++++++-++-++++++-+++-++++++++++--+--++++-+-+----+-++++-+++-++++-+-+++-+++++-++-+--+++--++-++++++-+++++++++-+++--++--+++-+-+++++++--++++++++++--++-+-+---+++++++++++++--++--+-++-+++++++++-+-++++-+--+-++++-+++-+-+-+++++++++-+-+----++++---+++--+++++++++--++-++-+-+++---++++-+--++-++++-+++++-++++----+++++++-+++++++++-++++++++++--+----+-++++-+++-++++++-++++--+-++--++++++++-+++-++++-+++-++-++-+++-+--++++-++--+++++++-+-++++-+++++++-++++++++-+-++++--++++++++------+++++++-+++-++++++++-+-+-++-+++--+-+++++++-++++-+-+++-+++++++++++-++++++++++-++--++++-++--++-+-+++++--+++-+++-+++-+--++++++-+--+--++++++++-++-+-++-+++++++++++--++++++--++++++++++-++++++++++++-++--++++++--+--++-++-++++-++++-+++---+-+++++--++++---+++-+++-+---+++++-+++++++--+-++++++++-++---+--+++--+++++++++++++++--++-+++-++-++++-++++++-++-+++++----++++++++--+-++++--+++++-+--+++++++++++--++-+++-+--+---+-+++++-+-+-++++++-+-++-+-+++-++++--+-+++--+++++-+--+++--++++++++++-+---++++++++++-+++---+--+-+-+++-++--++++++-++++++++--+++-+-++++++-+--+++-++++-+++++++++++++-++++++--++"

    Returns: 840

  44. "+++++++++-+++++++++++++++++-++++++++++-++++++++++++++++-+++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++-+++++-++++++-+++++++-+++++++++++++++++++++++++++-+++++++++++++++++++++-++++++++--+++++++++--+++++++++++++++++++++++++++++++-+++++++++++++++++++++++++-+++++++-++++-++++-++++-+++++-+++-++++++++++--++++-+++-+++++++-+-+++++++++++++++++++++++++-+++++++++---++-++++++++++++-++++++++++++++-++--+++++++++-++++++++++++-+++++-++-++-+++++++-+++++++++++++++--+++++++-+++--++++++++++++++++++++++++-+++++-++++++++-++-++++++-+++++++++++++++++++++++++++++-++++-+++++++++-+++++++++++++++-++++-++++++++-+-+++++-++-+++++++++++++++-++++++++++++++++++++++++++++-+++++++++++++--++-+++++-+++++++++++++++++--+-+++++++++++++++++-+++++++++++++++-+++++++++-+-++++++++-+-+++++-++-++++-+++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++-+++++-++++++-+++++++++++++++++++++++++++-+++++-++++++++--+++++++++++++++++++++++++++++++-++++++-++++++++++++++++++++++++++++++++-++++++++++++-+++++-+++++++-++++-++++++++++++++++++-+-++++++++--++++++++++++++++++++-++++++++++++++++++++-+++++-+++++++-++++++++++++++-+++++++++++++++++++-+++-+-++++-++++++++++++++++++++++++++-++++++++++++++++++++++++++++++-+++++-++-++-++++++++++++++++++++++-+++-+++++++++++++++++++++++-+-+-++++-++++++++-++++++++++++++++++--+++-++++++++++++++-+"

    Returns: 1199

  45. "-++++++++--++++-++--+++++-+--+-----+--+++-++--++-++--+++-+-+--++-++--++-++++-+++-+++-+++++-+----++-++-+-++++-+-+--++++-+++--+-+--+++-+-+++++--------+-+----+-+---+--++-++++-+-+-++++++++++-+++-+-++---++---+-+++----+-+-+----+-+---------+-+--++++++-++++--++-++-++--++-+++---+-+--+-++++-++++-----+-++-+-+---+-++--+-+-+-+-++--+---+-++++--++---++++---+--+-++--+-----++-++---++++++-----+--+--+-+--------++-+-++++--++++--++--+---+-+---+++-+--++++++-+++-++-+++++--+-++-+--+++-+---+-++-+-+++-+-++-++-----+----+--++---+---++--+++-+++--+--+-+--+-+--+--+--++-----+---+++++-+++--+-+---++++-++-+--+-+---+-+---+----+-+-++--++--+-+---+-+-+-+-+--+--+++++-++---+--+-++-+-+++--+++-+-+-+-++-----+---+---+--+------+-+-+-++-+-++---+++-+++-++-+--+--+-----++-----+-++-+++++++---+--+--+++++--+-+-++-+-+-+----++++--+--+-+++++-+++--+++----++-+---+++++-+--++--+-+++---+-++++-++-+-+--+------++---+-++-++---++-++++-++--++-----+----++-+++++--+++--++++---++----++++++-+---+++-+++-+--++----++--+++---+-++--++----++-+++-+++---++++--++++++++---+++-+-+++-+-+++-+--++-+----+--++++---++++-+---+-+++-+++++----------++--++--++-----+-++-++-+-+++++--+---+++--+++-----+++-----+------++-+++-+-+-+++-+----------++-+-+-----++--+-+++-------+-+--+--+-+--+-----++++-+++-++++-++-+++-+++-+---+-+-+-+-++++++-+-+++--+-+++---+++--+-+--+++++-+-----++--+--++--------+--+++-++-+-+-+---++-++++++-----+-+++++++-++----++-++++--+-+-+-++-+--+-+-+--+-+--+-+-++--+--+--+-++-----++++-++-+--+---+-++++++-+-++---++++-+--+-++-+-----+----+-+++---+-----+-+-+---++++-++-+++--+-----++-+++---++-+---+-----+++++-++-+-+++-+-++--+--+++-+++-+----+++++++-+--++--+---------++-+--+----+----+--+-----+-+--+--++--+++-+-++-+++--+----+++--+++-++-+-----++---+---+-++-+-+-+-----++++--+----+++++-+--+++--++-+++---++++++--+---+++++-+-+++--+--+-++--+-++--++-++----++-+---++-+++++-+++-+-----+++-+-++++++----+-+++----+-++++---+++++-++++--++-+--++-+++-++-+++--+++------+++-++--+++++++---+--+--++-------++-+-++-+++------+-++--++++++-+--++-++--+-+-+-+-++-+++++-++-+--+---+--+-+-++-+---++++++-+++-+-+-+--+-+++-++--+-++-+++-+------+++--++++++-+----++-+++--+-----+--++-+--++--+-----++----+-++-++---+--+-++--+--++-++-++++----++----+--++-+--+++-+--++--+-----++-----+---+++-+-++--++++-+-+--++++-++--+---+++---+-++-+-++++++++---+-+--+++--++-++++----+++-+++-+-+--+--+--+++-++-+-+-+++-++-++----+--+--+-----++-+--+--++-++-++++++----+--+-+-++------+-++-+--++++-+++--++++--+--+----+-+++++---+---+++-++++---+---+++-+--++++++--++---+-+-++-+--+++----++--+++-++-++++---+-+++-----+++++-+-+-"

    Returns: 1251

  46. "++++--++++++++-++-+++++++++-+++++++-+-+-+++-++++++++++++--+++++++-++-++-+++--+-++-+++++-+++++++++-++-++++++-+-+++++++++++++++++++-+-++++-++++++-+-+-+++-+++++++++-+-++++-++--+++++++++++-++++++++++++-+-+++++++-+++++++-+++--+-+++++++-+-+-++++-++-+++++--++++++-++++++++++++++---+-+++++++++++++++-+-++++++++++--+-+-++++++++-++++++++++++++-++++++-++++-+-+-++++++++++++--++-++--+--+-++++++++-++++++-++-+-+++-+++-+++-++-++++-++++-+++--++++---+++-++--+++-++++-+-+-+++++++++++++-++++++--+--+++-+++++-+++++++--++++--+-++++++++++-+++++---+++++---+++--+++-++++-++-+++++-++++++++++++--++++++-+++++++++++++-+++"

    Returns: 469

  47. "-+---+-----+-----++--+--------+-----+-----------+-----------+-----+--+++------------+------+------+--+-------------+--+-+---+----------+---+---+-----------++----+--------------+-----+--+-----+---+------++-------+--------++-+--+-+-------++--+-------+--+-+-+-+++--+--+-----++--++---+--+----------+--+++---+-------+-----+-------+---+-----+++-++------------+---+---------------------+-++------+----+-+--+--+--+---+-++-----------------+-----+----------------+------------------+------+++--------+-------+---+++-++-------+-------+---+---+-++-+---+---------+++----+-------+---+----------+-+----+----++----+-----------------------------------+----+-+--+---+---+-+-----------+-+---++-----+-+---+--+-+-----------+---+---------++--+-------+---------+++------------------+------++---+---+--+----+-----+-+-----------+---+--+--+----+----+----+-------+------+-----------------++---------+-+--------+------++--+------+----+---------+-------------+-+-+---++----------+---+----++-+-----+------+----++--+--------+-----------++-------------+-----+---+----+-+----------++-+------+----+----+---++-+---------------++--------+-------------+---+---++--+----+--+----+--+-+-----+-+-++--+++---------+-+-+-------+-+-+------+---+---+-------+-----+-------+---------------+--+-+--------------+-+----+-------------+------+---++-+--+---+---------------++------------+-------+--+------+------++-----+--------+-----+---------+--+-----++--+--+--+----+-----+------------+--+--------+-+++---------+-++-----------+---------+----++-+----------------++-------------------+-+----+-++-------+---------------+----+-----+------+------++-+---+------+------+--+-----+-------+------+--------+------------+++----+-------+-------"

    Returns: 1364

  48. "--++++-++++++++++++-++++++++------+-+++-+-+-+-+++++-+--+--++--+--++-+--++-+-++++++--+---++---+++++++-+-++-++++++-++-+-+--++++-+-+--+--++++---++---+---+++---++-++++--+++-++++++-++--+-+++-++---+++--++++-+--++++++-+-+--++-++-++++--+-+-++--+-+--++++-++----+++--+-++-++++---+-++-+-+-+++---+++--+--+++-++--+-+++-+-+++-++-+++--+-++--+--+++-+-+-++--+-+-++--++-+--+++---+-+-++++-+++--+++++--++--+---++-+-+++++-+----+-+----+++++-+++++++--+--+-+-++++-+-+-+++-++++--++++-+++--++-++++-++++-++--+++-++++-+++-++++++---++++-+++-++--++--+++++++++++-++-++++---+-+-++++-++-++-+++--+--+--+-+-+--+++++++--+++-++++++-+---++++++++-+-++-+-+++++-++++---+++++++--+++-+++-+-++++-++-++++-+-++--+----+-++++--+--+++-++++-++++---+++++++---+-+-+-++++++--++++-+++++-+-+++-+--+--+--+++++++--+++---+++-++-++---++--++---++-+-++-+++++---++++++-++--+-+++++-++++-++++-++-+++++--++++++---+-+--+++++----+--++----+---++-++++-+++++--+++--+-+++++++++--+--+++++---+-+++++--++-+--+--+-++++----+++----+-+-++-++-+++++++--++---++---+-+--+-++-++-++++--+++-+--+----+-++-+-++++---+---+---++-+++-+--++---++-+-++-+-+--+-+--+-+-++++--++++-++--+-++++++++--+-++-++-+-+++---++-++----+++++-++--++-+++-+-++--++--+++--+--+++++++++--+---++-+++--++++--++--+-+++++-+---+--+-+-+++++--+-+-+-++++-+++-+---++-+++-+++-+---++-++---++++++--+--++-+-++++++++-+---+-+---+++-++--+--++-++---+-++---+--+----+++-+++++---+-+-+++++++--++--+-++-++++++--++-+++-++---++-++++-+++-+-++++--+-++-++-+-+-+------++++++-++++++-++++-+++++++++++++++-++----+-++-++++++---++--+-+-+++-++++-++++++++--++-+---+-++-+-+-+---+++++-+-+++-++---+++-+--+-++-++--+++--+-++-+-++-+++--++---+----++++++++-++--+++-++-++++-+-+-+-++-++--++++-++-++--+-+++-+-+-------++++-+-+++--+-++-++-++-++++-+++-----+-+-+-+-+++-++--++-+++++++++-+-+-+++-++---+-++-++++"

    Returns: 1059

  49. "++---++---++--++-+--+-+--+-+--++-+-----+-++-++------++++-+-++--+----+----+-+++--+---+-+---++----+----+-++++----+++-------+-++---+-+-+-++------+-+----++++--++-+-+---+-+-----++++--+----+-+--++----++-++-----+-+++--++-+--++-+-+-+-++++-++---++-++---+--+-+++++-+--++-+------+---+-+++++---+-++-++-++++---+-+--+-+---+-+-+++++--+--+-+---+-++-+++---++--++++-----+-+--+---+-+++++---++++-++------+++++----+---+++----+-++-+--++++----++++--+----+++++-+++--+--++-++-+-++-++--++-++--+----+-------++-+++-+--++++-+------+--+++---++--++--+-+-+-++---+-+++++-+-++---+-++-----++++-+-+------+---+-----+-++-++-+-+-++-+-+-++++--+-+--+++-+--++++--+--++--+++--+-+--+--+--++++--++--+---++--++--+---+---------+---+----++-++--+-++++-+-+--+-++++++-+-+--+++--+++-+++-++-+++-------++++-+-++++-++-+---+-+++--+---++++++++--+++-++---++-+----+--++--+---+-++++--+++--+-+++-++-+--+-++-+-++---++++--+----++-+--+---+---++++++-+-+---++--+--+--+-+-++-+-++--++++--+++---+-+----+----+-++++-+++++-+--++--++-++---++-----+-+-+--+--+----+++++-+------++-++---++-++--++----+++-+-++---++++++++++-+-++++-+-----+--++--++++-+-++++++--+-++-----++++---+---+-+--+--++-----++--+++-++-++---+++-----+--++-+++-+++----+-+---+----++-++--+-++----+--++-+---+++---++-++----+--+-++--++-++-++++--++--++--+--+++++-+++--++-+-++-++----++----+--+-+--+++++--++---+-++-++----+-+++--++-++-+-++--++-+++---+-++++-++-++++--++++++------++-++-++---+-++-+-+-+-++--+++--+-+++--+---+-+++++-+-+-++++--+----+--++-+---++-+--+----+++-+---++---+++---++---++++--++++++---+++++++--+-++-+++-+-+-+-++----+-++-+-+-+--+--+-+-+++++++-+------+-----+-++--++++--+-+++-+---+-+----+-+++-+--+--++++++++---+-+--+---++++---------+++++++-+++-++-+++-++-+---+-++++-+-+-+-+--+-+++---++--+--+++-+-+-++-------+--++-++---+++-+-++-+-++--++----+++-+--++-----+-++--++--+----+--++--++-++-+-++---+-++--+-+++--++--+-+-+--+--++++-++---+------+-+---+-++--+-+-+-----+-+++++-+--+--++-+++++-+--+++-++++++++-+--+++---+-+-+---------+-++++++++++++--+-+-+++-++-++-++-+---+-+--++++--+------++++---+--++++++++-++-+--+--+++-+--++--++--+--++---++++----+--+-+-+++++++---+--++--++--++-++--+--+--++-+----++-+++-+++-++-++---++-+-++-++-+--+----++---+--++-+-----------++-++-+----+++-++--+++----------+++++---++-+-+++----+-+-----+-+---+++-+++--+--+-+-++--++++---+-+-+--+----+-+--+++++--++++---+--+-----++-+----++-+++++----------+-+++-+-+++-++++-+--+++++--+-+++---+++++--+--+--+-+-++---+++------++++-+++----+--+----+-++--+-++---++--+++-+++++-+---++----+--++--+-++++---++++-+-+---++-+-+++--+---++-++--+-++--++-++-+--++"

    Returns: 1264

  50. "-----------------------+-----+-------------+----------------------------+-----+-----------------------+--------------------------------------++-+---------+-----+--------+-------------------+----+---+---------+--+-----------------------------------+----------------------------+--------------+-+-----------+--+----------+-----+---------------+------+--+--+-----+-------++---+--------+----------------+----------------------+-------------------------------+-+---------------------------------------+---------+++------+----+-------------+---+-----+---------+--+--------+------------+------------+---------------------+---+----------------+--------------------------+-------+----+------------------------------------+-------------+-----+----------------+----+-----------------------------+-------------+-----------------------+-+--------------+------------------+----------+--+------------------------------------------------------------++------------------------+------+---------+--------------+-----+----------------------------------++----------++-+----------------------+++-----------------------------+------+-----------++---++--+-----------+----------------+-------------------------------------+--+--------+-+---+--------------+----+---------+------+---------+------+-+-----+--++-----+-----------------+-----+----------+----------+----------+++---------------+-------+------------+-+----------------+----------+----------------+----+-------+-+---------------+-----------------+-+-----+++--+------+------+------------+----+-------+-+-------------+----+----------------------------------------------+------------------++---------------++------------+-----+--+-------+------+--+----------------------------+-----------------+--------+-----+------------------------+------+----+--------------+-----+---------------------------------+--------------++-----------------+-++------------------+----------------------+----------------+-----++-----+----------------+-+------+-------------+------------+-------+--------------+----+---------+------------++--+--------++-------+-----------+---+---+------+-------------------------------------"

    Returns: 1937

  51. "-+--+-----+++--+---++-------------+-+++-+++--------------+-------+---+-------------+-+--+---+-++------------------+--+-----++------+-+---+-----------+-+-+--------------+--+-+--+--------+-++-+-------+-+----+---+---+-+------------------------------+--+-+-------+-----++-+-------+----++--+------+-++---------++------++-++-+-++-----+-+--+--+----------++--+-------+++------------++-+----+-+---------------+------++-+---+---+++--++-+-+--+---------++-----+----+------------+-----+---+-+------+-+----+--+---+---+---------+-+---++--+---+-+--------+++-+----------+-+----+------++------++-++-+-------+-----+--++---+-+------++-------+-------------+--++-++-+++----+--+--+--+------+---+-+-+++---+-+---------------+----+----+--+--+-+--+--++------++-+---+---------------+-----+-++--+-++-------++--+--+---+-----------+-+-++-----++++--+-------+-+--+-+---+----+-+--------+-+++--++---++--------+---+---+-+----+--+----------+--+-------+++-------+--++------------+-+--+------------+--++--+-------+-----+----+------+-+++-----+++-+----+--+-------------+-+-----+-------+-------+---++--+-+-----+-+----------+---+---+-----------+-+--+--------------++-++--+---+---+-----++----+--+----+-----------+---+--+-------++---+-----+---+---+---------+-------+------+-+--------+-----++-+---------+-+---+---++-+-++++-+-----+--+----++-++----++-----+---------+-+--+-----+--+++-+-+-+-+--+++-+---+----+---+-----+----+--+--+--+--++-------+---------+-------------+---+++-+-+----+----+-+--"

    Returns: 1094

  52. "--------+-------+----------+--+---+---------+--------------+---------+-------------------+-+------------------------------------+-----------+---+--+-------------+--------+-+--------+------+----+---+---+---------+-----------------++---------------+------------+--+--+--+-----+-----------+----------+-----------+----+----------+-----------+------+---++-+-+--+----------+--------------+----------+-----------+---+-----+-------+---------+------++-+-+-+----+-------++-+---+---------------+-+--------------+--------++--+------------++-------+++------+---+-----------------+-----++-------+---+-+-+---------------+++-----+--------+-+---+-------+-------+-+--+---+--+-------+++-------+---+------------+-+--------+-----------+-----+-----------+-----+---------------------------+------+----+--++-+----------+-----------+-+----+----------+-+--------------++---+-------+-------+-------++------+-----+--+---+--+----+-----------+----------+---------------------------------+--+--------+--------------+-----+-++------+-----+-------------+---------------------------+-------------++--+-+----+-+----+---+-----------------+--+-------++-------+----+------+-----+-----+++------------------------+---+-+--+-----------+----+---------------------------+-+-+-----+++----+-------------+-------+--+--+-----+------+----+--+--+--+------------------++--------+-----++--+------------------------+-------+------++--++------------+---+----+---+--+-+---------+----+---------+--+-+---+-----++---+----+---------------------------+-----+-------++----------------------+---------+------------------------------+----------++----+---------++--+---------+-----------------+---+--------+---------+-----------+-+-+--------+---+-+--+----+-------++-+----------++-----+---+----------++-------+-++----------++-----+--+---+-----------------------+-----------------+--+------+--+---+-+-----+-++--+-----+--+---+-+----------+----+----+------+-+---+---+---------+---++----------------+-+--------+-+-+----+-+----+----------------------+--------++-+----+-----------+--+-+----------+----+------------+-------------+---+---+-+-+-----+----+----+++---+----+--+--+------++-----+----+---+-----+---------------------------+----------------+---------+---+--------+-+---+-------------+---+--+------+---------------------------+-+-----+-----+-+-+----+---------+------------------------------+-----++----+-------+-----+--+---------+++--+-+--+----+-------++----+-+"

    Returns: 2039

  53. "------+-----------+---+-----+------------+----++--+-----+-------+-------+-------+--+----+-----+---------------+----+--------++-------+--------+--------------+-------+-+----------++-------------+-------------++---+-+----+--------------------+------+--------------+-++--------------+---++---+-----+---------+--+-+-------------+++-+----+------------+-------+--+--+-------------+-+--+--------+--------+-----++-------------+--+--+---+-+----------+---------------------------------------+------+-+--+-+-------+-+---------------+-------+-+------+--+-----++---+---+-+-------+------+------+-----+-+----------+++------++---------------+++---+------------++----+-------+--+--------+--------+-+--+-----+---+--+--------+---+-+-+-----------+++--+--+-------+----+------------+-----------+-+-----+-+-----+--+------+--+-+-+------+----------+--+-----------------+-------------------+-+----+---+--------+-------+--++-------+---------++---+-++-----+---------------------+-----+++-+---+--+++----++-------+---+-++---+-------+---+--+-+-----+------+--+---------+-+--+-----+-+------+--+-++---------"

    Returns: 890

  54. "-----++-+---++------+---+------------++------------+-----+-+-----+--++-------------+++----++--------+----------+-+--++------+------+-------++--------++---+----+++---+--+--++----+------------++++---++-+-----+----------+---++---++++---------++--+-----++-------------------+++---+--+-+----++------------------+++---+---------+---------+----+----+----++-+-----------+-++-+--++---+++--+------+--+----+-++------++--------++---+----+-------+-+--+------+-+--+++---+------+-++------+-+-----++------+----+----++-----------+----+--+-----++--+---+--+---------+--------------++++--++-+--+--------+-+--+----+---+---+---------++----+++-+----+--------+---++++-------++-------------+--+-+-+++-+---------+-+---+------+-----------++-----+---+-+-------+---+-----++----+---+------+++---+-+--+--++-+--------+----+-+--+-+-+-++--------+---+-+---++--+---------++------+------+-+----+-+---------------------+---+---+----+------++---------------+-+--------------+++-++-+----++----+--+-+------+-++++-----+----+--+--+--+------+--+-----------+-----+++-----+----+-+--+------++-+---+---+-------+--+-+-+--+"

    Returns: 815

  55. "++--+++----+++--++---++--+-++++-+-++--++-+-+--+++++-+++-+++--++--+-++-++++++++----+--++---+-+-+++--++++++++------+++++++-++-++------++-+++-++-++-++--+---+++-+---+--+++-+--++-+++-+-++++-+-+-+----+++-++++-+++-+++++++++--++-+-++++-+-++-++-+++-++---++----+-++---+++++--+++++----+--+-++-++-----+-----+--++++++++---+++--++--+-++-+-----+-++++-++---+------+++--+-+++--++-+-+++-++-++---+-++++----+-++-++++-++-+-+++-++-+++---+-+---+++-+-+-++---++-+-++---+-+-++---++-++-+++++-------+-+-++-+-+-++-++---+-+-+++--++-+++-+++--+++++----++--+++++----++--+++--+++++-++---+-+-+-++--+--++++++-+-+--+-+++----++-+-+++-+++--+++-++-++-----++-++++++++-+++---+++--+-----++-+++++----++++-+-+++--++-++-++++++--++--+-+-++--+-+++-+++++++---+-++-+-+--++-++++-+-+++++++-+--++-++--++++++--+++--+++--+--+----+++++-+-++-+++---++---+-++--+++++-++-+-+-++--++++--+++-+++++-++--+-++-++++-+++++--+++++++-+++--+++-+---+-+---++-+++++----+++++++-+-++---++--+-+++-+-+++++-+----+-+++--+-+-+--+-+----+-++---+-+++-++-"

    Returns: 555

  56. "-+--+---++-------+----------+-+-+---++-----+--+++-++---+-------++--+-------+----+---++--+---+---+-+--+-+-----------+-+++---+-+++-++-+--+-------+------+-----+-+---------------+--++---+-----------+-----+-------------+---++-+--------+-+---+-----++---+-+-+--------+---+-+-+--+++--++-+-----+---+--+-+---+------+-+--+----+-+++-+-----+----+------+--++--------+----+---------+-----++-----------------++--------+----+---++--+-------+++---+-+---------++----+-+-----+----+---+-------+-+--++--++----------+-+-+-+----+---++------+--+---+---+--+--+----+-++--+--------++++--------+--++--++------++----+-+--+----+---++--+-----++++---+--+-------------+---++---+--+----------------++------+-------------+---+-----+---++----+------+---+++-----+++--+-++-+-----++---------+-----+-----+--+----++---------+-----+-+-----+-+-++-+-----+-----+----+------+-------++---------------+-++------+-++---+-+---------+--+------+--+++-----++--+------+-+---+-+----------+---+-+----+---+---+-++---+--+---+-----+-+---+-++----+--++--++-------+---+----++-+-+-+---+-------+------+-----+--+-+--+-++-------+------+-------+--+-+++-+-+---++-+-+-------+--+----+-++------+-+-+--+-++---+-+---++----+--++-++---+----+-+---+---+----+-------+--+------+---+-+--++-------------------------+---+---+--+--+-++-++--++--+-+---+-----+----+-+-+----+--+--++--+----------++--+-------+----+++-------+-++--+----++-+-++-++-----++-+--+++-----------++--+-----+------++----+--+-+-+-+-+------+-+----+--+------++------+-+--------+----+---+----+-------+++-+--+----++-+---+--+----+-----+-------+----+---+--+-+-+-------++--++--------------+++----++----+-+-+---+----+-----+--++-------+------+---------+-----+--+------++-+----+---++-+-+----------+-------+--+++-+-------+-------+++---+-----+------++--++----+-+-+-+---+-++---+--+--+-+--+--+------+--+-----+++++------++--+-------++-+-+-----+----------+-++--++-++----++------++----+---+++-----------+-+-+----+----------+---------+++---+--++-+----+-----+-----------+--+-+--++--+-+---+-+--+-----+--+-+--+-+----------+-----+--++-------+---+---+---++---++--+-++-+--+-------++------+-----------+--------+-+----------++-+----+-+-------+-+------+----+--+--++-+-+-----+----------+--+--+-+------+-+----------------+------+----+--+-----+---+----+-+--+-----++-------+-+--------+++-+---+---+------+------++-----++-----+-+-------++---------+------------+-+-++-+-+-----+----+-+--++---+++--+-+++---+------------------+-----+--------+-----+-+--+-+--+----+++--++++----------+--------+-+------++-----+-+----"

    Returns: 1824

  57. "+++---+-----------------------------------------+-----------------+---------------------------------+---+-----------------+----------++-++-+---------------------+--+---+----------------------------------------------------+------------------------+---+-----+--------------------------------------------------+---------+------------------------------+--------+------+----------------+-----------+-+-----------------------+----------------+------------+----+-------------------------+-----------+-----------------------------+-------------++-------------------------+--+-------------------++------------------+--------------+-------+------------+------+---------+----------------++-----------------------------------+---+-----------------------------+------------------+----------+------++-----------+-+----+---+----+--------+---+--------+-------+-++--+------------------+--------------------------+-------+---+-------------+-+----+----------+------------------+------+----+--------------+-------------+-------------+----------+-----+-----------------------------------+-+--------+----+-------------+------------------+----+-------------------------------------+--+-------------+---------++-------+------------------------------------------------+-----++-------------------+-+-----------------+---------------------------------+-----+------++--------+--+-------+----------++--------+----++-+-------+-+------------+---------------+-+-------+--+-----+--------------------------------------------+-+--++-------------+-----------+------+---------+---------+---------------------------+--------------+-----------+----------+---------+-----------+-----------------------------+-----+--+---------------------------------------+----+----------------+-----------------+-----------+-----------------+-------+-----+-+-----+-------------+--------+----+-+-------------------------------+-----------------------------+---------------+-----------------+----------------+-------+---------------------------------+-+--+-----------+---+--------+-------------+-------+---------+----------------+----------------------------+---+--+-----------+---------------------------------+-+-----+-------------+-------------+--------+-----------------------------------+---------------+----------+-------+------+-+----+--+----------------+---+-+------------------------+------------+--------------------------------------------------------------+-+"

    Returns: 2216

  58. "-+-+-+-+-+---+---++-----+--+-++-----+---+--++--+--+--+++---++--+++--+-+-+--+----+-+------+-----+----------------+-----+++-------+-------++-+-----+---+++-------+--+---+-+-----+-++------+-+-+-+--------++--++---+-+--------------++-+++--+-++-+----+-----+--+-+----+-----+-+--++-+--+++-+--++-+-+-++-+----++-------+------+--+---+-----+--+--+--+-+---++-++-+---+++-++-++++-+---+-+------++----+-+---+------+-+------+--+---++---+++-++--+++-+-++--+-+-----+----++---+----+-+---++-------+-++++++++---++--+-----+-+-+-+++-------+-------+-+--+++--+---+-++----+++----+-+--+--+--+++-+-+-+++--------------+----+---+-+--+--+----+----+-+---+--+-------+-+----+-----+--+--+-+-+--------++-++---+-++--+--+---+---+-------+--++-+---+--+----+---+----++--+--++---+---+---+-+-----+-+-+--------+----+----+-++-+--++-++---++-++---+--+-+----+-+-+---++---+-----++-+----------+-++--++---+---++--+-++-++++--+-+-+---+-+---+--+-++----+-----+-----+--+---+-+----+---+-----------+---+----+--+++-+---+-+--+++++-----++----+------++-++-+--+--+-+-++++--+-++-++-+++---++-----+--++++--+-----+-----------+--+---+-+-+-+--+--------------++----+-++-+---+--++-+-+-----++-+++++++-+-+---+---++--+--++-+----++---++-++--------+------+---+---+--+-+-+--+-++-++--++----++++----++--+--+++-+-+---+++++----+--+-+++-+-+-+-+-----+--+----+-+--++--++------+--++++--+--+-+----+-+--++-+--+++--+-+----+-+-+----++--++-+---+-+--+---++-----+--++++++----+-+---++----+-----+----------+--++--+++---+--++-++------+-+-+++++-+------+----+-+-+---+--+---------++++--++-------+++--++-----++---++-----++----+--++-+----+--+--++---+----+-----+-------+-------+-+-+-----+---+----+----------++-+-+---+++-+---------+---+-------+--+-+----+---+-+-++-++--+----------+--+------++----+----------------+-----+-+-+---+-----+--+-+-++--+++-----+-++-+-------+-+----+++-+--+-----+++-+--+-----+-+----+------++-+------------+-+-+-+--+++---------+-+++++---+-----++-+----+---------+-++-+---------+-+-+-------+--+----+---++---+------++--++---+----+++---++-++-+--+--+------++--+---+--++-+--+-++-----+-++---+-+-+----------++--+--+-+-+++---++--+-+-----++--+----+-----+--+--+---+---+-------+-++----+--++--+--------+-+---------++----+-+-----+------+++-+---------++-------+"

    Returns: 1452

  59. "----------------+------+-----------++------------+------------------------------+----------------------------+-----+------------------+--+-----+--+----+---+-+-+-------++-+------------------++--+-------------+-------------------+-----+----------+-----+------+------------+++---+------------+--+++----+-----------+----------+------+--+-------------+-+----+-------------------+-----+-+-+--+---------+-------------+----+---+---------+-+----------------------++---------+---+--------+---+-----+++-++-------++----------+-----------+----++---------+-+----+-------------+-----------------+-------+--++-----------------+----+-+--+----+-------+-------------+---+----+---------+--------------------+---+-----------+--+--+-----------+-------+-----+----+----+-+----+---+-------------+--------------------------+-----------+-----------+-----+-+-----------------+---+----------++---+----+----------+--------------+----------------++------+---------------++--+--------------+----------+-----+--------+---+----------++-----+-----+--+------------++--++---+-+---+-----+-+----------+-------------------+---++----------+-+------+---------+--+-+-------------+-------+-----+-----------------+--+--+----+---+---------------------+-------------+-+-+-----------+------++-----------------+-+----------+------------+----------++------+-------+-------------+------+-----+---+--+------+---------+------------+---+---+-------+---+-+--------+----+-------+-----------------------+--+---+-------------------+++-----+---+-------+---------------------------+-+-+++----+--++------+-----+----------------+-++-------+---------+-----+-+--+-------+---++------------------+-----------------+--++-----+--+-+-----+--------+-+-+-------------+-------------------------+------------------+++++--+--------------+--+-+--++--------------+-++-+-----++++-----------+------+----------------+----+-+--------++--+----------+------+--+------------------------+-++++-----------+---+-+----++----+----------------------+-------------+------------+------------+---------+-----+--+-+------++------+-----++---------+--------++--+-----+-+------+-----------++---+-----+-+-------------++---+--+------+---------+---+---+-----------+------+--+---+-------------++--+--+------+---------+---------------++-------+----+-----+--+---------+------++---+--------------+-----------+++----------------+----++----+---+-+-+-------+--------------------------+--+----------++---+--------------+-+---------+---+----+---++---+--+--------+--+-----------------"

    Returns: 2119

  60. "----++--+-+-------+-----+---+-+---++++++---+-+-+-----+++------+++--++--+----+-+---+-+--++--+-+-++---+++--+-++-+---+++-+--+----------+--++-+--+-++----++------+--------+----+-++--+--+++-+++--+-+-+------+--+-+-----+-+--++-+--+--+----++----++---+-+++--+--+--+-----++---++-+-------+--+-------------+-------++---+-----+--------+--+----+----+--+-+--++++++---+--+----++------+-----+++------+-+-+--+---++------++-+-----+---+++---++++-+++--++--++------+-+-------------+-+-----++---++------+-----+++---+--+--+-+-+--++--++-++--------+-+-+-++-+--+-------+------+-++--+-+---+--++-++-+-----+-+-+----++-+-+++---+-------+----+-+-+-----+---++---++++--+------+---+-+-+-+-+----++-+---+--+++----+----++-++--+------++-+----+---++-----+-++++-----++-++-------+-+----+-+++++---+---+--+--------+---+-----++----+-+++--+---+----+-++++-+++-++++-++-+--+---+---+-++---+----+---++---+---++--+--+---++-+------++++-+------+---------++-----++---+-++-+---++------+-----++--+----+++-++-----+----+++--+--++----++---++-+-----++-++-------+-+-+--+-----+++-+----------++--++++--+-----++++-+++-++--+--+----+-+----++++-+-------+---+----++-+--+---+--++++---++----++---+++---+++-+------+-----+------+-++--++--+-++++-+------+-+--+----+--+++----+-++-+-+-----+-----+-----++---+--+---++----+-+-+---++--+----+-+----++---++-+--------+-+--------+--++---------++-+++++---++------+-+----+--------+------++--+-+--++--++-+++-++-+--+++-+-----+---+-------+-+-+----+------+-+++-----+--+----++---++-+-++-++--------++-+---+-----++---+----+-------+--+-++--+---+---+++----+---+++--+-+--+-----++-++---+++------+---+-----------+------+--+++--+-+-------++-----+++-----+-----------------+--+-+------------++--+------+++--+---++-----------+-++--+-+-+--++---+++------+-----++--+-----+-+--------+-----+++---+-+--+-+----------+-+--------------+---+---+++--+----+-++-+++---+-+----+---+--+-----++++----------------+++--+---+++------+--++++-+++-----+-+++---+-+-++-+++-+---+++-------++-----+----+---+---++----+------+-+++--++--------++-+--++++-+---+-++-++-------++-+------+-+-----+-+----+----+----++---+-----++-+---------+-----+++--++-+----++-++-----+---++-----+--+--"

    Returns: 1398

  61. "++++++++++-++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++-++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++-+++++++++++++++++++++++++++++++-+-+++++-++++-+++++++++++++++-++++++-+++++++++++++++++++++++++++++++++++-++++++++++++++-++++-++++++++++++--++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++-++++-+++-+++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++-++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++-++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++-++++++++++++++++++++++++++++++-+++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++-+-++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++-++++++++-+++++++++++++++++++++++++++++++++-++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++-++++++++++++++++++++++++++++++++++-+++++++++++++++++--++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++-++++++++++++++++++++++++-++++++-+++++++++++++++++++++++++-++++++++-+++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++-+++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++"

    Returns: 2348

  62. "+++++++++++-++++++++++++++++++++++++-+-+++-+++++++++++-++-++++++-+++++++-+++++++++++++++++++++++++++++++++++++++++-+++-+++++++++++-++++++++++-+++++++++++++++++++++++++++-++++++++++++-+-+++++++++++++-+++++++++-+++-++++++++++++++++++++-++++++++++++++--+-++++-++-++++++++++++++-++++++++++-+++++++++-+++-+++++++++++++++++++++++++++++++++++++++++++-++++-++++++++++++++++++++-+++++-+++-+-+++++++++++++-++++++--+++++-+++++++++++++++-+++-+++-++++++++++++++++++++++-++-++-++++++++++++++++-+-++++++++++-+++++++++++++++++-+++-++++-++++++++-+++++++++++-++++-+++-++++++++++++++++-+-+++++++++++-+-++-+-++++++++++-++++++-++-+-++++++++++++++++-++--++++++++++++++-++++++-++++++++++-+++-++++++++++++++-++++++++++++-++++++++++++++-+++++++++++-++++++-++-++++++++-+++++++++++++++++-++++++++++++++++++++-++-++++++++++++++++++++++++++++++++-+++++-++-++++++++++++++++++++-++++++++-+++++++++++++++-+++++++++++++++++++++++++++-+++-++++++-++++++++++++++++-++++++++++++++++++++++++++++++++++--+++++++++++++++++++++++++++++++++++++++++++++++++++++--+++++-+++++++-++++++-++++-++-++++++++++-++-++++++++-++-++-++++++++++++-++++++-++++++++++--++++-++-+++++-+++++++++++-+++++++++++++++-++++++-+++++++-+++++++++++++++-+++++++++++-+-+++++++++++++++-++-++++++++-+-++++-++-++++++++-+-+++++++-++++++++++++++++++++++++++++++++++++++++++++++-+++++++-++++++-++++-+++++++-++-++++++++++++++++++++++++++++++++++++++++-++++++++++-++++++++++++++++++-++++++++++++++++++-+++-+++++++-+++-++++++++++++++++++++-++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+-++++-+++++++++++++++++++++++++++++++-+++++++--++++-+++++++++-+++++++-+++++-+++++++++++++++++++-+++++++++++++++++++++-++++++---+++++++++++++++++++++++++++++++++++++++++++-+-++-+++++-++++++++++++++++++++++++++-++++++++++++++-+-++-+++-++++++++--+++++++-++++++++++++-+-+++-+++++-++++++++++++-+++-++++++++++--+++++++++++++++-+++++++++++++++++++++-++-++++++++++++-++++++++++++++-+++++++++++-+++++++++++++++++-+++-++++++++++++++++++++++++++-++++++++-+++++++--++++-+++++++-+++++++++++++-++++++++++++++++++++++++++++++++++++++-++++++++-+++++++++-++++++++++++++++++-+-++-++++++++++++-+++++++++-++-++++++++++++-++++++++-++++++++++++-++--+++++++--++-++++++++++++++++-+++++++++++++-+++++++++++++++++++++++++++++++++++++++++-++-+++++++++++++++++++++++++++++-+++++++++-++++++-++++++++++++++++++++++++++++++++++--+++++++++++++++++++++++++-++++-+-+--++++++++-++++++++++++++++++-+++-+++++++++-++-+++++++++-+-+++-+++++++-+++++++++"

    Returns: 2205

  63. "-+++-+++++++++-+-++++++++++-+++-++-+++--+++-+++++++++++-+++++++++++-++++-++-+++++++++++-+++++++---+-+++++-+--++++++-++-+++-++++-+++++++-+-+++++++++++++-++-+++-++++++++++-+++++++-+++++++++++++++-+++++++++++++++++++--+--++++++++++-++++++++++-+++-++++-++++++++++++--++++-++-+++---+++++++++-+++++++++-++++++++++++++++++++++++++++-++-+-+++++-+++++++++--+++++++++++++++++--++-++++++++-++++++-+++++++++++-+++++++++++-++++++-++-+++++++-++++++++-++++++++++-++++-+++++++-++-+++++-++++--+++++---+++++-++-++++++--+++-+++++-++++-+++++-++++++++++---+++++++++-++++-++-+++++++++++++--+++++++++-+++++++++-++++++++++++++++++++-++-+-+-++++++++++-+++-++-+-++++++++++-++++++-++++++++++++++++++++++-+++++++-++++++--++-++++++-++++++++++++--+++++-++++-+++++++++++++++++-+++--+++-++++++++++++++++-++-++++++++++++-+++++++++-+++++++--++-+++++++++++++++++++++-++++++++++++-++-+++-+++++++++++++-++++++-+-+++++++++++++++++++-++-++-++-+++++++++++++-++++++++-++-+++++++++++-++-+++++++++++++++++-+++-++++++++++-+++-++++++-+++++++++++++-+--+++++++++++++++++++++-+-++--+++++-++++++++++++++++-++-+--+++++++++++-++++++-+--++++-++++++++++++++++++--++++++-+++++++++++-++-+-+++++++++++++++++-++++++++++++++++++++-+++++-+++++++++++-++++++++-+++-+++++-+++++++++++++++++-+++++++++++-++++++++++++++++++++++-+++-+++-+++++++++++-+-++++++++++++-++++++-++++++++++-+-+++-++++++-+++++++++++++++++++++++-+++-+++++++++++--+-++++++++++++++++++-+-+++-+++++++-++++-++++++++-+++++++-++++++++++++++-+++++++++++++++-+++++-+++++++++++-+++++-+++-+++++--+--+-++++++-+--+++++-++++++++++-++--+-+++++++-++++-+++++++++++++++++--++-++++++--+++++++-++++++++++++-+++++++++-++++++++++--+++++++++++-++++-++++++++++++++++++++-+-++--++++-+++-+-++++++++++++++++++-++-+++-++-+++++++++++++++-++-+++++++--++++++++-++-+++++++-++++-+++++++++++++-+++++++++++-++++++++-+++++++-+++++++-+-+-++++++++++-+-++++++-++-++++++-+++-+++++++++++++++++++-+-++-+++-+-+++++++++++++++++++++++++++--+-++++++++++++++-++-+++++++++++++++++++++++++++++++-+-++++++-++-+-+++-++-+-+++-+-++++++++++-+++-++++++++++++-++++++++++-+++++++++++-+-++++++++++++++++++++++-+++++++-++++-++++++++++++++++++-++++++++++--+++-++-+++++++++++++--++++++++++++-+-+++++--++++++++++-++++++++++++++++++++++++-++++++-++++++++++++++-++-+++++++-++++++++++++-++++-++++++++++++++--+++++++++++++++++-++++++++-+++++++-++++++++++++++++++++++-++++++++-+++--++++-+++++++++-+++-++++++-++++-++++++++++++++++++++++++-++-++++++-++-++++++++++-+++++++++++++++++++++++++++++-+-+++++++++++++-+++++++++++++++++-++++"

    Returns: 2132

  64. "---+--+--+---------------+---------------------------++----+----+--------+-+-------+-----+----------------------------------------------+-------------+----------+--------------------------------------------------------------------------------------------+---------------------------------------+-----+---------+-------------------------------------+----+-----+---+-----++--------------+----+--------------------------+-----+-+-------------------+---------------------------------+-------------------------+-----------------------+----+--+---------------------------------------------------+------------------------------+----+------------------------------+----------------------+----------------------------------------------+-------+--+--------------+------++-----++-----+--------------------------------------------------+------------------+++------+--------------+--------+-----------------------------------------------------------------+---+-----+--------+----------+--------------------------------+------------------------------------------+------------------------+----+------------------------------------------------------+------+---------+---------+--------+-----------------+------+----+-----------------+-------------+--------------+-----++--+----------+------+----------+----------------+------------------------+------------------------------+--------------+-----------------+--+----------------+---+----------------+-----+++---------------+------------------+-----------------+---------------+-------------------------------------------+-------------+------+-------------------------------------+----+----------------+------------+-------------------------------+-----------------------+---------------+----+---------------------------------------------+------------------------------------+-----------+------------------+-----------------+---------+------------------+-----------------------------------+----------------------------------+----------------------------+--------------+-------------------------+------------------------+-----------------------------------------+-----+-+------------+-------+----------------------------------------++----------------------------------------------------------------+----------+-----------+---------------+----------------------+---+-+----------------------------------------------+----------+-+------------------+---------+----------+--------------------------+---------------+--------+---------------------------+---+------+-------"

    Returns: 2347

  65. "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++-++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++-++++++-+++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++-+++++++++-++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++-++++++++++++++++++++++++-+++++++++++++++++++--+++++++++++++++++++++++++++++++++-++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++-+++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++-+-++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++-+-++++++++++++++++++++++++++++++++++++++++++++++++-+++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++-+++++++++++++++++++++++++++++++++++++++++++++-+-++++++++++++++++++++++++++++++++++++++-+++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++-++++++++++++++++-+++++++-++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--+++++++++++++++++--++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++-+-++++++++++++++++++-+++++++++++++++++++-+++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++-++++++++-+++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++-++++++-+++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++--++++++++++++-+++++++++++++++++++++++-+++-+++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"

    Returns: 2395

  66. "---------------------------------------+---------+-----------------------------------+--------------+-------------------------------------------------+------+----------------------++---------------------------------+--------------------+-----------+-----------------+-----------+-----------+----------+------------+----------------------+-------------+-----------------------------------------++--++--------------+------------+-----------------------+-----------+-----+----------+---------------+--------------+-----------------------------------------+--+----+--------+----------+------------------+------------------------------------------+------------+----------------------------------+-----------------+---------++------------------------+------------------------+----------+----------------------------+--+---------------------+-------------+-------------+--+----------+---+-------------------------------------------------------------++---------------------------------+---------------+---+--------+----------+-+---------+---------------------------+---------+---------------------------------------------------------------------------------+--------+---------------------------+-----+-------------+--------+------++------------------------------++---+--------------------------------------------+--------+--------+--------------------+---+---------------+---+-------------+------+------------+---------------------+----+---+---------------------+--------------------------------------------------------------------------------------------------------------------+----------+----------------------------------+-------------------------------------------------+------+--+-+------+---------------------------------------------------------------------------------------------------------------------+----+-----------------------+-------+-----------------------------------------------+------------------------+-----------------------------------------------+--------------------------------------------------------------+-------+----------------+--------------------------+-----------------------------------------+-------------++---------------------------+---------------+-------+-----------------------------------------------------++-------+------+-------------+------------------------------++-----------------------+------------"

    Returns: 2217

  67. "-----+-------+-----------++--+--+--++-----+-++--+++------+-------+--+-+----++----++--+----+------------++------+--+-+-++-++----+----++--+-+-------+-+------+----+-+------------+-----++---+------+-----+------------------+--+---------+------------+--------+-+----------+--+-+--++-+--++---+--++------+----+-------+---++----+--+---++----------+-+-+-----+--+-------+-------+-----+--+-+------+----+-------+---++----++++-+---+------+--++--+-+----++-+----+-+-++---+---++-+---+---+-+-----------+-+---+----+-+---++-----------------+++-+-+-+-+----------++---+--+-----+---+---------+--------++---+---+-----++-+---++--+--------+---+-+--+--------+-+------+---+--+----+++----------+---------++-+--+-+--+--+------+-----+---+----+---+---------+-+++--------+-+---+--++-+---------++-+------+--+-+--+-+----------+-------+--+---+++-+----++---+-------+----++--+---+-+-----++-++--+-+-------------------++-----+-----+----+--+-+----+-----+---+-+---+-++---+--+----+--+-+-----++-+-+----+------++-+-+-----+---+-+-----------+-+------+------------+--++----+------------+--+-----+-------------+--+-++-----++-------++---+---+-++-+-------------+-+-----+---+-------------+---+-------+----++---+-+---+-+-+--+-+--------++-+-----------++--+---+--+----++-------+---++----------+----+---+------+----------------+---+---------------+----+--------------+------++------+--------+--+---------------+-----+------+-+----------------+---+-------+----------+--++----+----+------------++-+--+-----+---+------------+------------+++--+--+-----------++---+-+--+---+-------+---------++-+---++-----+++-----+--+++------+-+--+----+-+------++--+--------------------+---+-++----+----------+-----+------+-++----------+++---------+-+------+----+---+-----------+-++------++-------+----+---+--------+----++---------++--------++----++---+--+--+----++----+--------+-++--+----+-------------+-+-+--+------++--+-----+--+-+-----+++----+--+--++---------+-----+-+------++-------++-+++---+-------------+-----+-------++----+-+-------------+---------+------------+-+---+------------++---------+---+++--+-+++--+--+---------------+-+-----------------------+----+--++----+-------+-+--------+--+----++----+++++-+--+---------+---+------+---+-+--+--+-------+------++-------++--+-+-------------+--+---+--------+----+-+-----++-----+------+-+--------------+-------+-------------+-+------+--+-+-+---+-------+---------+--+--------+----++---+++-------+---++-+---------------+-+-------+------+--+------+------+--------------+++---+-----------+-+-+---+----------++----++----+-"

    Returns: 1946

  68. "++++-++++++--+++++++++++++++-+++++++++++++++++++++++--+--++++++++-++++--++++++++-+++++-+++-+-+++-+-+-+++----++++++++-++++-++++++-+++++++-+-++++-++++++++++++++++-+-+++++--+-+-+++++-+++++-++--++-+++++---+++-++-+-++++++++++-+-+-++++++++++++++++++++++++-++-+-++-+++++++-+++++++++++-+-++++--+-++++-+++-++++-++++-++-+++++-+-+++++-+-+++++-+++++-+-+++++++++-+-+-++-++--+++++++-++++--++++++--+++++++-++++-++-+++++++++-++++++++-++-+-++++++++-+-+---+-+-++++++-+++-+++-+++-++++-++--+++++-+++++++-+--++++++++-++++++++++++++-+++++--++++-++++++---+-+++++---+--++-+-++++++++-++--+++++++++++++++-+--+++-+++++-++-+-+++-+++++++-+++++++++-++++++++++++++++---++++++-+++-+++-++-++++++++-++---++++++++-+--+++++++++++++++--+++++++++++++++++++++++++++++++-+++-+++++-+-++++++++++++++--+++++++-+-+++---+-++++--++++++++-+++++-++++++++++++-++++-+++++++++--+-++++-++++++++++-++++++-+-++++++++++++++-++++-+++++-+-++++-+-+++-++--++++++-++++-++-++++++++++++++++-++++-+-++-++--++-++-++++-+++++++-++-+++++--+++-++++++++++-+++-+-+-++++++++++--+++++++++++-++-+++++++++++++-+++-+++-+++++-+++++++-+++++++-+++++-+++-+++-++++++++++++++--++-+++++++-+++++++++++++-++++++++-++--+++++-+++++++-++-+++++++++-+-+-++++--+++++++++++-+-+-+--+--+-+++++-+-+++++++++-+++++++-+-++++++++++-++-+++++-+--+-+--+++-+-++++++++--++++++++++--++++-+++++++-+++++++++-++-+++++--+++++-++++++-++++-+++++++++-++++++++++-+--++-++++++++-++--++++++-+--++++++-+++++++++-++++++++++++++++++++-+++-++-++-+++++++-+++++++-+++-++++++-++--+++-++--++++++++++-++++++++++++++++-+++++++-++++-+-++++-+-+-++++++++++-+++++-+++++-++++++++++--++++++--+--+-+++-+-++++++++++++--+++++-+-+++-++++++-++++--+++++++--+++++++-+++++++++-+++-+-+-+++++-++++++++-+++++-+++++++++-+++++++++-+++++++++++++-+++++++--++--++--+-+++++++-++++++++-+++-+++---+-++-++-+++--+----+++++++++++---+++++++++++---++-+-++++++++++++++++-++++-+++++-+++-+++-++++++++++-++++++++++++++++-+++++-+++++---+++++-+++++++++++++++++-++-+-+++-+++++++++---++-++++-+-++++-++-+++++-++++++--+++++++++++-++-+++++-+++++-+-+++++++++++-+-++-++++++++-++++++-++++++-++++++--++-+++++++++++++-++-+++++-+++++-+-+++---++++++-+-+++++++--+-++-+--+++-++++++++++++--+++-+-+++++++++++++++++++++++-++++++++++-+++--++--+++-++-++++++++++++++++++++++++++"

    Returns: 1760

  69. "+-++---+++++++-+++++++-++++-+++++++++-++++++++-++-++++++-+-+++-+++++++++-++-+-++--++++---++++++++--+-++++++++++++-++++--+++++++++++++++++-+++++++-+++-++-++++++-+++++++++++++++++-++++++++-+++++++---+++++++++-++++++++++-+++-+++-++-+-++++++-+++++++++++++---+++++-++-++++--++++++--+-++++++-+++++++++++-+++++++-++++++++++-++++++-++++-++--++--++++-++++++-++-+++++++++++++++++---+++++-++++++-++++++++++-++++-+++++++++++++-+++++-++-+++++++++++++++++-+++++++--++-+-++++++++++-+++++++++++-++++++++++-++----+++++++-++--+++++--++-+-+-+++-+++++-++-+++++-++++++++++++++++++-+++++++-+++++-+++++++-+++++++++++++-+++++-++--++-+++-+++++++++-++-+--+++++++-++++++++-++++-+++++-+++++-++++++-+++++-+-+++-++++-++++++++++-+-+++--++++--+++++++---+++++-++++++++++++++++-++++-+++++++++--++++-++++-+++++++++++++++++--++-++++-++++++-+++++++++++++++++++++--+-++++-++++++++++-+-+++-++++-+++-+--+-++++-+++-++++++---+++++++++-++++++++++---++++++++++++++-+-+-++-+++-+++-++++--++++++-++--+++++++++++++++++++++++++++++++--+++++++++++++++-++++++++++-++-++++++++++++++++-+--++--+-+++++++++--++++-++++--+++++-++++-+-++++++-++-+-++++++++++++++++-+-+++++-+++++-+++++++-+++++++++++-+++-+++++++++++++++-++++-+++++++--+++++++---++--+++++--+++++++--++++-+++++++++++-+++++++-+++++++++-+++++--++++++++--+++++++++-+-+-++-++++++++--+-++-+++++++++++++--+-++++++++++++-++++-++++++++-++++++++-++++++++++-++++++++++++++-++++-+-+--+++++++-++++++-+++++++++---+--++-+++++++-+++++++-++++++++-++++++-++-+++-++++++-++++++++-+-+--++++-++-++++++-+++++++++++++-+++-++-++++-+--++-+++++--++++++++-++++-++++-+++++-++++++++-++++++++-+++-+++-++++-++-++-+++++-+-++++++-++-++++++++++++++++++-+++++++++++++-+-++++++++--++-+--++++++++-++++++++++-++-+++++++++++++-+++++++++-++++++++++-++-++++++------++--++-+-++++++++++-++-++-+---+++++++-++++-++++++++-++++++++-++++++-++++-+++-+++++++-+++++--++++++++++++-++++++-++++-+-++++++--+++-++++++++-+++-+-++++++++-++-+--+--+++--+++++++++-+++++-++++-++++-+++++++--+++++++++++-+++-++++++-+++-+++++++-++--+++-+++++-+++-+++++++++++++++++++++++++++++++++++-+++++-++++-+++++--+++++++++-++-++--++++-++-++++++++++-+++++++-++++++-+++++++++-+++-++++-+++++--+++-+++++-+++-+--+-+++-++++--+-+--+-++-+++++-++++++-++++++-+++++--+-++-+-+++--+-+++"

    Returns: 1785

  70. "++-+-++--+++++-+++++--+++++++++++++++++++++--++-+-+++++++++++----++-+++++---+-+++++++++++++++++++++++-+++++++---++++--++++-+-++++-++++-+++-++-++-++--+-+++-+-+++-+++-++++++++-+-++++-+-++-++++-++++++-++-+-+++---+++++++-++++++++--+++--++++++--++++++++++++++++++-++-++++++-++-+-+++++++++++++++-+++-++++++++-++-++++-+-++++++++++++++-+-++++++++++++++++-+++---+-++-++++++++++++++-++++++-+--+++-++++-++++-++-++-++-+++++-++++--+-++-+-++-++++-+++++-++++-+++-++++-+-+++---++-++++--++-+++++++-+++++-++++-+-+++-++++--+++-+++++++++++++-++-+++++--++++++++++++++--++-++++++++-+++-++++-++++-++-++-++++-+-++++++++-++++++++-++++++++++++++++++++-++--++-++++-+-++--+++-++++++++++-+-++-++--++++-++++-++++--++++++-++++---++++-+++++++-++-+--+-+-+++++-++--+++--++++++-+-+++-+-++---++-++++++++--++++++++++++++-+++++++-++-++++-+--++++++++-++++++-+-+++++--++++--+++++-+++++++++-++-+++++-++++-+-++++++-+-++++---+-++++-+-++-+++++++++-+++++-++-+-+++++++-++++++++++--+++++++-++++-+--+++++-++-++--++-++-+-+++++++-++++-+++-+++++++-++++++++-+-+-++++++++-++++++++-+-+-+-++++--++++++--++++++-++++++--+++--++++--+++-++--++++-+++++++++-++-+-+++++++-++++-++++-+-+++++++++++--++++++++-++++++--++++++-+-+++-++-++++++++-+++++++++++++++--++-++--++++++++--+++++--+-+++++-++--++++++++--+++++++-+-++++-+++++++++++-++-+++++++++++++-+++-+++-++++++-++++--++---++-+++--+++++++++++-++-+-++++-+++++-++-+-+-+-+++++++-++++++++++++++++++++---++++-+++++++++-++++++++++-++++++-+-+++--++++-++++-++++++++++++++----++--+++++++++++++-+-++-+---++--++++++-++-++---+++-++++-+++-+++++++--+++-++++++++++++++-+++-++-+--++--++-+++++-++++-++++++++-+++++-+++-+-+-++++-+++-++++-+-++++-+++++++-+++++-+-++++-++-++-++++-+-+++++-+--+-+++++++-++++++-+-+-+++-++++++++-+-+++-++-++++-+-++-+-++++++-++++++++-++++-+++++++++++++---+++--+++++++-+++--+-++++++++++++++++----++++--++++++++++++++--++++++++++--++++++++-++++++++-+-++--+--++++-++-+++++-++++++++++++++++--+++++-++++++++++++-++++-++++++++-++-++-++++++++-+++++++++--++++-+++---++++++-++++++++-+++-+++-+++++++++-+++++++-+++++--+++-+-++--++++-+-++-+-+++-+++++--++++++++-++++++++++++++++-+-++++-+++----++-++++++-+++++-+++++++-++++++-+++++-+-+-++++++++++++++++-++-+-++++++++++++++-++++++--+++++----+++--+-++++++++++-+++-++-++-++-+-+++-+--+++-++++-++++++++-+-+-++++++-++++--+-++-++++++-+++--+---++++++-++--++++-+-++++---+-++++++++-++-++++-+++++++-++-+++-+-+-++++++++-+++++++--+---+++++-----+--++++++++-+++++-+"

    Returns: 1835

  71. "+---+-+-++---+-+--++----++-----+------++++-++-++--+++-+-+++-+-+++-++++-+-+--++---+++++-+++--++++--+----+---+++-++---++++++-+++--+++-+-+-+-++-+++-+++--+---++--++++++----+--+--++--++++-----+++-++-+++++-+-+--++++---+----++++++++-++-++++-+--++---++--+-++-++----+---+++++-+-++--+----+---++-+-++++---+----+-++--+++++---+-+----+-+-+--+++--+-+--++--++---++-+-+--+-++-+-+-++-+--+-+++++---+-+-++--+++---++-++---+-+++--+++++-++++-++++--+--++-+-++++----++++--+-++-+----++-+++--+--+----++--+++-++++--+--+--+--++-++-+-+---+++-+--+-++-++++--+++--+-++++++-----++++-+-+++-++-+-++--++-++-+-+++++++-+--+----++++-+++---++++++-+-+-++-+-+-+-+----+--+-+++++---+++++---+-++--++----+-++----+++--++-+++--+++-+---+---++-+-+-+-+----+-++-+-+-+-++--+----+-++-+-+++-++--++----+-+++-++--+-+---++++++--+--+--++-+-+++------++--++---+++++---++-+--+---+-+-+---+-+++--+-+-------+-+-----++-+-++-+-++-++-----+-++-+++++++-+--++--+---+-++--++--+++-+--++-+--+--++----++++--++-+-----++--++--+-++++-----+---++++++---+-++++-+-+-+--+---++--+--++--++-----+-++++-+--+-++--++++-+---++++-+---+--+-+-+------++--+++++----++-++++----+-+-+---++----+--+----++--++---+-+----+--+++--++-+++++++++-+-++-++-+++-+----+-+-++--+-+-++++++-++-+-++-+++-+-----++-----+-------++++-+--+++---+--++++---++---++++++--++++++-+-++++-+-+-++---+++-----+-----++----+-+-+--++--+++-+-+-++++--++--+-+-+++-+-+-----+--+-++--+-++++++-++-+++--+-----+-+-+-+++--+-++---+--++--+++---+-+--+++--+-+-+--+-++++-+--+-++-+--+++-++++--+++-+-++-+-+-+-++--+++-+--+--+++-+--+------+--+-++-++----+++-++-+++++--+---+++-+-+++-+--+-+--++--+++++-+-+-+++++-+++--+-+-+++----++--+--++--++------+-++-++++-+-++-+++++++-++++-+-+---++-++----++---+--+-+-+++-+-+-++++++-+---+++-++-+--+++-++--+-----++++----+-+++++---+-++-----+-+--+++-++++++----++++++---++++---++-+-+-++---++--+++---+++-+-++--+-+----+++++-++--++--+-----+-++-+---+--+-+-+++--+-++++++---+-++-----+-+++--+--+++-+++++-+-++--+-+-+----+-+++--++++-++-+-+---+++-+++++++-++++--++--++++---++-++-++---++-++-+++-+-++++++----+-++--++++-++----+++--+++-+---+++++--+++-+-+++--+---+---+--++++-+---+-+++--+--+-++--++---++++--+---++++--++-+-++-+--+-+++--+++++--++-+--+++---++-++---++-+-++++++-++---+++-+-++-+--++-+"

    Returns: 1126

  72. "+--+++--+++++++-+++++++++++++++++++++++++++++++++++++++++++-+++-+++---++++++++-++++++++++-++++++++++++++++-++++-+++++++++-+++++--+++++++++++++++++++-++++++++++-+++++++++++-++++-+++++++++-++++++++++++++-++-++-++++++-+++++++-+++--+++++--+++++++++++++++++++++-++++-++-+--+++++-++++-++-+++++++++++++--++++++++++++++++++---+++-+++-+++++++++++-+++++++-++-+++++++++++-++++++-++-++++++-+++++++++-++++++++++-+++++++++-++++++++++++++++-++++-++++++++-++-+++--+++-++++++++++++++++-+-++++++++-++-+-+-++++-++++++-+++++-+---++++++++++-+-+-+-+--+++++++-+++++-++++++++-++++++-+++++++++++-++++-++++++++++-+-++-++++++++++++++-+++++++--++++++++++++++++++-+-++++++++++++++++-++++++++++++++-+++++-++++++++++-+++++-+++++++-+-++++++++--+++++++++++-++-++++-++++++++--++++++++++++++++++++++++++++++++++-++--++++-+-++++++-++-+-+++++++-++++-+++--+-++++++++++++-++++++-+++++-++++-+++-++-++++++---+++++++-++++-+++-++-++-+++++++++++++++++++++++++++++-++-++++++++++++++-++++++++-++--+++++-++--++++++++++++-+-++++++++++++++++++-+++++-++-+++++++--+++++++++++++-+-+-++++++++++++-++++++++++++++++-++++++++++++++-+++++++-+++++++++++++-+++++++++++++++-++++++++-++++++-++++++-++++-+++++-++-++++++++++++++++-++--+++++-+-+++-+++-+++++++-++++-++++++++++++++++++++++++++-++++++++-+++-+-+++++++++++++-+-++++++-+----++-++++++++-++++++++-++++++-+++++++++++-++++++++++++++++-++++-++++-+++++-+++++++++++++++-+--++++++++-++-++++-+++++-++++++++++++++--++++-+++++-++++++++++++++++++++++++++-++++++++-++++++++++++++-++-+-++-+++++-++++++++++++++++++++++++++++++-+-++--+++++++++++++++++++++++++++-+-+++--+++++++++++++++++++++-+++++---++-+-+-++++++++++++++++-++++++-+++-+++++++++++++-+++++++++++-+-+++++++++++++++++---+-+-++++-+++++++++++++++-+-++++++++++++++-+++++++++++++-+-+--++++++++++++++++-+-+++-++++-+++--++-++++-++++++-++++-+++++++++++++--++-++++-++-+++-++++++++++-++++++++-+-+++++-++++-++++---+++++++++++++++++++++-++-++-+++-+++++-+++++-+++-+++-++++-+--++++++++++++++-+++++++++-++++--+++++++-+++-++"

    Returns: 1663

  73. "+---+++-+-----------+++++++++--++-++--+-+--+-----+---+-+---+--+--+-----++-+--+-++----++-++-------------++---++-+-+---+----+++-------+++-+-+--++-+-++++--+-+--+---++--++---+-+----+++--+-+---++---+++-+---------+---++-+---+-----------+---+-+++-+--+--+--+-++----+++---+-----+-+----+-++++-+-----++------+------+++--++--+++++--+-+-----------++-----+--+++-+++++-+++----+--------++---+----+-++--+--+++-+-+-++--++---+++++++---+-+-+--+-++-++---+-+--+-+------++----++-++--++-+----+----+--+--+---------+++++-++++---------+---+---------++--+--------+--+----++---+-++++-++++-++-+-+----+-++-+-+-++--+-++-++-+-++-+--------+-+-+-----------+---+-+----+++-+-++---+-+-----------++-++-----+-+-+--++-+--+-+-+-++-----++-+-+++--+------+-++-----+--------+-+-----------+-++-+--+---+--++-+--+-+++---++-+----+-+-+-++++-+--++----+-+--++-++----+--+-+----++++-+++++---+--+-+-+--+-+--+++++---+--+-+-++--+---+++-+-+-++---+-+-+--+-+++-+---+---+++-+++-+--++--+---+++++-+---++----++++-++----+-------+++--+++---+-----++-+--+--+--+-+-+-+-----+-------+----++-++--+--+----++--+--+-+--+--+------+-+-++++-----++-++-+++-++-++--+-+-------+-++-+-+---------+--+-+-------+--+---+--------++----++-+----+------+-+-----+-+-+-+--+----+-+--+----+-+-+-+-+-+-----+--+-+-+++-+--+++------+---+-+--++----+-+-----+-+-+++-+++++--++-+-+++-+-------+----+++-++-----+-+---+-+-+++--++++--+-+-++---+---+--+++++--+--------+-+-++-+++++----++-++-----+-++++++-+-+--+---+-+--+-++-+---+---+--+--+--++---------+-+-+-+--+--+-++-++--+++--+++-+++++--+---++--++----++-++-+-+--++---++---+---+----++----+-+-++---++---++-+--+--+--++-+---+-------+--+--+---+-+----+--+-+---+--+-++++--++-++++-+-+-------++-++++-++---++------+++-+-+-++---+-+++++++++-------+-++---++-----+----+-+--+-+-+++--+-----+++-+--++---+-+++-----++---+--++-+-+-++---+-+---+----+--+++-++-+--+-++--+--------+-+--+--+++-++++--++-+------+----++----+-++-+-+-------+-+-+-+----+----+++++----+-+-+---+---+-+-+-----+-+---+----+--+-+-+++++-+++-+---+-++-+----+-+-++-++--+----+--++++-++++-------+-+--+------+------+------+-----+++---+-----++-++------+-----++-+++--+++-+-++--+--+--+----++---+---+-++-----+--+---+----+++-++---------+--+-+-+-+---+--+--+----+---+------++-+-+-+-+++-+----++-++-++-+----++--++-+---+++-++-+------+-+-------++-+-"

    Returns: 1346

  74. "++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++-+++++-++++++-++-+++++++++++++++++++++++++++++++++--+++++++-+++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++-++++--++++++-+++++++++++-+-++++-+++++++++++++++++-+++++++++++++++++++++++-++++++-++++++++++++++++-+++++++++++++++++++++++++++++-++++++++++++++++-+++++++++-+++++++++++++-+++-+++++++--+++-+++-+++++++++++++++++-+-++++++-++-++++++++++++--+++++++++++++++-+++++++++++++++++-++++-+++++++++-+++++++++++++++++++++++++-++++++++-+++++++++-+++++++++++++++++-+++++++++++++++++++++++-+++++++++++++++++++++-+++++++++-+++++++++-++++++++++++++++++++++++--++-++++++++-++++-++++++++++++++++++++++++++-++-++++++-+++++++++++++++++++++++++++++++++++++++++--+++++++++++++++++++++++++++++++++++-++++++++++-+++++++++++++-++++++++++++-++++++++++++--++-++++++++++++++++++-++++++++++++++++++-+++++++++++++++++++++++++++++++++-++++-+++++++++++++++++-+++++++++-++-++-+-+++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++-++++++++-++++++-+++-+-+++++++++++-++++++++-++++++++++++++++++++++-+++++++++++++++++++--+++++++++--+++++++++++++-+++++++++++++++++++++++++++-++++++++-+-+-+++++++++-++++++++++++++++++++++++++++++-++++++++++++++++-++++++++++++++++++++++-++++++++++++++++++-++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++-+-+++++++++++++++++++++++++++++++++++++++-++++++++++++++++++-+++++++++++++++++++-+++++++++-++++++++++++++++++++-++++++++++-++++++++++++-+++++++++++++++++++++++-++--++++++-++++++++++++++++-+++++++-+++++-++++++++++++-+++++++++++++++++++++++++++++-+++++++++++-++++++++++++++++-+++-++++-+-+++++++++-++++++++-+++++++++++++++++++++++++++++++++-++++++++-+++++++++++++++++++++++++++++++++-++++++++++++++++++--+++++++++-++++++++++++++-++++++-++++++++++++++++++++--+++++++++++++-++-+-+++++++--+++++++++++-++++++++-+++-+++++++++++++++-+++++++++++++-+++++++++++++++++-+++++++++++++++++++++++++-++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++-++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++-++++-+++++++--++-++++-+++++++++++-++++++++-+++++++++++-+++++++++++++-++++-++-+++++++++++-+++++++-++++++++++++++++++++++++-++++++++-++++++++++++++++++++++++++-+++-+++++-++++++++++++-+"

    Returns: 2118

  75. "----+--++-+-+-+-++++++++++-++-+++-+--++-++----++++---+++---+-+--+-+++----++-+-+-+-----+++--+-+-++--+++++++-++-+----+++---+---++--+--+-+++++++++++-+----+---+++---++--+++-++++++----++++-++++--+--+++++--+++-----++-+++--+-+-+++-+---+---+--+++--++++-+-+-+++++-+-++-+--+-+---+-+-+-++-+----+---+-+--+-+-----++----+++----+----+--+-++++---++-++-+-+-++-+-----++----++-+--++++++++-+---++-+-++---+---++++++++--+---+--+--+-+-+--+---+-++-+--+-+--+++--+---+---++-++-+--------+-+-+---+++-+-+--++++++-+---++-+-+--+-++-+-+-+++---+--+-+---++--+--+-++-+-++++--++----+-++-+-++--+-----++++-++-+--++-++----+----++-++--+---+++++-+--+---++++-------+++--+--+++-++-++++--++-+++---+-+++-+++--++---+-+-++----++----+++--+++----+-+++++++-++-+--++--+-++--+------+---++-++-+++----++--++-----++--+-+-+--+++--+-+---+-----++-+--+++-+-+-+++-+--+++---+--+++++++--+---+++++---+--++-+--+---+++++++---+--++-----+-++-+-+++++----------++-++-----+++++--+++---++--+-++++--+++--+++-----+--+-+-+-+++++-+++-+++------+--++++-+-++-+++--+--+---++-+---++++-+-+++++--+-+++++-+--+--+-+--+++++-++---+++++-+++----+---+++-+-+----+--++++++++-+++++--+---+++-+-+-++++---++++++---+++--+-+++-++-++----+---+---++-++++--++--++-++----+--+---+-+-+----++--+-++++-++++++-+-++------+--+-++-+--+++-+-------+--+---++-++----+--++-+--+-+++++-+++-+-++--++-++-+++-+++-+---+-+---+--++-++-+--++-+-+++-+++--++----+--++----++--++---+---+-+-++----+-++--++-+-+++++-+-+-+++---+-+-++-------++-+-+--++--+-+-+-++--++--++--+--++++-++++-+--++-++-+-+++---++---+-++--+++++-+++++---++-+-+++-++-----++----++-+-++--+---+----+++-+---++--+-+----+--++--+++++--+-+++-+++---+---+++++---+-+--+--+++-----+-++-++-++--+++----+-++-+-+-+-+++---++-+-+-++---+---+--+-+-++--+-+-+-++-+-+--++-+-+-+--+---+-++-+++--++--++-++++++++++-+-+++----+-+-+++-+-+--++--+--++-+-+-+-+-+-+-++--+--+-+--++-+-+++-+++---+++++--++--+---+-++++--++++-+--++-+-++-++++-++-+--+-++++------++-+-+--+--------+--+-+--++--+-+---+-+++------+-++--++-----++++--++-+-+--------++-++--+--+-+++--+-++-++++-++--+-+----+--+-+-++++--++++---++-+--+----+-+++++-++--++-+--++-+-+--+-++-+++++-+--+++--+--+++--++--+---++-++--+--++-++--+-++-++-++++++-++++-+++--+--+--+++++----+++-+++++++-++-+-++-+++--++++++----+--+-+-+-++-++++-++++-+--++----++++--+++---+---+-+-+--+-++--+-+++--++++++-+++-++--+-+---+--+-++-----+-+++--++-++++-"

    Returns: 1158

  76. "++--+-+++++-+++---+++++---+-++++++-+++++--+++++-+++-++-+++--+++-+-+++++++--++++-+-++-+-+--++----+--+--+++----+-+-++-+-++++-+--+-+--+++++++++++-++--+----+++--+-++--++--+++--+-++++-+-++--+-+++--+++++-+-+++++++++-+------++++-+++-++---+++--+---+---+++-+-++-+++-+-+++--+++-+++++++++-+-++--+--+-++++-++-+++-+-++----++-++--++++++++++++++++++-++------+---++++++++-++-++++--++-++++++++++++-++-++--+--+++-++++-++-+++-++-+---+++-+-+++-++-----+++++-++++++--++++++-+-+++--+-++++--+++++++++-++++++-+-+-+++-+-+++--++++++--+++--++++++-+-+---+-+++--+-+++++++++++-+--+++-++++++-++++++++++++++++++-++--++++--+--+++++++-+-+++++-++-++--+-++--+--+-++-+++-+++++-+++-+-+--+--+-+++-+++-+++-+--+--+-+---++++++++++-+-+--++-++++++-+-++++++++++--+-++-+-+--+++++-++--+----+++++--+-+++++-++--++++++++++++++----+--+-+-+++++-+++++---+-+++-+--+-+-+---+++-+-++-++++-++--++-++++--++++-+-++--+----+++++-+-++-+++-++-+--+-++++-+++-+-+++-++++--++++++++-+-++-+++-+++-+-++++---++++-+++++-+-+-+++++-+--+-++++++++++--+++++-+-++--++-+++-+----++-++++--+++-+-+++---+--++++----++++--++--++++-+++++-+++-++-+-+---+-+--+++---+-++---++-++++++++-+-++++---++++++----+++++++++-++--++++++-++++++++++++++-++-+++-+--+-+++--++-+-++++-++++-+----++--++--++++-+-++-++++----++-+--++-++-+-+++++++++-+-+++--+-+-+-+-+-++++--++++-++++++++--+-+---++--++++-+--+++-+-+++++-++++++++-+-++++++--++-++--+++--+++-++++--++-++-++-+++-+--++--+-+--+++++-+--+-+++-+-++----+-+--++++-+++++++++--+--+--+++----++++++-+-+-+++++++-+++++-++++--++-----++++-+++++-++-++++-+--+++++++++-++++++-++--+----++++--++-----+++++++++++-+-+-+-++--+--++++++++++--+++++--++++--++-+--++-++++++-+++++-+-++++++++---++-++-++---++++--+++++-+--+++--++++++-+-+++-++++++-++----+-+-+-+--+-+-++-++++++++-++--+++++-++----++++++++-+++-+-+-++++--++-+----++--+++++++-+--+--+-++-++--+-+++++---+--++++++++-+++-+-+--+++--------+++++-+++-++-++-+-++---++----++-+++++--+-++-+++--+-++--+-+--+++-++-++--+-+-+-+++-++-+++++--++++-+-+++++++++++++-+++-++-+-++--++++-+++--+++++++-+-+--++--++-+-+-+++-+-+--+-++++-+---+++-+-+--+++-+-++--+--++-++++-+++++-++-+-+++--+++++++++++-+++--++++++-+-+-----++++-++++-+++--+-+-++-++---+-++++++---++--+++++++++-++---+++-+-+-+++-++++----+++++++++--++++-++----+++------++--+-+-+-+-+++++++-+++----+++++++--+++++-++---++-+-++-+--++--+-+---+-++++++---+++---++-++++++-+++-++-++++++-++---++-++++--++-++++++-+-+++++++-+++++-++++---+-++++--+-+---++-++-+++-+++-+++---++++++++-+++-++--+++++--+-+--+-++++--+-+-+-++-+-+++++++-++++++++++-++---+++++++++-+-+++++--++++++++++++++++++++++---+-++++--+-++---++--+-"

    Returns: 1626

  77. "-+++++--++++++++++++++++++++++++++++++++++++++++++-+++-+++++++-++++++++++++++++++-++++++++++++++++++++++++++-+++-++-+++++++++-++++-+++++++++++++-++++++++++++-+++++++++++-++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++-+++++++++++++-+++++++++++-+-++++++++++++++++++++--++++++++++++++++++++++++++++++++-+++-++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++-+-+++++++++++++++-++++++++++++++++++++++++++++++++++++-+-++++++++++++++++++-+++++--++++-+++++++-++++-++++-++++-+++++++++++++++++-++++++++++++++++++++++++++-++++++++++++++++++-+++++++++++++-+++++++++++-++++++++++++++++-+++-+++++++++++++++-++++++++++++++-+++++++++++++++++++++++++++-++++++++++++-++++++-+-++++-+++++++++++++-++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++-+-++++++++-+++++++++++++-+++++-+++++++++++++++++++++++++++++++++++-+++++++++-+-++++++-+++++++++++++-+-++++--++++++-++++++++++++-++-+++++++-+++++++++++-++++++++++++-+++++++-++++++-+++++++++++++++++++++++++++++++-++++++++++--++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++-+-+++--+++-++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++--+++++++++++++-+++++--++++-++++++++++++-++-++++++++++++++++++++-++++++++++++-+++++++++-++++++++++++++-+++++++++++++++++++++++++++++-+++++++++++++++-++++++++++++++++++++++++++++++-++++-+++++++++++++++++++++++++++++++++++++++++--++++++-++-+++++++++++-+++++++++++++-++++++++++-++++++++++++++++++++++++-+++++++++-++++++++++++++++++++++++++++++++++++++++++++-+++++++++-++++++++++++-++-+--++++++++++++++++++++++++++++-++++++-++++++++++++++++++++++++++++++++-++++++-++++++++++++++-+++++++++++++++++++++++++-++++++++++++++++++++++++-+++-+++++++++-++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++-++++-+++++++++++++++++++++++-+++++-++-++++-++++++++++++++++++++++++++++++++-++++++++++++++++++-+++++++++++++++++++++-++++++-+-+++++++-+++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++-++++++++-++++++++++++++++++-+++++++++-+++-+++-+-++++++++++++++++++++++++++++++++++++++++++-+++-+++++++++++++++++-++-++++-++++++++++--++++++--+-++++-++++++++-+++++++++++-+++-++++++-+++++++++-+-+++-++++++++++++-++++++++++++++++-++-++++++++++++++++++++-+++++++-+++++++++++++++++++++++++-++++++-++++++++++++-++++-++++++-++++++++++++-+-++++++++++++++++++++++++++++++++++++++++++++++++++-++++++-+++++++++++++++++++++++++++++++++++++-+-+++++++++++-++++++++++-+"

    Returns: 2314

  78. "++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++-+++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++-++++++++++++++++-+++++++++++++++++++++++++++++++++++++++"

    Returns: 2472

  79. "-+-----++---++--+---+--+-------------++-----+--------------+------+-----------+-----+--+-+-----+---+++--------+----+---++--++--+----+--------------+++-----+----+-------+-+-------+--+------+--+-+--------+---+-+----------+--+--+--++--+--+--+--++-----++--+---+--------+--------+--+-----+-+-------++------++---+-----+--+--+----------+--+-------+---+---+--+--++-------+++------+---++----++-++---------++-+-++-+---+----+----+-------+------++----+-------+-+---------++---+-------+----++-+--++--++----------+--------+-------------+----+------+++--+-+---+-+-+----+-------------+---+-----------+++---------++------+----------------++----+-+--------------+++-++----+-+---+---+---+----------+++----+--+---+------+------+---++-+-+------+--+----+----+------+-+-+---+--+-+---+++---++----+-----+--+------+-----+--+----+---+-----++++-+------------+------++--++----+++--+-+----+----+--+----------+---++-+-++--+---+--+---------++--+++----------+-+--+----+++--+----+-+-++-----------------+-+-----+-----++-----+-----+-++----++----------+----+--+-+---+---+------+-+-+--------------+--+---+-----++--+--+-+----------+------------+------+--+----+--------+-------++----+-+----------+---++++++++---------++--+++----+--------+--+-------+-+-----+------+------------++----+----+-------++----+-------++-----+----+++-----------+------+-----++-+--+-------+-+---++-----+----+--------------------+++++--++-------+-+----+-++-+------+-+--+--+---+-------++-+-----+---+----+-+-+-+-+--------------+------------++----------------------+--++---+---------+--+-------------+---++++-+--+--+-+-+--+------+-+-+-+-++++-----+--+---+---+++--+--+--+-+-+----+---------+----------+-++-+------+--++---++-------++--------+----+----+-----+----++++----------+--------+-----+++---+---+-----++--+-+-+------++-----+-+++----+--++--------+-+-+--++++-+----+-+-----+------+-+--+-+----+--+--++--++------+----+--------------++-+-----+---------+---+-----+-----+----+++++-------------+--+-++-++----------+----++--------++-+------+--++--+---+-+++---------++--+-----++------++--------++-++--------+-+-+---------+---+----+--+-++-+-+-++------+-+---------++-+-------+----+++-------+--+--+-+---------------++-+----------+--+-----++--+++----+-+--------+-+------+--------+-----------++-+-+-++-+------------+-----+---+-+----+-----+---+-++--+---+-------+++-----------+---+-+---+------+----++-+----+++----+----+-+---+------------+-+-----++------+-----++------+--++---+-----------+-------+---+---++--+-------+-----+-+---+-++-+----+---+-----+-+-------++------------------+---------"

    Returns: 1903

  80. "++-++++-++++-++++++++-+-+++-+++++++++++++-++++-+++-+-+-+-++++++++-++-+++--++++++--+++++++++-++++++-+++-++++-+++-++++++--+-++++-++++-+--++++-+++++++--+-+++++++-++-+-+++-++++-+++++++-+-+--+++++-+++-+++-++++++++-++++-++++++++++-+--++++++++++-+-++--++++--++-++++--+-+++++++++-+++++++-++--++++-++++++-++-++++-+++++++-++-++++++--++++++-++++++-++-+++-+++++-+++-+-++++++-+++++++++-+++---+++++++-++++++++++++-++++-+++++++++-++++++++-++++++-+++++++++++-++--+++++-++-+++++-++++--+++-++-++-+-++++-+++++++++++++++++++++++-+++++--++++++++++++++++++++++++++-++++-+-+++-++-++++++++++++++++++++++++-+++++++++++-++--+++-+++++++++-++++++++++++++++-+-++++++--+-++++-++-+-+-+++++-++-++++-+-+++-+++++++++++-+---+++-+-+++--++-+++-+++++-++++++++++++++-++++++---+++++++-+++++++--++++++++++-+++++-++++++++-++++++-+-+-+++-+-+++++++++++++++++++++--+++++++++-+++++++++++-+++-+-+++--++++++++++-++++++--+++++++-+++++-++-+++++++-++-++++++++++--++--+++++++--++++++-++++--++--++-++++++++++++-++++++++++++++++++++++-+++++-++-++++++++++++++-++++++++++-+++++++-++-+--+++++---++-+++++--+-+-+++-+--+++-++++++-++-+++++++++++++++-++++-+++++++++-++---+-+++-++-+-+++++++-+-+++++++++-++++++-++++---+-++++++++-++-+++++--+++++-+-+-+++--++-++++-+++-++++++-+-+-+++++++++++++++--++--++++++--+-++-+++++++++++++++++++++-+++++++++++++-+++++++++++++++-++-++-+++++++++--++++++-++++++++++-+--++-++++++++-++-++++++++++++++++++++++-+++++-+-+++-+-++-++++++-+-++++++++-+++++++-++++++-+-++----+-+--+++++++++++++-+-+++-+++++--+-++++-+++++++++++++-+-+-++-++-+-++-++++++-+-+++++++-++--++++++++++++--+-++++-++-++-+-+++++-+++-++++++-++-++-++-++-++++++-+--+++++-+++++++--+++++++-+++-++++-+++-+++++++++++-++++++--+++++-+++++++++++-+++-++++-+++-++-++++----+++-+++--+---++-+++-+-+--+-+-+-+++++++-+++++-+-+++++-++++++-++++++++++++++++-+++++-++++--++++++++++-+-+++++--+++++++++++-+++-+++++++++-+++-+--++++++++-+-++++++++-+++-++++++++++-+++--+++--++-++++++-+-+-++-+-+++++++++++++-+-+++--++-++-++++++++---++++++++++-+-++++++-++-+++++++-+-+++++-++-+++++++++++++++--+++++-++--+-+++++-+-++-++--+-++-+++++++++--++-++-++++++++-++-+-+-+++++++++++++++++-+-+++-+++--+++++++++-+-++++-++-++-+++-++-+-++++++++++-+++++--++--+-+-+++-++++++++++-+++++--++++++++-+++-+++++++++++++-++++++-+-+++--++++--+-+++++++-++++++--+-+++++++++++-++++++++++--++-+++++++-++++-+++++-++++-+-++----++++-++-++--+++++++++++++++++-++-+++++++++-+++-+++-+++--+-++++++-++-+++---++++++++++++-++-++-+-+++-+++-+-+++-+++++++++++++++-+-++++++++++++++-+-++-+-++-+++-+++-++++-++++-++-++-+-+++++-++++++++++++++--++++-+-+-"

    Returns: 1978

  81. "-+-+-++--+--+-++-+-+-++-----+-+++++--+---++----------++-++---+----+--+-+-----+-----+-+----+-+----+--++++-----+++--+-++++++----+-+--+-++++++--+---++-+----+--+-+-+-++--+-+++++---+-+-++-+-++-+-+--+++++-++++-+--++-+----+-+++-+------+-+-++++---++--+-------++-+++--+--++----+---------+++--+++--+-++------------++-+---+--++++++++--++-+++---+-++--+++-++---++-+---+-++--++--++---++++++-+-+---++----+-+-+---++-++-++--+-++++---++-++--+--++--++-+-++++-+--+-+----+++++----+---+++--+-+-+--++++--+-++---++--+-++--++-+---+--++-+-+---++----+++-++--++-+----+++--+--+--+-+-+--+++-+------+-+++--+-----+--++++++-+-+-+-++-+++-++-----+++-++--+-----+----++-+----+---+--++-++++-+++++---+--+-+--++++--+++++--++-+----++++--+++-+---+-+-+-+-++--+-+++-++--------+-+-+--+--+-++-----+++-+-+++++++--+++++-++-+-++-+-+++-+++--+--++--------+-+-----++--++-++-+--+--+--++-++--+-+--+++---+-++-+++---++--++-++----++++----+--+-+----+++--+---++-+-+-----+---+-+-+--+++++++--++++++++---++-+------+----+-----+-+-++-+--+--+---+++++++-+++-++--+-++-++--+--+------+---+-++--+---+-++---+--+---++++--+-+++---++--+-+-+-+++++-+-+---+++-+-+-+-------++++-+++-+--++-----+--++-+-++--+---+---+-++-+++++--++-++-+-++--+-++--++-+--++++-+--++-++-+--+-++-+---+++-+----+++--++++-++++------++----+++-----+-+--+++-+-+-+++----++--+-+-++++-+----+++--+-++++-++-+----+--+++++-+++-++-+---+--++-+-++++-++-++-+-+---+-++-+++----+--+-+---+++----+----++++-+--------+----++---+++-----++---+---+-+------++++-+-++---+--++--++++---+--+----+-++-----+++--++--+-+---+++-+--++-----++--++-+---------+++-+-+-----+++-----++-+---+++-+-------+--++----++++-+--++-+++-++-++++------+-+-++---+--++++--+--++++++--+-+-+----++-+-+++---+---++-++---++-++-++--++++-++-+++-++--+---------+-+++-+-++-+-+-----++--++-+++------+--+-----+---++-++--+-++------++---+--++-------+-+--++-----+++--+++-++-+---++---+--+-++++--+++---+-++----+-++---+---+---++-+++---++-++-+++----+----+-+++---+--+--+++++----+++-+--++--+-+-+--+-+-+--+-+-++-+++-------+---++-+---+-+--------+++-+++----+-++++--+--+-+++---+---+--+--+-----+---+---+-+-+----++-++--++--+---++-+-++++----++-+++-++-++---+--++----++--+--+-+----+-+------+-----++-+-+----++-+--+---++----+--++-+-+++-+++-++-+-++---+++-+--+-+----+++--++++-+---+--++-+--+--------------++--++---++--++-+---++---++-+-+-+-+--++-++--++-++--+-+-++-++---+-+-+++-++---+-+----++-++++-+-++--++++-+--+-+----+-++-+--+------++-+-+++------+-++++---+--+-+----+-+-+--+-++++---+++--+-+-++--+--++-++--+---++-+----+-+++++-------+-----++++----+++-+--+-+-+--++++-+---+--+-+++--++-------+--+-+++--+----"

    Returns: 1364

  82. "--+++-++---+-++++-+++-+--+--+-+++----++-+++++-+-+-+++++-+++++-++-+----++-++++-+---+-+++-++++---++-++++---++++-+++++++-+-++++-++++++-+++++++++++--+-++-+---+--+---+-+-+++-++----++--++++-+--++++++--++++++-++-++--+-++++-+---++--+-++++-+-++++-++++-++----+++-++--+-++++-++-++++++++---++-+++-+++-+++-++-+--++++-+++-+-++-++++++--++++++-+-+++--++-+++-++---++++++--+-++-+++-+-+-++--++++++++++-++++-++-++-+-++-+++++-+--+-++++-++-+--++++--+-++-+++++-++++-++--+++++-+++-+-+++-+--+++++-+-+-++++++-+--++++++++++-+++++-+-+-+-+-++++++++-+++++-+++++++++--++++--++++-+-+-++-+++-++++++++-+--+++++++-++-++-++-++++-+--+---+--+--+-++-++--++--+++-+--+++++-+++-+++--+++--+++++++-++-++++--++++--+-+++----+--++-+++-++--++++++--++++++-++++--+-+++--+++-++-++-++--+-+-++-+----+-++++--++--++++-+++-+-+++++-++-+-----+++++++-+-+++++-+--++++++-+++---+--+++++++-+--+-+--+----+--+--+++--++-++++++++++++-++++++++++-+-+++++--+-++-+-++---++-+--+--++-++-++++++++++++---++--++++--+++-+++++++-+-++++-++-+-++--++-+++++++++++-++-+++++-++--++++-+-+++++--+--++++-+++-+---++--+--++--++-+-+-++-+-++++++--+-+--+-+--++++++++++-++++--+-+-++-++++++-+++++--++----+-++-+++--+----+-+-+-+++-+++++-+--+++-+++-+-+--++-+++---++-+--+++++++-++-++++-+++-++-++++-++----+----+---+++-+-+++-+--+-+++++-+++++++-+--++-++++++++-+-++-+++--+-++++++-++-++++++++-++-+++++-+++++++++-++++++-++++-+++++-+-+-+--+---+++++-++++++++++++-++-+---+++--+--++++-++++++++++-+-+-+---+-++++-++++-+++--+-+--++-+--+++++--++-+--+++-++-++--+++-+---+--+---+-+-++++-+--+----+-++-+++++++---++-++--+++++---++++-+++--+++++--+----++-++-++++++++--+-++-+++---+--++-+-++--++---++-+-+---++++++++-+-+++++-++++++--+-++--++-++++-+-+-++++++-+--+++--+---++-+++-+++-+++++-++-+++-++++---+++++++++-++++--+---+++--+++---+++-++-+-+++-+-+--+-++-++++++++++-++-+-++++-++-+-+--+-++++++-+++-++--+---+++++--++++++++++-++-+-+-+++-+-++++++-+--++-+-++-++++++----+++--+++--++-++--+++++++-+++++--+---+++++++-+++-++-++-++-+-++---+-+++++++++++++++++-+++-++++--+++-++--+++--+-+++-+++++++++-++-+-++++---++-+-++++-+--++++-+++++-----++++-+-----+--++++++++-++--+++--+++++-+++-+--+++++++++-++++----+++----++++++-+--++-+++-+--++-+-++-++-+-++-++---+--+++++++-++++++--+-++++-+++-+-+++-+++-+-++++-+++++-++-+-++-+++--+++-+--++++++++-+++-+--+++--+--++--++-++++-++-+++-+++--+-++++--++---+-+++-+++-+-+++++-++-+++-++-++++--+-++++-++-++-+--+-+++--+-++-+++-+-+-++-+-++++-+---+--++++-++----+-++-++++++++-+-++-++--++-+--++-+++----++--+-++---++-+-++-+++++++++-+--+++-++------++-++-++++++++++++++-++++--++-++++++++++++-+++-+++++-++-+-+++--+++++++"

    Returns: 1642

  83. "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"

    Returns: 2483

  84. "++-+++-++++++++-++-+++-+++++++++++++++-++-++++--++++++++-+++--++++-+-+-+-++++++++++--+-+++++++-+++++++--++++++-+--++--++++++++++-++-+++++-+++-+++++++++-++++--++++-++++++++-+++-+++-+++-++-+++++-++++-+-+++++++++--++-++-++-+++-+++--++--+++++++++-++-++-++++++-++++-++++-++++++++++-+-++--+-+++++-+++-+-+-+++++--+++++++++-+++++++-++++--++-+-++-+-++-++--+++++-+++++++-++++++++-++-++++--+++-+-++++-++++++--+++++-+++++++++++++---++-+++++++++++++++++++-+-+-+--+++++++++-++++-+++++++-+++++++++++++++++++++-+++++++++--++++++++++++++++-++++++++++++++-++-+-+++++-++++++++++--+++++++-+-+++-++++-++++-+-++++++++-+++++++--+--+++++++--++++++++-++++-+-+++++-++++++++++++-++++-+++++++--++++---++++++++++++-+-+++++++++++++-+++++++-++++++++++-+-+++++++-+++-+-++++++++--+++-++++--++++++++-++++--+++-+++-+++++++++-++++++++++++-+-+-+++++++-++--++---++++++++++-++++++++++++++++-++-++++++++++++++++++++--+++++++++++++++++-++++++++++++++--++-++++++--+-+++++++-++++-+-+--++-+++-+++++++++++++++++++-+-++-+++++++--+-+++++++++++++-+----++++++-++++++-+++++-+++-+-+-+++++-+-+++++++++-++++++++-+++++-++-+++-+++++--+++-+-++++++++++++-+--++-++-+-+-+++-+++--+++--++++++++++-++--+--++++++-++---++++++++++++++++++--++++++-++++-+++++++++++-+++++++++-++++++++-++++++--+++++++++--++++--+++++-++-+++-++--+-++--+-++++-++++++++++++++++--+++++++++++++++-+-+-++-+++++-++++++-+++++++-++++++++-+++++++-+++-++-+++++-++++++-++++--+++-++-+++++-++++++-+++--+++++++++-++++++++---++++++--++++--++++-++-++++-++++-+---++++++++-+++-++++++++--+++++-++-+-++++++++-+++++++++++++++-+++-+-+++--+-+++++++--++--++++++++++++++++++++-++++++-+-+++++-++++++++++++-+++++++--+++++++++++++++++++-+++--++-++++++-++-+-+-+-++++++-++++++++++++++++++++++++++++-+++++++-+++++++-++++-+----++-++--+++++++-++++++++++++-+++-+++-+-+++-+++-++++++-+-++++---+-++-++++-++++-+-+-+++--+++++++++++++-+++-+++--++++++-++++--+++++-++-+++++++++-+++++++++++++++++-+-+++-+++-+-+++++--+-++++-+-+++-+++-+++++-++--+-++++++++--+++++-+-++++++++++++++++++-++++++-+++--+++++++++++++++++-+++++++++++++++++++++--++++-++++++++++-++-+--++++++++++++-++++-+-+++++++-++++-++-+++-+++-++---+++-++++--+-++++++++++++-++-+++++++++++-++-++-+-+++++-++-+++++-++++++-+++++-+++++++++-+++++-+++-++-+++-++++++++++++++++++++++-+++--++-+-+-++++-+++++-++++++++++++++-++++++++++++++++-+-++++++++++++++++++-+-++++-++++++-+++---+-+++++++-+++++--+---+++++++-+++++++--+++++--+++++++++-+++++++-+--++-++++-++++++-++-++++++-++++--++--+-++++++-++++-+-++++-++++--++++++++-+-++++-+++-++-+--+++++-++++++++-++++++++++++++++++++++++++++++-+"

    Returns: 2004

  85. "++-------+--+---+--++---+---++----+--++-----------+---------+------+-+-+++++-+----+------++++---+++--+---++--+-----+-------++-+--+------------++++-++-----+--+--------------+--+-++-----+------+--------+--++-+-++---+-++-+-+------------+++-+-+------+-+--+--++-----++++--+--------++-------+-+++++--+-----------++----+++++---+-++-----+--+--++------++-+----+--+-+------++-+--+-------+++-++--+-+++----+---+---++++----+--++--+------+-++------+-----+------++-++--------------+-+-+-+----------+-+--+-++--+----+---------+--++-+------++-+-+--+---++---+-+-+--+-++++-+-------+-----++-----++-+----+-------+-----+++-----++--+------+-----+----+----++--++---+++--+---+-----++-----+---+----+-+----+-++-------+--++------++-++-+----++-++++--+++--+---++-----++-+-+--+-++-+-+-++-++---------+----+--+--+-----+--+------+--------+++-++-+-+-----+---+-----+--++---+-++---+-------+-++-+-----+--+---+----+---+--+--+-+--++---+-+-+----++--------+--+------++++-----++-+-+----+-++---+++---+-+-+-+---++++++--++-+---+++--+------+-----++--++------+--+-+--+-----------+--+-+---+------+-+-+-----+--+---+-++-+-------+--+-------------+-++++--++-----++--------+++--++------+-+-----+++------++---+----++++-----++--+-++----++-+-++-+-+-------+---------+---+--++++-+--++----++-----+++-+--++-+-++---++-------+-+----+-----+-++++-----++---------+----+----+-++++-+-++-+++--++------+++----+---+++++++-+-------------+------++-++--+-+-----+-------+--+-+---+++-+--+-+++--+--++-+---+-+----+++-+-+--++---+++--++------+-----+----+-----++-----+-+--+---+------+-++----+-+--++++---------+-------++++++-+-------+--++----+---+---+-+--------++-+--++---+----+----+++--+--+----+--+++---+---+---+--------+-----+-----+----+-+---+++--+---+--+-+++++------++-++----++++---+--++---+++--++--+-+------+++-----------------+-++-+---++---+-+----+--+-++---+--+--+---+-+--++-+--++++---++-+--++-+----++-+-----++--++-+-+---------++--+-++--+--+++-++-----+++--+---+-+---+++----++--+----+-+------------++---+++--+---+----++-++--+------+---+-----++------+--++--+++-+---+-------+--+-----+---------+---+++-+----+-----+----++-++-+-++-+-------------+-+-+-------+-+-+----+-+++------+-+-+--+---+----+----+---++-+---+++---++-----------++-+---+-++-------++----++-+---------+-+-++---+--+--+--+--++-------+-+--+-++--+--+-+----++++---+++++--+-+-------+-+-++--------++----------+++--+-+----++---+-++++--+-+-+-+--------++-----+----++--+----------+-++--++---+--+---+-+-+-------+-++-----+-++-+--+-----+++----+---+----+---++--++--+-----+++-----------++--+---++-+--+-----+-----+------+---+++---+-+-+-+"

    Returns: 1689

  86. "+-----"

    Returns: 5

  87. "++----+++--+"

    Returns: 6


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: