Statistics

Problem Statement for "ParenthesisRemoval"

Problem Statement

Correct parentheses sequences can be defined recursively as follows:

  • The empty string "" is a correct sequence.
  • If "X" and "Y" are correct sequences, then "XY" (the concatenation of X and Y) is a correct sequence.
  • If "X" is a correct sequence, then "(X)" is a correct sequence.
  • Each correct parentheses sequence can be derived using the above rules.

Examples of correct parentheses sequences include "", "()", "()()()", "(()())", and "(((())))".

You are given a String s that is guaranteed to be a correct parentheses sequence. A removal is an action that consists of two steps:

  1. Remove the first opening parenthesis in s.
  2. Remove one closing parenthesis in s. After you do so, s must again be a correct parentheses sequence.

Compute and return the number of distinct ways in which s can be reduced to an empty string by performing consecutive removals, modulo 10^9+7. Two ways are considered distinct if there is a step in which you remove a different closing parenthesis. (See Example 1 for clarification.)

Definition

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

Constraints

  • s will have between 2 and 2,500 characters, inclusive.
  • s will be a correct parentheses sequence.

Examples

  1. "()()()()()"

    Returns: 1

    In each removal we have to choose the leftmost closing parenthesis.

  2. "(((())))"

    Returns: 24

    In each removal we can choose any closing parenthesis we want. Note that these count as distint choices, even though all choices lead to the same string. Thus, there are 4*3*2*1 = 24 different sequences of removals that change s into an empty string.

  3. "((()()()))"

    Returns: 54

    Below is one of the 54 possible sequences of removals. Remember that in each step we also remove the first opening parenthesis. Remove the fourth closing parenthesis: "(()()())" Remove the second closing parenthesis: "()(())" Remove the first closing parenthesis: "(())" Remove the second closing parenthesis: "()" Remove the first closing parenthesis: ""

  4. "(())(())(())"

    Returns: 8

  5. "((((())((((((((((()((((((()))))())))))()))))))))))"

    Returns: 948334170

    Don't forget about the mod.

  6. "((()((((((((((()))((((()))((((()(()((()))()))((())())())()())))(((()))(((())))())()(()((())))))))))(((((())))((())((((((((()))()(()(())))))()(()()((((()))(())((((()(((()(()))))))(())))))))((()(((())))))))(((())))))))))))"

    Returns: 873781608

  7. "()()(())(()()())((()))(())(()()(()())()(())(()()(())(()()(()()()))))(()()()()()()()(()()()()()(()()()(()))))(()(())(())(()())()()())(()(())()()()(())(()()()()(()))(())(()()()(())(()())))"

    Returns: 57657638

  8. "()()()(())()()(())(()()())(()()())(()(()))(()()()()()()(()))(()()()())(()()()()()()(())(()()))(()()()()()()()(()())())(()()()()())(()()()()()()()(())(()()()))(()()()()()()()(())(()()()(())))(()()()()()(())(()))(()()()()()()(())(())()()()()(())(())()(()(()))(()())(()())(()()()()()()()()()()()))(()()()()()()()()(()())(())(())(()()()()()()())(()()()())(()()()()()()))(()()()()()()()()()()(()())(()())(()()())(()())(()()())(()()())(())(()()()())(()()()()()()())(()()()(()()())(()()()()()()()()()()(()))))(()()()()()()()(())(())(()())(()(()()))(()()())(()()()(())()))(()()()()()()()()()()()()()(()()())(()()()()()(()()))(()()(()()))(()()()()()()()()()()()()((())()())))(()()()()()()()()(())(()())(()()()())(())(()()()())(())(()(())()())(()()())(()())(()()()()()(()))(()()()())(()()()()()()()()(()()))(()()()()()()(())()(())(())(()()())(()()(())())(()()()()()()())))(()()()()()()(())()(()())((()))(()())()(()()())(()())(()()())(()()()()()()())(()()(()()))(()()()()()()()(())(())(())))(()()()()(())()(())()()(()()())(()()()()())(()()()()())(()()()())(()()())(()()())(()()()()(()()())(())(()()()(())()))(()()()()()()()()(())(())()(())(()))(()()()(())(()())(()())(()())(())(()))(()()()()()()()(())()(())(())(()()(()()))(()()()()(()))(()()()()()()()))(()()()(())()(())(()()))(()()()(())(())()()(())()(()())()(()())(()()())(())(()()()(())(())()())))(()()()()()()()(())()(())(()()()())()()(()())(()())(()()()()()(()))(()()())(()()())(()(())()(())())(()()()()()()()(())(()))(()()()()()()()(())(())(()()()))(()()()()(())()()()())(()()()()()()()()()())(()()()()(()())()()(())(())(()()()())(()()()(()))(()()()(()()))(()()(()))(()()()()()(()))(()()()()()()()(()()())())))(()()()()()()()()(())()()()(()())()()()()()(()(()))(()())(()()()())((())(()()))(()())(()()(()()))(()()()()()()()()()(())(()())(()()()()))(()())(()()(()()()()))(()()()(())(()()()()()()(()()()())))(()()()()()()()()(())()()()(())(()())(()()()()(())()))(()()()()()()()(())(()())(()())(()()()()()()()(()()()))(()()()()()(())(()()(()))()))(()()()()()(())(()()()())(())(()()()()()()(()())(())))(()()()()()(())(()()())(()())(()()())(()()()()()()()()()()()(())()))(()()()()()()()()()(())(()())(())(()()())(()()()()()()()))(()()()()()()()()()()(())(())()(()())(()()()))(()()(())()(())()(())(())(()())(())(()()(())(()()()))(()()()()()())(()()()()()()()))(()()()()()()()()()(())()()()()(()())(()())(()())(()()())(()())(()()()(()()()))(()()()()(()()()))))"

    Returns: 939667784

  9. "(())((()())(())())((())((()())))((())((()(()))()(((()()))((())(()()(()((())))(()()))())((())(()(()()(()))((()((())))))))))(((()()()))(()(()))((()())((())))(()((()))(()()(()())))((())(())()((())(())((((()()()()))(((())))())(()(()))))))(((()())())((()((()))((())(()())))(()(())((())())(()((())))))(()()()((())(()(())(())()(()(())()))))((((())))(()))((()())(()())(())((())((())()(())())((())(()()(()))((())(()()(())))))(()(())((()()(()))(())))((())(()())()(()(())(()())()))(()(()()())(()()())(()(()(())(()()))()(((())()()(()(())(()))())((())(())))))(()()()(()(())((()(()))))(()(()()(())))(()()(()(((())())))(()(())(()(())(()((()))(()))(())()((())))))((())((())))(()(()()(()(()()())))((())(())(())(()))))))(((()(()()()())(())))(()()(((())())))(((()))()(()())(((()())()(()()(())((()())(())))(()()())(()(()())()()(()(()()))(()()()(()(())))()))(()(()(())()((()))))((()(()())())()(())(()(()())(())(())(()()()()()((()))())())((((())))(())(()(()))))(()(()(())())(()(()(())((()())()(()(())(((()(()()))(()((())(())))))))))((())(())(()(()))(()()()()(()((()))(())))((())(())(()())(((()()()))(()()))(((())()))()((()())))))(()()((())((()))())(()())(()((()))())(((()))()(()(()()()))((())())()()(()(()()()(())))(((()()))))))))((())(()(()(()(()))()))(()(()())((())(()()((()((())))))(()((())))(()(())((())))((())(()()()))((()()(()))((())(()())))(((()(())))(()))((()()())))())(()()((()))(()(())(()(())))(()(())()((()(())(()(()))))(()(())((())())(()()))(((()()))(()(()(())))((()(()))((())()(())))))((()(()())()(()))(()))(()(()(()))(())(()(())())((())())((())(()(()()())))((())()(((()))(())(()(())((())(()(()))())((())())))((((())))(()(()())(()(()())()))(((()()))))()(()(((()))))())))((()(()()(()()(())(())())))(((((()))(()(()())))(())))(()((()())((()))())(()()((())))))(()((())(()(()())(())))((())((()())))(()()(()()()()))((())((()))((())(()(()()()())(((())))(((()))()(())(((()(())(()())))))))(()(((()))))()((((())()()))((()))(()(()(()))(()()())(()((())(()))(()(()())(())))((((((()))()())))(()((()())(()(())))((()))))((()))(()))))(()()))(()()(())(())((())((()(()()))))(((())((())))((((())())())(()(()())(()))())()(())(()()(())()((())((()()())(()()(()(()))()((())(()))()()))((()())(())())((())(()(()())))))((()())(()()(())((()((())))(()(()))(()((()(()))()(()(()()))(()()())))))((()(()((()))((())())(()))(()))(())))))(()(()(()(()())))(())((()())(()((())(()(()))))(())(()()))(()(()(()()(()()()(()))(())(()))))))"

    Returns: 993688502

  10. "()()()(())(()()())(()()(()(())(()()))())()(())((()(())(()))(()))(()()(()())(()()((())))(()()(()(()))(()())))(()()()(())(()()()))(()()()()(())(()())(()(()(()))(()())(()(()))(()()(())())(()()())))(()()(()())()()(())(()()(())()()()(()()(())(())))((())))(()()(())(()())(()()(())()(()(())(())))((())())(()()()()(()))(()()()(())()(())()()(()()((())))(())(())(()(()())))((()())(()()))(()()()()(())(()()))(()()()(()())(()()())(()(()))(())(()(()()))(()(()())(()()))))(()()()()(())((()))(()())(()()(()()()))(()()(())(()())()(()(()()))(()))(()()((()))(()()()(()())))(()()()(())()())(()()()()()(()())(()()()()()(()()(())()()()((())))))(()()()()(())()(())(())(())(()()()(()()))(()()(()())(())(()()))(()()()()()()(())(())(())(())))(()()((())((())))(()())((()))(()()()()(()()()(())()(())(()())))(()()()(())(()())()))(()()()()()()(())()(())(()(()()(())()))))(()()(()())(())(()()())(()()(())()(()(()))))"

    Returns: 934987236

  11. "()()(())()()(()())(()()())(()()()()())(()()()())()(()()()()()()(()))(()()()()())(()()()()()()()()()()(())()(()())(()()))(()()()()()(())()(())()(()())(()()()))(()()()()()()()(()())(())(()())(()()())(()()(()))(()()())(()()()()()()()()()(())()(()(()))(()()))(()()()()()()()()()()()()()(())()(())()))(()()(())()()(())()(()()())(())()(())()(()()(()())(()))(()()()()()()()()(()())(())()(()()())(()()()()()()))(()()()()()(()())(())(()()()()((())()))))(()()()()()()()()()()()(()())(()())(()())()(())(()()(()()())(()(()())))(()())(()()()()()(())(()))(()()()()()(())(())(()())(())(()))(()()()()()()()(()())(()()()()()))(()()()()()()(())(()())(()))(()()()()()(())((()))()()(())(()())(()()()((())()(())())))((())()()(())()(()())(()(())()())(()()))(()()(())(())(()())(())(()()()(()())(()))(()()()()()()((())))(()()()()(()()(()())))(()()()()(())()(())))(()()()()()()()(())(()()()()(())())(()()))(()()(())(()())(())()(()(()))(()())(()()()(()())())(()()(()()))(()()()()()()(()())(()())(()()()())(()()()()))))"

    Returns: 456906575

  12. "(((())(()()(()()((())))()))((((())))((((()(())((((())))())(())((()(())(()))((())))))((()(())(((()))((()))))()((((((())))((()))))))(()))))(()))"

    Returns: 446471097

  13. "(((((((())(()(()())))()))())))((()(())(()((())((())((())())(()(())())))())))"

    Returns: 364654327

  14. "()()()(())()(())(()())()(())(()()())(()()())()(()()()()())(()()()()()())(()()()()(())())(()()()()()()()()()(()))(()()()()()()()()(())(()))(()(()))(()()()()()(())(())(()()()())(()()(())))(()()()()()()()(()))(()()()()()()(())()(())(())(()())(()()()()())(()()(()))(()()()())(()()))(()()()(()())()(()()()())(()()()(()())))(()()()()()()()()()(()())(()()()()(())))(()()()()()(())()()(())(()()())()(()()())(()()()())(()(())(())))(()()()()(())(())(()())(())(()()())(()()()()(())(())(()())()(()())(())(()()()(()))(()()()())(()())))(()()()()()()(()())(()())(()())(())(()())(()()()()(()()))(()()()(())))(()()()()()(())(()()()())()(()()()()()()(()))(()()()()(()())(()())))(()()()()()()()()(())(())(()()()())(()()()()())((()()))(()()()(())()(()())(()(())()()))(()()()()()()()))(()()()()()()(())()()()()()()(()()())(()()())()(()()()()))(()()()()()()()()()(())(()())()(()())(()()()()()(())(()(())))(()()()()()(()())(())(()()))(()()())(()()()()()()(())(()())()(())(()())())(()()()()(())(()()())(()()()()()())))(()()()()()()()(())(())(())(()())(()())(()())(()()()())(()()()())(()()()()()()()(()()()()())(()()))(()()()()()()()()(()()())(()()))(()()()()()(())()()(())()()(())()(()()())(()()(())()()())))(()()()()()()()()()()()(())()()(())(())(()())(()())(()()()())(()()())(()()())(())(()()()()(())())(()()())(()()()()()(())())(()()()()()()()(())(())(())(()()))(()()()()()()()(()()())(()()(()))(()()()()))(()()()()(())(())(())()(()())()()(())(()()(()())(()))))(()()()()()(())()(()())(())(()())(()())(()())(()()())(()())(()()()()(())()(()()()))(()()())(()()()())(()()()()(())())(()()()())(()()()()()()()()(()))(()()()()()()(())())(()()()()()()()()())(()()()()()(())(()))(()()()()()()()()()()(()())(())(())()(()()())(()()())(()(()())(()()))(()()()()))(()()()()()(())(()())(()()()()()(())(())))(()()()()()()()()()(()())(()())(())(()()())(()()()()())(()())(()()()()()()()(()))(()()()()()()()())(()()()()()()()()(()))(()()()()()()()(())())(()()()()()()()(())(())())(()()()()())(()()()()()()()()()())))"

    Returns: 868858854

  15. "()()()(())()(()(())())(()()())((()))(()()(()())(())(()()))(()()()()(()()())(()()(()))(()()(()())))(()()()()(()())()()(()()))(()()((()))(()())(()())(()))(()()()(())()(())(())(()())(()(()()())())(()()()()(())(()())))(()(())()()(())(())((()())()(()())(()))(()()()(()()(()))((())(()()())(()()))()))(()(())()()((()))((()))(())(()())(()()()()())(())(()()(()()))(()()()(()()()()())((()))(()(()()())))(())(()()()()()()(()()()())(()()())(()())((()())(()()()()(()()()())))(()((())())(())))(()()()(()())(()(()()(())))(()()()()()())(()()()(())(()()))))(()(())()()()((())(()))(()())()(()()(()())(()()()))((())(())(()()())(()()))(()()()()(()))(()()()(())()(()()()())(()))(()(())()(())(()()))(()()()(())()()(()()()())(()()())(()(()())(()()((()()))))(()(())()(())))(()()()()()(()(()))(()()()())(()()())(()(())(((()))())(()()()()))(()()()(())()((()()()))(()()()))(()(())()()(()()()()())(()()()(())(())(()))(()()(())()(())))))(()()()()(()()()(())(()()()(())))(()())(()(()()())(()))((())(())(()(()()))(()()(()))(()()()()()(())()(()())))(()()()(())(())(()((())))(())(())(()()()(()()()))(()())((()())))(()()()((()))(()()(()()()())(()()(()))))(()()()(())(())(()()()(())())(()()()()())(()()(())()(()())()(()(()))))(()()()(()())(())(()()()()(()())(())(()()()()(()()))())(()()(())(()())()((())())(()())(()(())()(()))(()()()()()())))(()(())(())()(()()())(()(())()(()))(()(())()(()()())(()))(()())(()()())(()()()()()(())(()()(())(())(()))(()()(())(())(()))(()()(())(()())(()()(()))(())(()()))))(()()()()()()()(())()((()()))(()()(())(())(()()))(()(())()(())()(()()()())((()())()()))(()()()()())(()(()))(()(()())(()(()()())))(()(()()())(()))(()()()()(()(()()))(())()(())(()()(())())(()))))"

    Returns: 56756141

  16. "((((()((((((((()((()((())(()(()))()))(()))()))))()((()))))((()(()()))))((((((((())(()))())())))())(((((()((())(((((()(())())()(()(()((())))))(())(((())))))((()(((()))(()())(()((())(()()(())))))(()))(((()(()()())))((()((())))))()(((((())(()()(((()))))())(())(()))(((()))(())))((())()))(())))))()(()()))())())(((()))(()))())((((((((())((()(()))((())(())((())(()()())(()))()))())((((())()((())))))((((()()))))()))(())(((((((())()(((())())()))(()))((())))((((((()(())(()))))((())(((()((())())(()(())((()(()((())(()))()))))(((()(()))))))))))))))(((()())())(((())(())(()))(((()))))((((()()((((((())(((())))))))))))(())(((()))))))((()(((()(((()((())(())(()))))))(((()((()))(()(()((()((((()())))())))()((((()((())(())())))()((()())))(((()(())(()))(((((()))()))())(((()((((())))(()))))))(((()(()(()((((()))))(()))))((((())))(((((())())(()()((())))())))()())((()))))))))))(()))))((((((())())(()(()))((((()))))())((()()(((())((())(())()))(()(()((((()))()(((())(())())()))(()))((((((()(()(()())))())()())((()()((()(()))))(()((())(()())(((()(()()))))(((()))()((())()())()(())())))(((())(((()))))((()(()()()))))))())))((((((())((()))()))())((((())()))))(()(((())(()(()(()))()())(()()))((()(()()))((()())((())(())()))(((()()))((()))()(((()(())((()(()((())))()))()))))))(((((())))()(((())()((()))())))))((()()((()))())))((((((((())))(((())((())))()))))))))())()()))((((((())(()))())(((()))(()(()(((()))))())(((())(())(())(()()()))())))))))))((((((((())(())((())())()))()))())(((((())))((((()))())))((()(((())()())))()(((((((()((()))()))((())(()(()(()())())))((())(((()()))(())(()))))((((()(()(())((())))(()))))((()(((()(())(()())(())))()))(((()))(())()))(()(()())))((((()))(()()))((((())()))))(())((())(()()))((((()((()((((()))))(()(()))))(((((())()()))()((())())())))((((())(())((()))))((())(()(()()))((((()))))))((()())))(((())(((((())(()))())((()()())(()(((())))))((())()((()())(((()))))()))))())))()((((())(()))()(((((())(()())))))((())()))(()()))((((((())(((())))((()())())))))(((())(()()())())((((((())((())))())(((())()))()((((())))(())))())(()()()(()(()(()(())))())))((()((((())))(()()(((()))(()(()(()(()))(())(()(()((()))))))))))))))(()((((((()))(()()(()()))))((()())))))((((((()())((()())()())((()(()))((()))(()()(()(()))))()(()))((()((()))()(()))))))))))))((((())((()())((()((())))))(((()((()))(()(()())(((()))))((()(()())())))())))(()())((()())()))()))))((()((((())(())(()(()())))))((()((()(()))))))))))))))((()())((((())))())))"

    Returns: 301624017

  17. "()()()()()()()(()())(()())(()())(()()(()()))(())((())())(()())(()()()()()()()()())(()()()(())()()()()()(()))(()()()()()(()()()()())(()()()(())()(())))(()()()()()()(()())(())(()()()(())()()(())))(()()()(())()(()()()())(()()()())(()()()()()()()))(()()()()()()()()(()()())(()()()))(()()()(())()()()(())(())(())(()()())(()())(()())((()))(()(())()(())))(()()()()()()()()()()()(())()(()()()())()()()(())()(())(()()())(()())(()()))(()()()()(())()()()(()()())(()()())()(()()())(()()())(()()()())(()()()())(()()()()()()()(())(()()()()())))(()()()()()()(())()()()()()()()()(()()()()()()())(()()()()()(()()()()))(()()()()()()))(()()()()()(())(())(())()()(()())(())(()()())(())(()()(()()())(()))(()()()()()()()()())(()()()()()()()())(()()()()()()()())(()()()()()(())())(()()()()()()(())(()())()()(()()()())(()()()()()())))(()()()()()()()(())(())(())(()())(())(()()()())(()()()()()())(()()()()()()()()(()()()()))(()()()()()()()(())(()()())))(()()()()()()()()(())(())(()()()()(()))(()()()(()))(()()())(()()()()()(()()()()()))(()()()()(()())(())(())(()()))(()()()()()()()(()()()))(()()()()()()()()()()(())()(()()(()))(()()()(())()()()()))(()()()()(())(())()(()()()(()))(()())(()())(()()()()()())(()())(()()()()()))(()()()()()()()(()()()()()())(())(()()()()()())(()(())(())(()()()))(()()()()()()()())))"

    Returns: 85632404

  18. "()()(())()(()()()()(()))(()(())()(()()()(()))(()(())(()()(()))))(()(())())(()(())(()())(()()()))(()()(()()())(()()()()()()(())()(())()(()()))((())))(()((()()()())())(()))(()()(())()()(()(()()()))(()())()(()()()()(()()))()(()()()()(())(())))(()(())()()()()((()))(())(()(())()())(()()()(())(()()()())(()(())()()(()()(())(())))))(()()()()()((()))(()()()()()(())))(()()()(())(()())()()(())(()()()()(())(()()()()))(()()((()))()(())(()()(())(()()()))(()()(())(()))))(()()()((()))(()(()))(()())(())(()()()())(()()(()()())(()))(()()()(()()()())(()()(())(()))(()()()((()))))(()()()(())()(())(()()()())(()(())))(()()()()()()(()())(()()(())(()()())))(()()()()()(())()()((())(()()()))))(()()()(())()()(())(()()(()))(()()()()())(()(()(())))(()()(())(()()()())(()()()(()())))(()()()(()()(()))(()()()(())(())()))((()()(())))(()()(())(())(()()())((()())())(()()(())())(()(())(()())))(()()((())(()))()(())(()()))(()()()(())(())(()()()())(()(())))(()(())()()()()((())())(()()()))(()()()(())()(())(()())()(())(()()(()))((()))(()(())()(()())(()))(()()()()()()(())(()())()(()(()())(()))(()()()())(()()())))(()()()()(()()()())(()()(())(())()((()())(()()())(()()()()()(()()))))(()(())(())(()()())(()()()()()()()))(()(()())(())))(()()(())()((()))(())(()(()))(())(()()())((()()()))(()()()()(()))(()))(()()()(())()()(())(()())(()(()))(()()()()()))(()(())(())(()(()()))((()()))(()(())()()()(())(()))(()(()())()))((())()((()())()(()))(()()()()()()((()(()))))(()()()()((())())(()()()()))(()()())(()()(())(()(()())))(()()(())(()())()(())(()))(()()(()()))(()((())(())()(())))(()(())(())(())(()(()(()))(())(()(()))(()()())))(()()())(()()(())()(())(()(()()()()))(()()()()())(()()((()))()(())(()()(())(())(()))(()(()))(()(())))))(()()()(())(()())(()()()()())(()()((()))(()())(()))(()()())(()()(()()))(()(())()()()()(()()())()((()))(())(()()()))(()()(()()(())))))"

    Returns: 40756544

  19. "()()()()()()(()(()))()()(()()())(())(()()(()))(()()()()()()()(())(())(()))(()()()()()(())(())()(()()()))(()()(())()(())(())(())(())()(())()(()()()()))(()()()()()()(()())()(())()(()()())((()))(())())(()()()()()()()(()()()())(()()(()))(()()()()()()))(()()()()()()()()()()(()())(()())(())(()())(())(())(()()(())(()))(()()()()()()()()(()()))(()()()()()()()()()(()()()()()())))(()()()()()(()())(())()(()())(())(()()()())(()()))(()()()()()()(())(())(())(()())()(()()(()()))(()()()()(())))(()()()()()(()())(()()()()())(()()())(()()())(()()())(())(())(()()(())()()()(()()())((())))(()()(()))(()()()()()()()))(()()()()()(())(())(()())()(())(()())(()()())(()()()()(())(())(())))(()()()()()()()()()(()()())(()()()())(()()()())(()()(()))(()()()(())(())))(()()()()()()()()()()()()(()()())()(()())(()()()())(()()()(()())(()()))(()()()(()()))(()()()()()(())()(()))(()()()()()()(()()()))(()()()()(())()()(())(()())(())(()()())(()()(()()))(()()()()()(()))(()()())))(()()()()()(()())(()())()(())(()(()))(())(()())(())(()(()()()))(()()()()())(()()()()()(()))(()()()(())(())()())(()()()())(()()()()()()())(()()()()()(()())(()())(()()))(()()()()(())())(()()()(()())(())(()))(()()()()()()()(()()()()))(()()()()()()()(())(()()()))(()()()(())(())(())())(()()()()()()()(())()(()(())())(()()(())()())))(()()()()()()(())()()()(())()(()()())(()()())(())(()())(()()()()())(()()())(()()())(()()(())(()())(()()))(()()()(())(()()())(()()())(()()))(()()()()()(()))(()()()()(())(())(())(()()()())(()()()))(()()()()(())()(()())(())(()()()()()()()()()()()()()(())))(()()()()(())()(()()()()()())(()()()()()())(()()())(()()()(())(()()()()))(()()()()(()))(()()(()())(()())()(()())(()())(()()()()()())(()()())))(()()()()()()()()()()()()()(())()()(()())(()())(()(()())(()))(()()())(()())(()()()()()())(()(()())(())(()()))(()()()()()()()())(()()()()(())()(()()()()()()(()()))(()()()()()()()()(()())()()()))(()(()()()()))((())(()))(()()()()()(()())(()())(()()()(()()))))(()()()()()()(())(())()()(()())(()())(()()())(()()()()())(()(())(()()())(())(()()()))(()(()))(()()()()(())(())(())(()())(())(()(())))))"

    Returns: 175865988

  20. "(())((((((()((()(()()((())()))(()))))))()(((())(()())(()()(()()(())((())(()())())((())((())()()(()))((((()))))))))))(((()))()(()))())(((()())(((())()))))(((())((()((())))()))()((((()(())())(()(((()()(()()()))))))((())(()))())((()((()(()))((())(((()(())))))))()((()(())((()()(())(()))(()(())(())))(((()())))(((()))))((())((())(()(((()(()()))())(()()())))(((()((()()()))((()()())))(())((())(()(()(()()(())(()()())(()(())))())))))(((((())(()))((()())(())(()()()((()))(((()()))))()))(())(())))))))))(()((((()()())()((())((((())())()((()(()))))))(((()))((())(())((())))))(((()(()))(((((())(()()))()(()(()))(()()((()))))())(()())))))(()()((())(((((()(()(()))(()))(((())()()((()))))((())(()(()))(())(())))((((())))(())()(()(())(((((())()())(())((()())))(()((()))))))))((())(((()))())())))((((((()))))((())(((()(()()))(((())))))(()(((())))((())))((()())(((()))))))(()((((()))((()((()))((())())())(((()))((()))))((()(((()(()((()))))((()))((())((())()))))(((((())))(())(()))))((((((())()())))(((()))))((()))((((()())(())))(((()))(((()())(()(()())))((()))((())))(()))(())((((())(()(()))))((()((((())))))))))))(((()(())(()(()())(())(()())((()()))())))((())(()(((()(()())()))(())((()()))(()((()((())()(())))))((()))))((((())((())((()))))(()(((((((()))))))))))))(((((()())()))))))))))))(((((())))(())))"

    Returns: 685209508

  21. "()()()()(())(()())(()()())(()()()()())(()())(()()()()(()()()))(()()(()()(()))(())()((())()))(()(())()(()))(()()()()()()(()()()(()))(()()()()()())(()()(())()))(()()(()())(())(()(()())))(()()()()()(())(())()(()()())(())((()())(()()))(()()(())))(()(())()()()(()())(())(()(()())((())(()))(())))(()(())(())(()()())(()())()(()()()(()()))(()()(()))(()()(()()()()))(()()(()())(()()()()())(()()()(()))(()()())(()())(()())))((()())(()())(()()()()()()()(())()(())(()(()))))(()()()(())()(())(()()()(())(()))(())(()()()(()())(()))(()()()()((())()())(()()))(()()()()()()(())(())(()())(()(()())(()()()(())))))(()()()(())(())(()()()())(())()(()()())(()(()())(()(()))((()))(()()()()(()())))(()()(())(()(())(()))(()()())(()())(()()()((()))(()())(()))(()()()()(())(()(()))(()()())))((())()()(())()(((())))(())(()(()))))((())(()()()()())(()()()()()(()))(()()()()()(()()(()))(()))(()()()()(())(()()(()))(()()()())(())(()()(())(()())))(()()()(()(()))()(())(()(()))(()()())(()()()(()()))(()()(()(()(()))))(()(())()()(()()())())(()((()()())())()(()()(()))()(()()()()())(()()()))(()()()((())())(()()()))(()()(())(())(()())()(()())(()()(())(())((()))(()())(())(()()(())))(()()()()()()()()(())()(()()))(()()()()(())(()()(()))(()(()())))))(()()()((()()))()(()(())(())())(()()(())((())))(()(()))(()()(())(())(())((()())))(()()()(())()()(()())((())()()(())))(()()()(())(()())(())(()()(())(()()(()()()())((())))))(()()(())(())(())(()(())(()(())()(())))(()()(())()()())(()()()(()())(()()()()))(()()()()(()(()()))))(()()()(())(()())(()()(()())(()(())))(()()())(()()()(()))(()()))((()(()))(()())(()())(()()())(()()()(()())(()())(()()))(()((())()))(()()()(())()()(()())(()())(())(()()()()())(()()()()())(()(()))))))(()()()()()(()(()))((())())(()()()(())(())(()(()))(()()()(())(()())()(()))(()()(())()(()(())))(()()(())(()()(()))(()())((()()()())(()()()))(()()()(())()()(())())))(()()()(()()())(())(()()(())(()()())(()))(()()()()()(()(()()))(())(()()()()()()))(()()()()()(())(()()())(()()(())))((()()())(()()()())(())()(()()(())()(())))))"

    Returns: 757038791

  22. "()(())(())(()())(()(()())())(()()()()())(()()()()())(()()()()()())(()()()()((()))())(()()()()(())(()())(()()())(())(()()()()()))(()(()())(()())(()())(()()(())()()()(()))(()()(())(()))(()()()))(()()()(())(())(()()()())(()()()(()())()()(()))(()()()(())(()()())(()()()(()())()()()(()()())()(()()(())())))(()()()()()()()(()())(()()()())(()()())))(()()()(())(())()(()())(())(()()()()))(()()()()()()()(()()())(())(()()())(()()(()())(()()()()()(()))))(()()()((()))(()()()())()(()()()()())(()(())()(()()(())))(()()()()(()(()))(())(()()()(()))(()()()()))(()()()()(()())(())(())))(()()()()()()()(())(())((()())(()))(())(()())(()()()(())()(())(())(()()()))(()()()(()))(()()()()(())(()())(())))(()()(())()()(()()())(()()())(()(()))(()()()()()(()()(())()))(()()())(()()()())(()()()()()()(()))(()()()()(()()())()(()()())(()()()()()()()()()(()()())))(()(()(())(()()))))(()()(())()()(())(()())(()()()())(()()(()))(()()(()))(())(()()()())(()()())((()))(()()()(()()())(())(()))(()()()(()))(()()()(()))(()()()(())()(())()(()(()))(()()()()(())))(()()()()()()()()()(()()()(())()()()(())())(()()()(()()()(())))(()(())()()(())(()())(()()())(()(()))(()()())(()()()(()))(()()()()()))))(()()()()()(())()(())()(())(())(()(()))(()(()()))(()()()()(())(()())(()))((())()()()()(())()()(()()()(())(()(())()()(()))))(()()()(())(()())(())(()(()())()(()))(()()(()(()))(())(()((()))))(()()()()()()(())())))(()()()(())(())(())(()())(()()()(())(()()))(()()())(()())(()()()())(()()()(()))(()()())(()()()(()()))(()(())()(()()()))(()()()()()()(()(())(())())(()()()()()()((()))(())(())(()()()(()))(()())(()()))(()()()()(())(())(()()())))(()()()()()(()())()(()()()()(()))(()()()()()))(()()(())()(())(()()(()()))(()()()()()()(()()()(()())))(()()()()(()()(())())(()(())))(()()()()(()()())(()())()(()))))"

    Returns: 746540537

  23. "((()()))(()(()()((())(())))((((((()())))))))(()()(())(()()))((())((())()((())))((()())((((()(())))))(())(()(()(()()))(()())(()(()())(())))()(()((()))()(()())(()))(((())(()))))(()()(())((()())(()()(()())))(()()()((()))(()()()))(()()()(())))(()((())(((())(())))(()(())))((()())())((())()((()(()))))(()(()((())))()(((()))))))((())()()(()()((())()))(((()())())((())))(()(())(()(()()())((())()))((()(()(()(())())))())))(()((()()()((()()))(()))(()()()(((())))))(()(()()(())(()))()))(()(())(()(()(()(()))))(())((()()(()(()(()))(()(())))))(((()))(()()))(()()((()())(()(()(())))(()))((())))(()()(()(()()()))(((()()()(()))))((()()())()(()(()())))))((((()()())((()())(())))(()()((()))))(()(())(()()())(()()))((())(()()(((()())))))(()(()()(()((()())))((())()()))(())(()(()))((()(())())(()((()())()))(()(())(()(())))(()()(()(()))()(((()))(())(()()))(())))(()(()(())))(()()((()))(()()((()))((()()(((())(()))(((()))))))))((()())((()(())))((()))((((())))(())()((())()))(((())(()))(()()())(()((()))(()())((()())))(()(())(()((())(())()))(()((())(()()))(()()(((())())))(())))((()())()()))(()(()))))(()(()()()((()()(()())))((()()()))())(()()(((()(()))))((())(())(())()(())(()())())(()())((()((()))()))(()((((()))))(())(((())(())()))((()))(()((()))()((())(()(()()())))(()(()))()(((()(())(())))))))(()((()())()(()()))(()(())(()((())())))((())((()))(((()())()))))(((((()())(())))((())((()()))((())(())(())((())(())(()((()())))(()())))))(()(()()(())((()(()(()()()()))))))(((()()()))(()())()((()()(())(()((()))())(()())(((()()))(())))(((()))()))((()()(()(())))))(()(()()())((())(())()(((()))((())((()()))(()))))(()))))(()(())()(()((())()))(((())()()((())()))(())((())(())))(()(()((())())()))(((()()())()))((())(()((()))((()(())))()())())(()()((((())())(())))(()())(()))))"

    Returns: 382374639

  24. "(((((((()())()()()())(((((((()))(((()))((((((()()))))((((())((()())(())))(()()))))))))(((())(((((((())(((()((()()))))((())(())((()(())()))((())))))(())(())())()))(()((((())(()()())))())((())())))())((()(()()()()()))))((())(()(((()((((())((())))))(((()(((((((((())))((())))))))(((((()())()))()(()((()))))(())(()))(()((())((((())))))((()())((()))))(((()())))))))((()))))))))())))()())()))))"

    Returns: 295692011

  25. "((((((((((((((()()()())())))))((()())(()(()(())(((())))))))((((((((()(((()))))())((()((()((()(())(((()(()())))((((()(((()))))))((((())))((()()())))()))((()()())(()()))))(())))))))(((((((()(((((())))))(((((()(()())))((((()((()))(()))()))((())((()))())))))((((())(()))))))(()(((())((((()))(()((()(())(()))())((())((())))))(((((()))(()())))))(()(())((()()(()(())()))((((())())))(()))((((((()())()()))))((((())(()(()((((())()((())))))((()))(((()))((()(()(((())))((()()))))))(((())(()(()()())(())))(()(()(())(()))))))))())))))))((()())))(((())(()))))(()()((((()))(()(((())(()))(()((((()))(((((()))))))(((((())))(()))()))())))))())))(((((()(()(()(((()(((((()))(()()((()(()())(()(()()))))))(()((())()))()))()))(((((())((())()((())(())))))(()()))())))())))((()))))(()((((()(()))(((()()(()))(()(((())))))(((((()))))()()((())))(((((()))))(())(((()()((())((())(())()))))(()()(()(()()((()(()))()))(())))())))))())())((())(()(()))))(((((()(((())((()))))(())((((())(()))(()))))))((((((()((((()()))())()(((()(((())))))))(((()((()(()((()))))())((())()((()())))(()((())))))(())((()(())((())))()()(()((())()(())(((()))(())))()()))))((())))()))()(((((((()))((((())))))))(((()(())()()))))))((())((((()())))))))))((((((())())(()))((()(((((((((((()(((())((())))())))))(((((()())())((()(()))()(()())))))))())))((((()()))(())((()())(()(()(()))(((()))(()(((()))())(()((()))(((()())))(()())())))))((((()))(()(()((()))))))((()))(())))))))((()())))))())(()(((((()((()((((())((())()))()))))(())())((())()))))()))))))))(()()))))"

    Returns: 612202365

  26. "((((((()()))(())(()((()(((())((((((((()((()(())((()())))(((((()))()))((()))(())))))))(((()))((())(((()))((()(())))()))))((((((()(((()()(()()))())()(((()))))()())(()())()((()))))()))((()(()))((()(((((())))((()))))(())((((())(()())((((()(()))(()()))(())())))(((())))))((((()(()(()()))(())((()()(())((()))(())))(()(()()))))(((()(()))())))()(((())()((())(())))))))(((()(()((())((())((((())())(())))))))()(()((((((()(())(((()))))((())((((()()(())))))))((()()))((()(()))()))((((()())))((((())()((()())(())))(()(((())()())((()())()()((()))((())()())())(()())))()((())((((()(((())))(()))()))((()())(())((()())((())()(((()()())))())))(()()(()()(()((((()())()))(()))()))((()(())))))))))))())))((((((()(()()))))))()((()(())())))))))))(()()))(((()))((((((()())(()(((()((()))(((())(()))(()(()))))))))))())()))())))))((()(((((((((()))))))(((((((()(()(((((())))(((()))))))((())))()(((((()())(())(((())())))))((()()(((()))(()((((()))(()))()))()((())(()(((())))(((()))())((()))))))()))(()())())(((()(((())))((()()()())(((()))((()))))))(())(()((((((()()))))))))))())((((((())))())(((()()))((((()()((()()))((())))()()))))((()())(((((((()(((()())())(())(())())))))(()))))((())()())))(((()((())(()(((()))())(((())()((((())))((((((((()))))))((((())())(((((())))))))))((((()))))()))((())((()))))))))()())(())())(()(((((()(()((())(((())())()(((()()))()))))(()(()((((()((()))((()(()()))(()())()))))((())((())(()())())))()))((()())((()))()(()((()))))((((()())()(()))(()((()(())))()))()))()(((((()))))(((()))()(()(())(()))))()))()()((((((((()))(())())((()()(((()))(())())))(()()))()(((((())(()()))((()))))((())))((())())())((((())())(((())())))(()))(()((((())(()(())()(((()()(())))()))((())((())))(((()(())(()(())))())(((()())(((())))))(())))()(()))(((()()(((()))(()(())))((()(())))))))())))()(()((())))))))))((()))((((((((())())))((((())())(((()((((())))))((((())()()))(())))))((()((((((()))))()()())(()())(((()(())))))((((())()())))))))(((()((()))(()(((())))((((())))((((()))))))(((((()()))))((()(()))()))(()))()))))((())))))))((()))))(())))"

    Returns: 672242399

  27. "(()(((()(((())(((((()(((())(()))(()(()((((()(()((()))(())))()((()((((()((((())))))))(((()()))(((()))))))))(((()))(()()((())))))((((((())(()((()(()()))(()))(((((((()))))))()))()(()((()(())))())(()((()())(())()(()())))))(()()((()(()())))((((())))(((()))(((()))(()()(()))((((())())(()())()()(())())())((())))()())()())())(()())((((()())()))((((())(((()((())((()))())))(((())())())))))()))))))(()))))(()))))((()(()(((()((((()(())(()()()(()(((())))))(()))(())())))))())))((()(((((()))))(()((()())))(((()()((((()))))()(()()))((())))((((()()((())))((()))((())(((()((())))))))()))((((()()((()())(()())()))))(((((()())))((()((()))((())))(()))(()))((((((()))))(()(((())))(()((((()))((()()()))))))((())(()))(((()))((())(()(((()()))))(((()(()))(()((()))))()))))))((()))))()((()))))(((())())(()(())(()())))(())())((((()((((()((((()())()(()())((((())))())))((((()())(((()()))((())))((()((()))(()))())))())))((()(((())((())(())(((())))))))((((()()())())((((()(())())(()()()))))((()))))(((()(())((((())))()))())((((((())))(()(()))))))))))()))(((()())))()((((((())())(((()()(()))))))(()())))(()()))((()((((((((())()))))((((()))())((((((()()))(()()())(())())(()))())())())(((()((((())())())))))))))())))(((((((()())()()))(((()())))))((((((()))()())(((())))(()(((())()()((()()))())(())(()(()(())(()(())(()(())(()())((())))))())((()())))()))(())))(((((()((((())(((()))())()))))))))(()((((((())))(()(((((()((())))()(((())))))()))(((((()(()))())(((((()(((((())))))((((()(()(())((())()))(()())))((()))))))))))))()))))((((((()(()(((()())))))(()(()(()((()()))))))())))(((()))))()()))))))((()((()(())())()))(()))))))"

    Returns: 597791004

  28. "(((((((((()((()()))((())(((((((((()((()(())(((()))))()()(()((((()())(()())()(()((()))(())))(()(())))))(((()()()))(()(((()(())()()(((()))))())((((()))((((()()))((((())))((()()(((()())))))))))))))())(())()))(((())(((()((()()()()))(((()(())))))(((()())(((())()())))))((())((((())(())))((()()))()(()((()(((())(())))())))())((()(((())()(()())))))(((((())((()())(()))())()))())))((())((())(((()(((()))((())())))(()))(((()((())())((())))((()))(())(((((())())))((()))))(())()(((((())(()(())))((()())(()(()))))(()())())(()())))(((()(())())()))))((((())(((()))()))(((())((()((())))()))((()))))(()((((())(())((((()())))(()(())))))))))(()))))((()()()(()))()((())))))(((()())((()()))(((()(()())())(((((((((())(()))(())((((())(())))()))(((((((()))))(()((())))))(())()()))()))(((()((())(()()())))(())((()()))()())((((((())))())(()(((()))((()())))())(((((()))()((((())(((())())))()((((()(())(()))((())(()))))))))))))(((()(()()(()))((())(())(()()((()()(()))((((())))))))))))))))))())))((((()))((((((()))()((())))(())(((()))((((()())()()))()()))((((()(()())))))))()))))(((()(())((()()(((((()))()()((((())(()(((())((((()(())))))())((()(()(()(())))))))(()))((()()(((((()))(((()))((()((()))()(())(()))((()))(()((()))))(((()))(((())(()((()(())))((())))(()))())))))((()(((())((())())()))))((()())(((()))())(())((()(()()))((((()))))))))(((((())))())()((())))((()))))))()()))))(((())((())((())())(((((((()()))))((()))((())()))(()()))((()))((())(()((((())((()())))((((()))()((()((())(()))))()())((((((())()()(()((())(()))(()(()(()(((()(()()()))())(()(()(()(())))(((()))))))))))((())((()()(()(((()))))))))))((()(()))((((()())((())()((())))))())())())))((())()))))(((()()(((((()))))))((()))(((()()))())())((((()))(((((())((()))((()(())()))())((()()(()(()()(()()((()(())))))()()((((((())))(()))())())(()((())(((())())((()()))())())))())))))((())))))))((((())()()))((((((())))()))((((()(()(())())()()))((((()(()))((()(())))()((((()))))))(())()(()(((((()))()))(()))))))))))(())))((((())(((((())((())()))))()())()()(())))((((((()((()))((())))(((((()(())(((((())))))(((()))((())))))(()((((()(()))))))))((((((())(((())())))((()((()))()))))((((())))(()()))))))(()))))((()((((()()(())))))(())))()))((((()))())((()))))))))(())()))())))))"

    Returns: 272476957

  29. "()()()()()()(()())(())(()())(()())(()())(()(()))(()()()(()))(()()()(()()()()(()())))(()(())()()()(())()(()(()())(())))(()()()()()(()())(()())((())())((()())(()(())())))(()()(())()(()()()))((())()()()(()()()()(()()))(()()()()()()(()()(())(()()())))(()()(()()())(()()(())(()))))(()()(())()()()()(()())(()())(()()())(()())(())(()(())()(()(()))(()()()))(()()()()()())(()()()(())()())(()())(()()()())(()()()(())(()(()())))(()()()()()()(())((())(()())()))(()(())(()())(()())(()()()()()))(()()()(())(())))((())((())())()(()()()()())(()(()()())(()()))(()()())(())(()()(())(())(()()()(())))(()()()()(()(()(()))))(()()()()(()(()()()))(()()))(()()()(()))(()(())()()(()()())(()()()()()(()())(()(()))))(()()(())(())(())))(()(()(()))((())()(()(())(()))(()()))(()()(())(()()())(()()())()(()))(()()()()()()(()()()())(()()(()())())(()()()(()())(()()())())(()())(()()()(())()()(()()()()(()))(()()(()()()))(()()())((())(()((())())))))(()()(())(())))(()()(())(())(()())(())((()))(()()(()()()())(()(())(())))(()()()()(())(()())(()()())((()()))((()())(())(()()()())))(()()()(())((()()))(())(()())())(()()(())(()()())(())(())(())(()(()()))(()()(())(())(())(()()(()))(()(()()()())())(()()()(()(())())))(()()()((()))(())(()()()()(()))(()(()))((()()))(()()()()(()())()(()()))(()(()()()()(()))))))(()()()(())(()(()))(()()()(()())()(()(()())))(()()()(())(()())(()()())(()(()()))(()())(()()())(()()()())(()()(()())(())(()()(()))))(()()(())(()())(()()()(()))(()()()()())(()()()())((())))(()()(()())(()()(()))(()(())))(()()()(()())(())()(()()()()())(()()()()(())(()()()(())))(()()(()()())((()))()(()()()(())(()))))(()()(())(())(())(()())(()()()(()))(()()(()))(())(()(())())()(()()()(())))(()()()()()(())()(()()())(()()(()))()(())((()))(()()()(()())())(())(()()(())(()()())(()(())()()()(()))))(()(())(()())(())(())(()(()))(()()()()())(()(())(()()))(()()()()(())(()())))(()()()(())(())(())(()())(()()()()()())(()()()()(()())(()()()))(()())(()()()()()(()())()(()()))(()(()))(()()(()(()))(()())(()()))(()()()(())(())(()))))(()(())()()()((()))(()()(())(()))()((()))(()()(())(()))(()()(()()())())(()()()()()()()()(()(()))()(())()(()()(()()))(()(()))(()(())()(()))(()()(())()(()))((())))(()()()(())(())(())()()(()())(()())(()(()())(()()((()))()())))((())()()()(()()()()(()()))(()()()(()))(()()()(())(()())(()))(()()())))"

    Returns: 679196598

  30. "((()(((()(((((())(()(()(()((()))(((((())))((())((()())))()((())()(((())()))())(()))()))))(((((()))())())(())))))((()))((()((()(()((((()))(((())()))(())))((((()(())())()((((()(())))((())(()((()))))())))())))))))(((()()))((((((()(()(((())))))((()()()(()))(())(()()(())(()(()())(()))()))(((()))))(((()()))))(((()))((()(((((()())))())))((())())))(((())((())((())((()((((())))))())(()))(((((()))(()(())()(()(())(()))))))))(())))))((())))))(()((()(()(())((()(()))))((((()((()()))))((())()(()()((()))))()()(()))))((()))((((()(()(())()()(((())(((((()))))()))(((())()(()(())()))((()()((())())(()))((()(()))))))))((((((())(())((()((()())(()()))((())))()))((()()((()(((()())()((()())(((()))()))))))((()(()))(()))))))(((()())(()()(((())))((()(())))))()((()))(()(((()()()()(()(()))))((((((())))())))((()(()((())))))))))((((())((((())()))))(((())(()(()))()(()())(((()))(())))((((()()))))((((()(((()))))))))(()())())()((((())(((()(()))())())(())))((((((()(()()(((())()))))((())()(()(((()))))))()))((()))((())))(()()()()(((())()(()))()()()))()))))((((()((((((()(()(())())))))((((()())((()))))((((()(()(()(()))()())())((()())(()((())))))(()()(()((())))())())())(()((()(()(()))(((()(()())((((()))()()()))))(()()((())())))))()))((()((()()))(((()())))(())(()(((()(())))))()(()(((())))))((()(()((())((())()(())((()((()))()))))))))(((((()(()()))())())))(((())((()((()((())))))((()))()))))))(((()(()(()((())(()())((()(()((())(()()((()))))))))((((())(()())()))())(()(((()(()()(()()))))((())(()()())))()))((((()))())(())()))))((())(()))))))(()()(()(((((()))(()((()))))()(())(((((()(()))((()((()))()))(())()())((()()(((()))((())()))()())))((((()))))))))((((()((((()))(()))(((()))))((())(()()))))((((())()))))(((()()))))))(((()((((((()))((())()))))(((()(())(()(())))))))))((()(((((())()(()))))(()(()))(()((()()(()(()))()(()()())((()))(()((()())()()(())))(((()()())))))((()(((()))(((((())))()))(()((()(()(())())))()))((()))((()()())(()((((()())(()())))((()))))))((()(()((())(())))(()((()))((((())(())(()((()))))())((())(()))((())(())(()()))))((((()())))((()))(())())((()))((()))))()(((()(()(()))))(()((()))))))))))))))((())(())))(()))))"

    Returns: 912115553

  31. "(((()((((()(((()))(())(((()))((()((()((()))())(()))((()())(()(((()())))))))((())((()(()))(()(()))())((()((()))(()))))))()((((((()((()))))((((())((()())()((())((((()()))((((())())()))))((()((()()))((())))()((((()))()())(()(()((()(())(()((()()))))(()()(())))))(((())(()()(())(())())(()((())(())(((())))))(()()))))))(((())(((()())()((())(()())())(((()(((((())))()())(((()))((()))))()))))((())))(((((())))(())((()())(((()(()(())))))(())))))))(((()))))()))))((((()()(((()))(((())(((()))))))))(((()))(()()()())()))(((())())(((()()(((())((()())(()(()))))(()((()))))((()((()()(())))((())))(()))()(((())((()()))))(((())(())())(()((((())((()))((()))))))((()((()())((()))))(())))())()(()((())))(((()()))())(((()))((()((()(((())))))(()(((((())())())((())))(()((((())(()()())))(())(((((())))()((()(()())(())())((()())))))))))))(((())((((((()(((())())(())(())))())((()(()(())))(((()()(()())))(((()()((())))(()(()((((()))))(()()))()((()))))((((()(()(()()))))(()(())))(((()))())((((())()(()))()((())))))))))((((()))))))((()()(((((()))))))((()(())))))()(((())()(()(((())(()((()))())()))((()))))))(((((()(())))(((())))(((()))(((())((()))))((()((())((((()()))))))((((())))))(()))))))))))))((((((()))(((((())()(((()()))()((((()())())))(())))(()((((()))((()()()))(())((((()))((()()))(()(())()))(((())(()()())))(()((()))((((()))(())()())))(()()(()))(((()(()))(()()))(((((()()(()(()())))))((()))(())))))))(()()(((((()())))(())))))))(()((((((()))(()(()()(()()())(())))())(())((((()(())))((()(()((())())))(()())(()((())(())(()))))))))((((())))(())((()))(()(((((()()))(()())(()())(())(()))(((())())()((())(((()())))()(((()))((())((()))((()((())))()(())))(()((()(()(()))(()))))))))))))))))((((((()))))(((())(()(()((()(((()))(()(()((((()))))))))))))))((((())((()((())())))))))))))((())))(((())((())))(()(()(()(((()()(((())()(((())))))))(((()())(())()))))((()()))))((((())()))(()))))))()))((()(())((((((()))(((()())(()((())))(()(((()))))))))(((()())(((()()))((()(((())))()))))(()))))))"

    Returns: 407302277

  32. "(()()((())(()())))(())((()()()())(()))(()(()())(()))(()()((((()))))((()(()))((())()())))((())()()(()(()()))((())())(()(()))(((()))))(()((())(())()(()(())))(()(()(()))(())))((())(((())(((()))))())((((()())))(()((()(()))(()(())))(()()(())((()()))(((()))(((()))))))(((()())())(((((())((()())))()))(()()((())())(()()(())))))(()()(())(())(()(()()(()(()())))())())(()()(()(()))(()((()(()))))))(()()(())())((())(()()()()(()()()((())((()(()()))(()()))))((()()(()(()(()))((())(())))()))))(()(()())(()(())((()()())(()))(()(()()(()))()))(()())())(((()(()()))(()))(()())(()((()(())(()())(()()(()(()))(())((())(()())))))(((())))))(()(())((()())((()())(()((()))(()(()())()(((((())(())))()))((())(()))))))(()(()(()()))()(()()()(()()))))(()((()())(((()()))))((()()))(((()))())(((())(()()))())(()(()()(())()))()(())(()((()())(()()))(((())))()(()()()((())()())(()()(()(()()(()))(())))(()()))((())(()()(()()))()(())))(()(()())((()))(()()()()(()))))(((()))(()())(((()())))(()(())((()(())))(((()))(()))()(()(())(())((()))))(()()()(())(())(())(()((()))(()()(()())(()(())(()((()))))))(()()((()())((()())(())()))(()((())))(()()(())(((())()()((())((()))(()))))))(()()(()(())()()(()(()(((((()))())))((()))((()(())))))())(()(()(()()()))()((())())(((()))(())((())(())(((()()))(()((())())))((())()(()())()(((())))(()()))(((())(()((()()())()))()((((())())))(()()(()(())((()()))))))(()()))))((()()(()(())()))(()((()))(()(()((()(()(())((()())((())))))))((()(()(())()))))((()(()))()()(()()(()())(((())))))))))(()(()())()(()()((()))())((()))(()(()((()(())))((()(())(()())))(()((())())()((())((())((()))((()()))))))(()((())()())((())())(()(()(()))(()()((()()()))(()()))((())((()(())))))((())()()(()())(()(()(()))((()()))))))(()(()()()(())(())(((())))((())))(()()()((()(())())()()()))()(())((()(())(())())(()(())(()(())))(()())))(()(((()))(())(()()(((()))))()(()()((())()))(()(()))(()(())(((())))((()()))()))((())()()(()((()())(()())))(()((()())(()(()))(())))(()((()()()()(()((())))))(((())(())))(()(())(()())((())(((()())))(()())((()(()))))))(()(())(((())))()(((()(()(()))))(()((()()))))((())((())()(())((((((()))))()))((())()(((())(()(())())))(()()(())((()(()(()))())))((())()(()())(()((()(()))(()(()))(()((())()()()))(())()))((()())(()())))))(()()(()())(()()(())(()()(())(()()((())))(()()()()((())((())(()))((())))()))(()()())))(()(()(()())(()()()))((()((()())))())))))))))"

    Returns: 985251352

  33. "()()()(())(()())()(()())(())(())(()(()))(()()()(())())(()()()()(()()()))(()()()(())()(())(())(()()()())(()))(()()())(()(())(())(()()(())(()())(())((()())()())))(()(())(())(()))(()()()(()())(())(()()(())()))(()()()()()(())(())(()()())(()()()))(()()()(())(()()())(()()()()))(()()()(())()(()()))(()(()())()()()()(())(()()()())(()()()()()(())())(()()()(()))(()()()()())(()(())(())()))(()()()()()(())()(()())(()())(()()(()()))(()())(()(()()))(()()()()(())(()()()))(()()()()()()(()()()()()(()()()))(()()(()))(()()(())()(()())(()()))((())())(()()(()()))))(()()()(()())(())(())(())()(()(())())(()())()(())(()()()()(())()()())(()()()(()))(())((())(())()()(())(()()()())(()()())))(()()(())()(()())(())()()(()())(())(())()(())(()()()()(()))(()()()()())(())(()()()()(()()))(()()())(()()()())(()()()(())())(()()()(()))(()()()()()()((()))(()))(()()()()()(()(()))()(()()()()(()))(()()()()())(()()()()(()))))(()()()(())()()(())(())(()()())(())(())(()())(()()()(()()()()))(()()()()()(()())(()()))(()()()()(())(()())(()()()(())(())))(()(())()(()())()(()(())))(()()()(())()(()()()()(())))(()()()()()(()())()(()(())))(()()()()()()(())(()()(())()(())(()()(()))(())))((())(())(())(())()(()()(())()()(())()())(((())))))(()()(())(()()()(()))(()()(())()(()(())()))(()()())(()()()()(()()))(()()()()(()(())))(()()()()()()()(()()(()(()))))(()()()()()()(())())(()()()()()(()(())(()))(()()()()()()()))(()(())(())(()(())))(()()()()()()()(())(())()(()())(()())(()())(()()(()))(()()()())(()()()()()(()())(()()()()()))(()()()(()())(()()())(()())(())()(()())))(()()()()()(())(()())(()()()())(()(()()()))(()()(()())(()))(()()()(())()))(()()()()(()()())(()()())(()())(()()()(()())(()))(()()()(())(()()()()))(()()()()()()()(())(()()))(()()()()()(()()()()())(())(()())(()()()(())()()(())()))(()(())()(())()()(()(()))(()()()()()))(()()(())()(()()()()(())(()))((()()())(()()()()()()(()()()))))(()()()()(()(())())(()()())(()()(())(()()())))(()()()()()()(()())(()()()(()))(()()(())()(()))(()()()()()()((()))(()()()()())))))"

    Returns: 876392941

  34. "((()((())(((()((((((((())))))))(()(((((((((((((((((((()))(())(()()(()(((())())(()()((())))))))()((((()))))))))(()(()(()((()))))((()))))))))(((((()((())))(()())((()()))))()(())(()((()(()())(()((()(((())(())(()(((())))()(((()())(())))))()))(()(())()())()((((((((()()())())((()((()(()))))(()))))))())))))(((()(()))()((())()(((((((()))))))(()((()((())))(((()(()()((())(()(())((())()))((())))))((((()()))()))())))(()))))(()))())))))((())((((()((((()(()))(())())(((()(()))((()(()((()(()())))((())(()))))(()()))((((((())(((()()))())())))(()((())))(()((()(()()(((()))((())((()))()((())(((()))))))(()(()(()()()))((()((()())()()()))))(((()((())(())))()()))))(()(((()((()))(())))((()((()))))))(())(())((()))))())))((()()((()(((()(((()((()()))))))(((()())(()))(()((()))))((()())(()()))))())(()()(()))))((())))))())()))((())))((()((((((()(((((())))(((((())()(((()))())))(((((()))))))((((()))((()))(()((()((())))((()))()((((()))())((()))((((()()))((((())))()))((())))((((())((()())())())(((()))))(()(())))((()((()(((()))))()(()((()((()(()(())))()))(())((())(()(()()(())(()))))((()()((()())()))()(((()))))))))(((((((((((())))()(((())((()())()))(())))())((()())()()))))()(())())(((()(())))()(()))))))(((()(()))(()((()()))())))(((()))))))())))))()((()((())))))()))((((((())(((())())()()())((())(()((())(())((())())))))())((()))(((((((())(())))))))))(()(()))(((((((()(()))((((())())()))))))())())))))(())))))))(((())((()(()(((()((())(((())()))((((((()(())(())))()))))((()))))()))((((())()((()())((())((((((())(()(()())()))())(((())((())(()((())))))()))()))))(()((((()(()(((()))))())((()))(((()()))))))))((((((()(()))))))(((((())((((())(((())))))((()()((((((())(()))((()((()))())))(()())((((()))(())))))(())())())))((())((()))))())))()())(()(()(((())((()())()(())()))())))(((()))))((()((((())((()))))))((((((()((((())((())(()))(()(()((()())))))((((()))))))()))(()))))())))))))))((((((((((((())(()()))))((()(((((()())(((()(()))())))))))))((((()(((((())()))((((((())(()((())(()))))(()(()((())(((()))(((()))()))()))((((())))()))))((())()))()(((())))((()(())))())(((())((((())))())()(()))((()()(()()(((()(()()))))))(()(()))(()((()())(((()(((())))))()))))((((((())()))))((()((())(()(()(()()(())()(()))))((())((((()))(((()())((()))()))))()))())()((())(())))))(()(()(((((()))))((((()()))))(()((((())(((())))(((((())((()))()((())()()))))(((((()(()(((())())))))(()))(((((((())))((())))))))))))))))))))(((((()))()))))))))())())))()((())))))))(())))))))(()))"

    Returns: 830957471

  35. "((((((()((((((((()(((((())))(()((()((()())((()))((((())))())((((((()(((()))(())(()((()())(()))))(((()))))()((((()((((())((())))())(((()(()))(()(())))))))())(()(((((())))((()((()((()())((()(())((()(())))())())))))))))(())))())(()((()(()))((((())())))()(()))))((((())((((())(()(()()()())))(((())((()())))))((()))))))))))(((()()(()())))))))((((((()))())))(((((((()()()))()((()()()))))(((((()()())()(()))(()())())(((()(())()))))))(((())((()))((())))))(()((()))()((()((()))((((()(())()))())(((()(())))))()()))))(((()()((()))(()()())((()))(((())((((())(((()()))()))(()(())(()(()))))))))((()()((((((((((()))(())))(())(())())(()(()))))))()))(()(()((((())))((()))(()()())))())(((((((()))))(((()())((()(()))(()()(()((()))))))((()()))(((((()()))(()()))(()())()((()(())((())())))(()))(((()()))(())(((((()())()))))))()))()((())(((((()))((())))(((())(()))(()()))(((())))())))))))(((()()))((((((())((((()(()))(()(()())(())((()(()))(((()(())(()())((())(())()())(()())))(()(())())(()(((()())(((())(()()))))))))((()(()(((()))()()())))))))))))(())(((((()(((())((())(()())))(((())(((()(())))(())(()())((())())((())((()(()))(())(()(()))(()(((())))(()((())(()(()())))))))()((()())(((((()())))(((()(())()(((())))((())((()))(()))))))))))(((((())((())))))(())))(((()))()))((((((()())(())))(())(()(())))((()(()()))(()(()))(()((())((()(())()(())))))(())))())(()(()))))(()))))))()((((())()))((())))))))))((()))())())(()(((((((((()(()(())(((()))))((((((())))))(())))))(((()((()((())))((()))(((()))(()((()))))((()())(()()(()()((((())))(((()()())))))))))((((()()))((((()))((()(((()()))))))((((()(())))))(((()((())()((())((((()())(()))))))((()()))))((()(()))(()(())((()()))()((((())))(())(())))())((())))))(()((((()()))))))((()))))(((()(((()))))(((()()((()((()(()))))())()))(()))())()(())((((((()())))(()()))()((((((((()(((())((())))))))(((()((())))))))())((()))))))))))(())()(((((((()((((())(((((()))()())))(()((((()())))())(()(()())(((()(()()))()(()))(((())))(())))))(())(((()))))(()((()))((((()())))())()((()((((((()()())))(()()(((())((())(())(()((())(((()))())))))((()()(())))((())(((())(())))))((())))()))(()((((()()))(((()())((())))))))(((()()())((())(()(()()(())(()(((())())))))()(()()))()))()))))(((((()()(()())))))))((((((()))((()))))((((()()()())(()())(()())))))()()))())((()((()()))())))()))))(()(()))))))))((((((()((()))((()()(((()())))()))))()(((()(()))())))((()))())(())(()))((()))))))))())))"

    Returns: 410572180

  36. "()(()(((()(()())(((())())(((()(()()))(()()))))((((()()))))(((()()()()))(()())((())(()))))((()((()(())(())((())((())))(()(()(())()(((())(()()(())((()))((())((())))(((())())))))))))((((()()())())(((((()())(()())))(((())))))(((((())(()(())))((((()(()))))))(()()))))(((()())(()())(()))((())(())(())(((((())(()))))((()()))(((())(()(()(())))())(()((()())((())(())((()))))))())(((((()))))((())(()(())))(()(()(((()))())())())(()(())(()((()())((())))))))))))()((()((()(()()(((())(())))(((()((())(())()))()(((())(())())))(((())(()()(())(()()))))((())((())((((())(())))))((()(())(()()))))(()))(((((())(()((()())))))((())())()))))))((()(()()(()()(()(()())))(()()))((((()))))(((()(())))(()((())(()))(((())(()))(((()()())(())))(())))(((((())((((())()))(((()))))(()))(())(()()()))(((()((())(()(()())))))))((()(()((((())))(())()(((()))(())()())))(()()()))(()(())(((((())((()))(()()(()))))))())(()(()((((())(())))))(((()))(()(()())())((()((()))))))((((())(()(())((())())(()))))(()()((()((()(()(()())))()(())()))((()(()))))))(())((())))(()(((((()))(()(()()))()))(((()()((((())((())))))((())()((())))))))))))))())(((((((())))((())((())(())))((())(((()()(()))((()))(())))(((()))((((())))(()()))))))((((()())(()))(()()((())()))())((())((((((())))))(((()))()))((())((()((()))(((()())))((())(((()))))))))))(()(((()()()((()()()()))))(((((())))(()()))((((())))(((((())(()(((())))(()((())())))((())))())())))))((()))((())((())(((()()((())((())()(()))((((())))(()(((((()))))(()))(()))))))))))(((((()()((())((())))))(((()())())((()())((()(()()(()))(())))()(()()(())(((((()((()))()))))(()(()())))))((()()(()(()(()())()))(()((()(()))))(()((())(((())(()))()))()())))((()(((()))()))))))))((((((())((())(())))(()(((()))))((()())(((())(()))(()))(())())()(((())(()))(()())())))(()(()()((())(()((()))((())(((()))(())(()))(()(()((()))))(()(((())))((()))))))))(((()()((()(()()))))(()(()((())))(()())(())((()(()))(()((()))))()(((())((()))((()((())()))))((()(()))(())))))((())(()(((())((())())(()(()))()))((((())(())(()(((()())((())())))((())))))(())))))))))"

    Returns: 772565285

  37. "()()()()(()()(()))(()())(()())(()()(()()))()()(()())(()()(())()(()())(()()(()()))(()()()()))(()()())(()()()()()()()(()(()))(()())(()()()()()))(()()()()(()(()))())(()()()()()(()()()())(())(()()())(()()(())()(())))(((()))(()()()()())(()()()))(()()()()()(())()(()()(())()(()()()())))(()()()()()(()()())(()()()()(())))(()()()()()()(())(()())(()()(())()())(()()()()()(())(())(())(()())))(()()(())(()())(()()(()))(()()()(()()(())()))(()()(())(())(()()()))(()()(())()()(()())))(()()()()(()())(()())(()()())(()()()())((()))(()(()()()()))(()()()())(()()()()(()()()()(()()()))(()()(())(()())))(()()(())(())()(())()()))(()()()()(())(())()(()())(()()())(()()()()(()())()(()())(()))(()()())((())()()()(())((()))(())(())))(()()()()()()()((())(()))(()())(()()())(()()()()()()()()()(())(())(()()(()))(())(()()(()())(()()))(()())(()())(()()()(())(())(()()))))(()()()(())()(())(()(())(()))(()(()()()()))(()()()()()(())())(()()()())(()()()()(()()))(()()(()())(()()))(()()()()()()(()))(()()()(())()(())(()()()))(()()()()()()(()())(())(()())(()())(()())(()))(()(()())()(()())(()())(())(()())(()()())(())((())())(())(()()()()()()()(())(()()(()))(())()(()()()(())())))(()()(())()()(()()())(()()())(()()()()()(()())())(()(()))(()()()()())(()()()(())()(()())(()()(())(()((())))))(()()(()))(()()()()()(()()())()()(())(()()()())(()()()()))(()()()()()(()()())(())()(()())(()()(()()))(())))(()()()(())(()()())(()()()()(()))(()()()(())(()))(()()()()(()))(()(())(()())()(()))(()()())()(()()()(())(()()()))(()()()(()()()()()))(()()()()()(()()())(()()()()))(()()()(()()()(())(()))(()()()()()(())(()())))(()()()(()()()()(()()()()(()()()())))(()()()()(()())(()(()))(()()()))(()()(())(()())(()()()))(()()()()()(())(()()())))(()()()()()()()(()())(())(()())(()()()())((()()))(()()()())(()()()()(()()))(()()()()(()()()())(())(()())(()())(()()()()(()())))))(()()()()()()()(())(()()()())(()()()()()()(())())(()()(())()(())(()()()))((())()()())(()(())())(()()()()(()()))(()()()()()())(()(()))(()()()()()()(())()(())(()()())(()()))(()()()()()(())()(())(())(()()())(()()()()())(()()()(()()()()))(()()(())()(()())(()()()(()))(()()()()(())(()(())))(()()()()()(()))))(()()()()(()())()()(()())()(()())(()())(()())(()())((())()()(())(())()))((())(())(()()())(()(()))(()()()()())(())(()(()())))((())()()(()())(()()())(())(()()()())(()()(()))(()()()(()())()(()(()())())(()()))(()(())()()()(())))(()()()()()(()())(()())(()())(())(()()())(()(())()()(())(()()(())(()))))))"

    Returns: 714450782

  38. "((((()((((((((())((()((()())(((())(())(((()()(()((())(()))))((()))((())))((((()))()))))(()))))(()(()(()((())()))(())))))))))(()(())))(((((((())(((((())((()((()((()))))(()))(())))(((()))(((()((())((()))(())))((())))))(())((()())))(((()(((())(()))(((()())(()())))))((()))())(((()())())))()))))((((()((((())((((()(()())(()())(((()))(())))(()))()))))(()()(((((()()())())))()((()((()((((()())(())())()((()((())))(())((())))()(((((())))())(())()(())))))((()())((()))()))(((())((()(()()((())))(((((())))((((((())((())()()())(()((())))(()))()))))))))))(()()())((((()))()()))))))))(((((()((((()))))))))())))))((())))(((((()()))(()(()(((())))))((((((()()())))(((()))((((((((())((())))((())((((((()()))))((())((((()(()))())((()(()((())))(((()(()))))(())))))(()()))(((())(((()))(()(()))))(()(())))())))((((((()))((()()))((((()))))))))))(((((())))))))))(()))))(((((((()))()((()(())()(((()()))))()((())())))()))))((((((()()(((()()))()))((())()))(((()((((((((())))((((()))((())))(()(((()((()))))(())))))(((((()))))((()))((()(()(())))(()()))((()((())))((()(()))())((())((())))((()(()(()(()())))((())((()))(()(()((((())))))))))))((((()()))(()(((())))))(((())((()(()()))))))(()()))()(((()(()(()(())(()))))((()(((()))))((((())()))(((()(())))))((()(((())((()(())(((()(())))))))))))())((((((())))))))))))))((((((()())(((()(((()())))(()(()))))((()()((())))())))((())(())))(((())((())(((()())((()(()))((())))))(((()())((()))(((()())(()()(()(())))))()()))(())())()(((((())))())()))))((())())))(((((((()((()))(()(((())))))))()(((()))((()((()(()(()((()())((())()())(()))()))())))))))((((()())())(()())))(((((()))((()(())()))(((((((()((())(())((())))(((()((()))(())(()(())))(())(()))(()))(()(())))))((((()))(()(()()(())(((()()(()(()())))))())))(())))((((((()((()()()))))((()))))())))))))((()((((()))(()))(())(((())()(((((((()(((())))())()))(()))(())))(()(()(()())(((()(()))(()())((()()))(((()(())))(()((())))()))()(()(()()()))))((((((())()))((()((()())))))(((((()())(()())()))((((())(())))(((()(())(((()))))))((()))))))))))((()(((())()((()())))(()))()))(((((()))(()(())(()()())))())((())())(((((()))))(())())(((()(())())(()))))))((((()()()))(((()))(((())))((()))))((((((())((()))())((()())()()(((())()(((()))(((()))))))))((((()))((((((())))(())(()))))))()(()())))((((((()))))((())())(((()((())))((((()((())))()))))(()))))(()((())))))))))()))()(()))()))))(()))))))(())))))"

    Returns: 387591377

  39. "((())((())))((()()(()))())(()()(()))((()(()))((()()))())(()()(()(()()()())())()((()))((()()()))(((())()(())))(((()())(()))((()()))()((()()())())(()(())((()(()((())(()))()(()(()))(()(()())(()(()))(((()()())()))))))(()())(()))))(()(()())((()()())((())))(())(()()()(((())))((()(()))(())())(()())((()(()())(()()(()())((()))((()))(()()((())(()))))(())(((())(())(()(()())))((()())((())()(((())))))(((())))(())((()()))(()())(()))))))(((())())(()((((())(())))((())(()())())(()((()()))()(()(()))())))(()()(())(())()(()(()))((())(())((()())))(()(()))((()((())(()()())))(())((()))(()))(()((()((())))()))(()()(()((((()))())(()(()(()()(()(())))(()))(())))(((())(())(()))((()(())()()))(()(()(()()))(()(()())(()()))(()))()(()(())(()()(((()()())))))))))(()()((()(()))(())(()(()(()()(()))(()))(()(()()(())(())()))((())))))((()())(()(((())(())))()))(()((()())())(())((()()(()())(((()()))))(()(()())))(()((()))(()(())(()(())()(())(())(()((()))(()())((()()))))((())(()())((()()())(()((()())())))((())(((())))(()()(()())()(()()((())(()()())))(((()()()))()))((()())((()())((())((()))())))(()(()))(()(())()))))(())))(()(((()()()(())))(()(())))((())((())())))(((()))()(()(())(()))(())(()((()))(()()()((()))(((())))(())((()))(()((()))((()(())(()(())()()))((()()())(())())))(((()))((())())))))(()((()()(()))())(())(()(())(()((()()))))(()())(((())()(()()(())(()())())))((()))(((())(()(())()(())))(()(())(()))((())()((()()(())((())((()))()))()))(()(())(()()(()))(()()(())()((()(()(())))))(()()()(((()()))(()())))))(()(()(()(())()(()(()))(())))(()(()))(()(())()((()(()(()))((()))(()(()))))))(()(((()())))((())()()((((())((())(())))))((()(())((()(())))(()()(()())()((())(()))(()(()))))))(()()(()(()((()()))))(((()))(()(()))()()((()(())())(()))(()()()((())((()(()))(()))(())((())((())))()(((()()))(((()))))))((()((())(()))((()))((()())((()()))(()())()))((())()()(())))))(()((()()())()((())()(()((()))((()))(()((())))((())()))(()()((()())))(()(()(()))()))))(()(()((()(()))))()))(()((())(()()()))(()()((())(())())((()))(())(((()))()(()()(()((((())))())))((()))))())))(()(())(()()()())((())(()(()()(()))()(((())(()(()()))()(((()())()(()))))((()(())()((()())()))((()))((()(()(())(()))))(()(())()((())()(()(())(())))(())(()(()(()(()(())))())))(((()))()(()((())))(()))))))(()()(()())((())((()()))(()()()())(())(()()(())()(()((()))))))((())((()()))()((((())())(()()(()()()))))))"

    Returns: 475425153

  40. "()()()()()(()()())(()())(()()()()()()(()))(()()())(()()()())(()()())(())(()()()(())(()())(()()))(()()(())()(()))(()()()()()()()()(()))(()()(()())(())(())()(())(()))(()()()()()()()()(())(())(()())(()())(()()()())(()())(()))(()()(())()(()())(()()(()()()())))(()()()()()()(())(())(()())(()())(()())(()()())(()())(()()())(()()()()()(()())))(()()()()()(())(()())(()())(()()()()())(()()()()()(())(())))(()()(()())(()()(()))(()()()(())(()()(())()(()))))(()()()()()(())()(()(()))(()()()()()())(()()()()(())(())(())))(()()()()()()()()()()(())()(()())(()()())(()()()()()())(()()()()()()(()()))(()()()(())()()(()))(()()()()()()(()())(()()()(())()()()())(()()()()()()(()()()())(()()())(()()))))(()()()()()()()()()()()()(()())(()()())(()()()(()()()))(()()()()(()()())(()()(()))(()()())(()()(())()()(()())())))(()()()()()()()()(()())(())(()())(()()()())(()())(()()())(()()()(())())(()()()()(())(()()()()())()(()()()(()()))(()()()())))(()()()()()()()()(())()(())(())(())(()())(())(()())(()())(()()()()()()(()())(())(())(()()))(()()()()()()())(()()()()()()(()()()()())(()())(()()()()(()))(()()()())(()()()()()(())))(()()()()()()()(()()())(())(()()())(()()()()()()())(()())(()()()()()(()()))(()()()()()(())))(()()()()()()()()(()())(()()()()()()(()))))(()()()()()()()(())(()()(())())(()()()()()()()()())(()()()()()(())(()()))(()()()(()))(()()()()()()(())(())())(()()()(()()()))((())()()()()(()()))(()()()()(())(())(()()))(()()(())(())(()())(())(()()()()()))(()()()()()()()(()())((()()))(()()()()())(()()()()()(()())(()))))(()()()()(())()()(()())(())(()())(()())(()()())(()()()()())(()()(()()())(()()()))(()()(()()))(()()()(())()(())()())(()()()()(())(()()()))(()()()()()()()()()()()(()()())(()()()()()))(()()()()(())(())(()(()))))(()()()()(())(())()()()()(())(())(()()()(())(()())(()))(())(()()())(()()()(()))(()()()()())(()()()()(()))(()()()()()(())(()()()())(()()()()()()))(()()()(())(())(())(()()()))(()()()(()()()()()()))(()(())()(())(()))(()()()(()())(()()())(()()(()))(()()))(()()()()(()())(())(()()())(()()()()())(()()())(()()))(()()()()()()())(()()()()(()()())(())()(()()()())(()()()(())())(()()))(()()()()(())(()()())(()()()()()())(()()())(()())(()()()()()()()(()())()())(()()()()())(()()()(())()())(()()()()()(())()())(()()()()()()(())(())(()()())((())()()))(()()()()(())(()())(())(())()()(()()))(()()()()()()()(()(()))(())(()))))"

    Returns: 935763918

  41. "()()()()()()()()(())(()())(()())(()())(())(()())()((())()()(()))(()())(()()(())())(()()())(()()()()()(()()()))(()()()(())())(())(()()())(()()()(())(())(())()(()()))(()()()()(()()()))(()()()()()()(())()(()()())(()()))(()()()()()()()()(())(()()))(()()()()()()()()(())(()())()()()(()())(()()()()()())(()()))(()()()()()()()()(())(())(()()())()(())(()()()())(()()()())(()()()()())(()())(()()()()())(()()()())(()()())(()()())(()()())(()()()()()()()(()())(()))(()()()()()()()()(())(())(())(()())))(()()()(())()()()()()(()()())(()()()()(()()))(()()()()()(())(()(())))(()()()()()()()()(()()())(()()()())))(()()()()()()()()()()()()(()()())()(()()()()())(())(()()()()()())(()()()())(()()()()()()(()()))(()()()()()(()()(())))(()()()()()()()()))(()()()()()(())()()()(())(()())(())(()())(()()()())(())(()())(()()()()()())(()())(()()()())(()()()()())(()()()()()()()()()(()()()()()()))(()()()()()()()(()()()()()())(()(())()))(()()()()()()()(())(()(()()))(()()())(()()()()()(())(()())(()))(()()()()(()())(()())()()(()()(()))(()))))(()()()()()()()()(()())()(())()(())(())(()()()()()(()()))(()()()()()()(()))(()()()()(()))(()()()()(())()(())()()((()))(()()))(()()()()()()()()(())(())(()()())(())(()()())(()()()()()()(()))(()()()()()(()))(()()()(())))(()()()(()())()(())(())(())(()()(()))(())(()()()()))(()()()()()()()()()()(())(())()(()()()()()(()))(()())(()()()())(()()()()())(()()()()()())))(()()()()()()()()()(()())(())()(())(())(()())(()()()(())(()()))(()()(()()))(()()()()()()()()(()()()))(()()()()(()()()())(()()))(()()()()(())(()())()()(()())(())(()()))(()()()()()()()()(())(()())()(()))(()()()()()()(()))(()()()()()()()()()(())(()())(())(())(()()()()(())())(()()()()())(()()()()(())())(()()()()()(())))(()()()()()()(())(())(()()()()()(())(())))(()()()()(())(()()()()()())(()()()()(()))(())(())(()()()()()))(()()()()()(())(())()()(()())(()()()()()()()()()()())(()()()()(())())(()()(())))(()()()()()()(()())(()())(()())(()())(())(()()()())(()()())(()()()()()()())(()()(())())(()()()()()()()(()()))(()()()((()))(())(())))(()()()()()()()()()(())(()())(()()())()(()(())(())()(()()))(()()(()()()))(()()()())(()()()()()()()()()(())(())(()()())(())(()()()()(()))(()()()(()()))(()()()(()))(()()()()()()(()())(())(())()(())((()))()))))"

    Returns: 273439178

  42. "()()(())(()())(())(()()(())(()))(()(()(()))(()()(()()(()((()))(()))))(()()))(()()()(()(())((())))(()()(()())(())))((()(())))(()()(()())(()()()(())()(()())(()))(()(())(())))(()()(()(())((())))())(()()(())(())(()())(()()())(())(()()((())())()(()())()())(()()(())(())((()))(()()()()((())()))))((())(())(()()(())(())(()()((()()))))(()(())())(()((()))((()((()()()))())((()()))(()((())))(()()(()()()(()())())()(()()()()()()(()())))(()(())(()(()))(()())))(()(())(())(()(())(()))(()((())()((()))))()(()()(())()(()()(()))(()()(())(())(())((())()))())((()(()(())))(()()()())(()()()(()()()))(()()(()())(()(())(())()(()))))(()()(()()())(()(()()))(()()(())())((())()(())(()()(()))(()()(())(()())(()()(()))(())))((())(()()(())(())(()()())))(()(()(()))()(()(()))(()())(()()()(()())()((())()()))(()()()()(())))(()(()()())((()()))(()()()()(())(()()()()((()))))(()(())())(()(())(())()(()()())(()()()())(())(()()()))(()()(())()(()((()(())())()))(()()()(()))))))))((()(()))()(()((()()))((())))(()())(())(()(()())((())()))((()))(()()((()())))(()()()(())(()(())()))(()()((()())()(()))((()))(()())(()()()(()())))(()()()(()())(()(()))(()()()()()(()()())(())(()()(()())(()))))(()(())(()()()(()))(()(())(()()))(()(()(()))()()(())(((()()))(()))))(()()()(()()()())(()(()()))(()()()(()()(()()))(()))(()()((()))()(()())((())()(()(()()))(()()(())(()))))((())(()())(()()()())(()()(()(())(()))())(()(())())(()(())()))((()())(((()))()(()()()))(()))(()(())(()(())())(((())())()()))(()(())(())(()())(()())(()()(()))(()))(()()((()))(()(()()))()(()))(()()()(())(())()(()(()))(()()(())(()()))(()()(((())))(()(()))(()(())(()))))))"

    Returns: 949145148

  43. "(((((()(((())()(((((((()))((()(((())))))()(((())))))(()(())((((()())())(()))((()))((())((()())())(((()))())))))()))())))(((((((()())(()(())(()()())))())(()((((()))((()((((()))(()(()))()))))((()())()()(()))(()()()))()()))(((()((()))))(((((()))())))))))))(((((()()(((()()(((()(()))(())))))((((()())))((()()())((())))))((()(((()(()(())))()))))(((((()))((()()(()(((())))()))))((())(())()())((((()())))((()((()))((((())())(()(())))))())))))((()(((((((()())(())(()))((())((()))))))()))())))))()))((((())((((()(((()(()()))((())(()))((((()()(())))))((()))())(((()()))))(((())()(((())(()))(()((()(())))()))()())(()()((((()))))())((())(((()))(())))))()())(((())(((((())()))))())((()(()((())()(()()())(()((((()))())(()((())(())))))(())))()))((()(()((()(())()))))()))(((()))(()((((())()()((()())(())))()((()())(((()))((())((()(()())))))((())))))(((()(()((()()))(())(()()((())(())(()())))))))(((((())))())((()(((())((()))))))))((((())(((((()))((())(()))))()())))()((((()(())))))()())((((())()))(()(()((((()))()((())(()))))))))))(((((((((())))(((())()))))(()(((()()))))()))(((((())((((((())((())()))))(())((())(())((()(()((()()((()))))())(()))))(((()((())))))((((()))()())))(((()))((((()())())))))))()((((())(())((()(((())()())))(((()()())()))()))((((()(())()()((()))))))))))(((((((())(()(()())))))(()((())(())()))()))()))))))(((()((()((()((())(((()))(((((())()))((()()(((()()))())))())((((())())(()(()))())()))(())))(()(((((()(()(())))(()))(()()())()((()(()((()()))((())((()())))))))())(()(((()((())))()()(()))(()()()((())((((()(()))))))))(((((())))()((((())))((()(())))(()()(())(()))))(()))()))))()))))))))"

    Returns: 579783335

  44. "(((((()())(((())((((((()))((((()))()(((((())((())(())))((((()()))((((()))(()(((((()))))))))))(()))())(()(((())((()((())())((((()))())))((())((()(((()))(()(((()))()))))()))(()))((()(()((())((()))())))((())(()))))))(((((())(()))()))(()(((((()(())))(()((())()()(()(()())((())))()))(((())())(()())))(((())(())(((((()))()))))((())((())))))(()((()(()))((()()))((((())))()))((())()(()))(((((())((((()())))(((())))(()))))))())))()))()((((((()(()((((())))()))))(()(((((()))))(()(((())(()((()))))((((())(()))))))((((((()()())()))(()())))(()((((()))(()((((()())))(())(()))()))((((((())))()(()())))(()))))))()))((())))(())(((()(()((())(())(()()))))(()(()))))((())()))((((((())()))(((((()((((())))(()))))((()(()()())((())(())))()))(()()))))()(((((((((())((())))))(((()()()))(())))))(((()()))((())))))))))())))(()()())())(((((((()(((()(((()(()))((())()))))())((()(()(((()((())(((()))))))((()))))()))(((((()))(()((())))))))(()()(((()()()())(())((()))(((()))())())(()))(((((())(()()))(())(()))))))()(((((((())(((()()((()(()()))())(()))(((((((((()(()(()())))(())))))))))))))(((((((())())))))(()(()((((()))())())))))()(((((()()())))))))((()())((((((()()))())((())((()))()))))(((((((())))(((())((()))((()))((((())())()(((()()((()()(()))))))((((((())(())))))((()()))(()())()))(((())()((((()()(((()))))))))(())(()())))(((()))))))))(((((()(((((()(()(()()(()))()())()))))((()))(()))))(((((()()(((()(())))))(())())))))((((())()((((()())(())(())((())(())))(()(()()))((((()(((())))))((())(())))))))()))))))))((((()())(()()))()())))(((()(((()(()())))(()((()())))))))(((((((()))(())()))((())(()(((((((()((())()()))((()(((()))((()))((()())))((()()()))(()(((())()))(()(()()(((()(()()())()))))))))(()))()))))((((((()(()(()((()(()(())))(()()(((()()))))(()))))(()))(((()(())(())))(((()())))))))(()(((())))(((()(()())()())()((((((())(()()(()))))((()(()()))))((()(()(((())(()))))())()((()((())(()()))))(()(()(())())(()(((()))))))))))())))(((())))(((()(()))(()((())((()((()((()))((())())(()()(())))(((())())(((())(()))(((())())))((())()))((()()))(())())))(((((((())))))(()()))((()()()())((())))))())(((((())))()())))((()))))(((())((()())))))()))((((((())()((()(()))()))))(()((()))((()(()((((())((())))))))((())((((((()))())(())))(((()((())))()))))())((()(()())(()))))(()(()))((())((()(((()))()(()))))))))(((()))((()()))((((())))(())(())))))))())))(())((((()())()()))))())())))"

    Returns: 658612824

  45. "()()()(()()()())(()()())(()())(()()()())(()()(()))(()()()()())(()())(()()()()(()))(()()()()()()(()())()(())(())(()()()))(()()()()()()()()(())(()())(()()()()()))(()()()(())(()())()(()()())(()()())(()()()()())(()()))(()(())(()))(()()()()()(())()()()()((()))(()()()()()()))(()()()()()()()()(()()()())(()()()())(()()()(())()(()())()(()()())(()()()()()())))(()()()()()(())()()(())(()()()()()())(()()())(()()()())(()())(()()()()))(()()()()(())(()())(()()())(())(()()()())(()()())(())(()(())))(()()()(())()()()(()()()())(())(()()()())(()()())(()()()()()()()()(()()())))(()()()()()()()(())(()()())(()()(()()))(()()()(()()))((()()))(()()()()()(())()()(())(()())(()))(()()()()()()(())))(()()(())()()()()(())(())()(())(())(())(())(()()(())())(()()()(()))(()()()()()()())(()()()()()()(()()))(()()()()()()(()())(()()())(()()()()()()(())))(()()()()()(())()(()()()()))(()()()()()(())(())(())(()()()()())(()()())()(()())))(()()()()(())()(())()()(()())()(()())(()()()())()(())(()()())(()()()()()(())())(()())(()()()()()()(()()))(()()()()()()(())(()))(()()())(()()()()()()(())(()())()(()())(()())(())(())(()())))(()()()()()()(())(()()()())()(()())(()()()()()()()()()()()(()))(()()()()()()(()))(()()()())(()()()()()()()(())(())(()()())()(()()()()(()))(()()())(()()()())(()()()())(()()()()()(())())))(()()()()()()()()()()(())(())(())(())(())(()()()())(()()()())(()()()())(()()()()())(()()()()()())(()(())(())(()))(()()()()()(())(())(()()()()))(()()(())()()(())()()(())()(()()()))(()()()()()()()()()()()(()()())()()(())(()()()()())(()())(()()))(()()()()(()()())(())(()())(()()()())))"

    Returns: 547996548

  46. "((((()()()()((((((()())())(((())))())(()()()(())(())(()()())))(()()(()()((()())())))(())(()(((()()((())))))())(()(((()))((()()(()(()(())))((((()))(()))))(((())((())((())()(()(()))))))))(())))()(((()(((()(())))((()())(((())(())))((()()((())))(()))((((()))(()()((())((()))((()))))))))((()()((())))()((((()(()()())))))))(((())(((((()()))()))))(()())((()(()(()(()))))(()())(((())))))))))(((((()))(((())((()()())((((())))()))((((()(())))(((()()))((((()(()))(((())()()))))()(()((()())(())()()(()(())())))))(()))()((((((()()((()(()))))))(()(()((())())(())))(()(()(()()))))(((()())(()()(((()()())))))(((())))(()(()()))))((((())())((((()())))(()(()()((())(())))(())))()(((()))(())))))))(((((()))(()(()()((()(((())))()))))))()))))())))((()((((((((()))((()()))())))(())((((((((())))))(()))((((())(()(((()(()(()()(()())(())))))(()()()((())))((((()))())))((()())()))((((((()))(()(()(()(())))))(((())(())(((((())()(()())(()()))()))()))(((()(())((()(())(()())())(()())))()))((()(())))())))()())(())))(()()((()(((()()))(((()))((((())(())(()(()(()()(((()))))())))((()))))))((()(())(((()))(((()(())(()()(()())()))))(((())())((((())((()))))(())))(((())(())(())(()))(()))(()(()))(((()()))((())(()(()))))))())())((())()(()()))((()((())()(()))(((()(()))))((((((())(()))()(()())(()(()(()(((()))()))))((((()))(()(()())))(()))))((((()))((())(())()))(()(((()))())))))))(((((((()))(((()(())(()()()()()))))((()))))(()))(((())))((())((())(()()())((()())))(()()(((())()())()((((()())(()))))(()))())((()(()))((((())()))))))())(((((()((((((())))(()()((())(())((()(())(()())))))())(((((()((()(()()))(())(()((()())()))))(()))))(())()))))))((())((((())(()()(())()((())))(((())))(((()(()()()()())(()))(()((())()(())))))((()((()(()))))(()((())))(()((()())()))()())(())))((((()())((()((())))()))))()((((()((())((())))))))))))))(()(()))((((())((()(()))(()))))((((((()()()))((((()()))()((())))((()(((()((())))))((())())(()))(((()))()()(((())())(())))))()(()(((())()())))))(()((((()())(()((())()(()))))(())((((()(()()))()((()()))))((()((()))(())))(((((()())(()))())(((((())))((()()))))))))(()((()))(((()))((((())))))))((()())(((()())))((()((())((((())(()(()()(()(())()))))(())))))))(()())))))))(()(((()(()((((()()()))(()()))((((()))))((())((()())((()))(((((()))())())))))))((((())((()()))())(())))((((((())))(()())))))((())))))))())(())(()()((()))())((())))))"

    Returns: 330099323

  47. "()()()()()()(()())(())(())(()())()(()())(()()())((()))(()())(()()()())(()()()()()(()))(()()())(()())(()()()()())(()()()())(()()()()()()(()())(()))(()()()()()()()()(()()())(())(()()()())(()))(()()()()(()()())(()())()(()()())(()()()))(()()()()(())()(()())(()())(())(()()()()()(())(()())))(()()()()()()(()())(()()())(()()()()()())(())(()())(()()(()))(()()()()()(()())))(()(())()(())()()()(())(())(()()()(())())(()()()()()()())(()()()(()())))(()()(())()()(()()()()())(()()()()())(()()(())()())(()()()()(()))(()()()(())()()(())(()())(()())))(()()(())(())(())(()()(())(()))(()())(()()())(())(()()()()()())(())(()()(())())(()()()()()()()(()()())))(()()()()()()()()()()(())(())(())(())(())(()()())(())(()()(()()))(()()())(()()())(()()()()()(()())(())(())((())))(()()()(())()(())(()())(()())()(()()()(())))(()()(())()()(())(())(()()()())()(()()()()())(()()()()()(()))(()()())))(()()()()()()()(())((()))()()(()())(()())(())(()()()())(())(()())(()()())(()()()()(()()()))(()()(())()()()()()(()()()())(()()(()())))(()()()()()(())(())(())(())))(()()()(())()()()(())(()()())(()()())(()()())(())(()())(()()()(())(()())()(()))(()()()()(())()()(()))(()()(())()(())()(()))(()()()()()()()()(())()(())(())(()()()()(()))(()()()()()()()(())()(()()()))(()()()()()()()(()()()()())(())()))(()()()()(())()()(()()())))(()()()()(())()()(()())()()(()(()))(()()()()())(()()(())()(()()))(()()()(())(())()(())(()()))(()(())()()()(()()()(())(())(()())()))(()(())()(()()()))(()()()()()(())(()()())()(()())(()())(()())(()()()()()(())()))(()()()()()(())(()()()(()))(()()()()(()))(()()()(())(())()()(())(())(()))(()()()()()()()()()(())(()())(()())))(()()()()()()()()()()()()(()()())(()()())(())(()()())(()())(()())(()()())(()()()()()))(()()()()(()())()()()(())(())(()()(()()))(()()())(()()()()(())(()()))(()()()()()(()()))(()()()()()()()()()()(()))(()()()(())(()())(()())(()())(()()()())(()()()()))(()()()()(())(())()()()()(()()()())(()()()())))(()()()()()(())(())()(())(()()(()()))(()()()()(()()))(()()()()())(()()()()()())(()()()()(())())(()()(()()())(())(())(()(())(()))(()))(()()()()()()()()(()()())(()()()(())(()()())(()(())))(()()()()()(())())))(()()()(())(())(()())()(()())(()()()())(()()()()()())(()(()))(()()(())(()()()))(()()()()(())()()(()))(()()()()()(()))(()()()()(()()))(()()()()()()(()())(()()())()(()()())(())(()())(()(())())(())(()()()()()))(()()()()(()())(()())(()()()(())()()(())()))(()()()(())(())(()()(()()())(())))))"

    Returns: 527667368

  48. "(()(((()(()(())(()(()(()))((()()()))()())(()()))((()()())(((()(()())(()(())((())(()))))(())))(()((()()))((((()))(((()))))()())()))))(((()()))((()())((()()(())))())((())(()(()(()(()()())(())()))((()(()()((())))(()()))))((()(()(()))(()(((()(()(())))((()()(())))((()())))))))((((()))()))))((())(()(()(((())()()())(()))))())(()((()(((())()())(()((()((()(())()())()((()(())(())(()(()())))((()))((())(()(()())))(()(())()))))((()()())((()(()))(((())())(()()())()))))((())(((()))(()(()))))))()()))()((()(()()(((()))(()()()))))(())((()((()()(()))((()()))((()))((())))())(((()((()))(((()))()))((((()())))((((()))))(()()(()((()(()()())))((())(((()()))))(((())()()()((())((())(()))))((())(())(()()())(((((())))())()))((((())())((())))()))(((((())))()))((())(())))))((()(()(())))))()()(((()(())))(()(((()())(())((())))))))()((()((((())(()((()()))))((()(()()()())((()(()(()()))(()()))))(((())(()))((((())())))))(()))(((()()(((((())))((()(()))))(((()()()()))()((()())()))))()(()(()))))())(((()(()(())))(()((())(((())))(())((((())))))(())(()((())(((()))(((()))(()()))))()((()(()))((()(())))((())(())(())))))((()())()(()((())))(((())(()()(((()))((((()))())((()())(()(((())()()))))))))))((())((()))))((())()(((()())(()()())((())))))())))(()(())(((())(((()))))(((()((())()(())))()))(()(((())))(((())(()(()))((()(()(()()))))((())(((())((())(())))((()()))(())(()))(()((())())))))((()(()))(())))))))((()((((())((()))()(()(()))(((()))((((())()))))))((())))(((())(()))()()))(((())((()(((())))))(((())()((())(((())))))((()(()(()))()((())))())(((())(((()())((()))))(()((()))))((()()))))((((())(()))((()(()))))((())))()))))))(((((((())(((())(((())()()((()((())((()))))(()()())))((()))()(()()((()))(()(((()))((())))(((((())))))))))))(())((((()()(())((()))(())))(((((())()())()((()(()))(((()(())()(()))(()())((())(())(()(()()())))))))))))(((()(())((()()))))((((((()(())))))(()(())(((())((((((())()))))((())))(((()())(((())(()))((())()()))(()()(())(()()))((())((()))(())))))((()()())(()(())(()(())()((()())(())))))(((()())((())()(()))()((()))()))))))))((()((()(()())(((()()(()))))(()(())()()))())(((()))((()((()))())(())(()()()())(()))((()(()))(()()((()())))(()()())(()(()())((()())((())))))))())(((()(((())(()(()()())())))(()()))())(((())(((())))((()(()))((()))(()((())(()(()))))))((()())((())))(((((())))(()((()))((()((()(())))(((())))(()(()(())))())(((()))(()(()))()(()(()))))())(()((())((()()))()())))))))(((((()()))((()()((())((())(((((()))))(((())))))()(((()())()(()()((()))(((())))))))))(()((((())))()()))))))))"

    Returns: 10016394

  49. "((((()(()((())))))(()((((((()))()(()(())(()()()())))()))())(((()(())())((()())))(((()))(())(((()((())(())())()()))((()())(((())((((()))))(()()((())(()))())))(()()))((()()(()())(()))()))((()()((()()((())))(()()(())((())()(()(((())(()(()))))(())))((())))())((()(()(()(((()))))()())(((()))))(((()(())((())()))(())))((()()())))()))(((()((((()((())))))))()(()(((()))((())()())())(((())))(((())(()))())())))))))(()(((((((()))(()()(((())()())(((()))())))(()(()())(((())(()()))(()(()(()((()))))()))((()()())())))(()((())(())(()()(())(()))))((()))((()(()()()(()()))(()((())(()))(()((()()))(()()()(()))((()())))(())))(()))))((()))((((()((())))(((()))(((())((())()))(()((((()()))(()()))((()(((())))(())))))()))(()(()())(()()(()()((()(()))()((()()(()(()())))))))))(((((()))()(())))((()))))(((()(()))))(((((()((()))(())))))((()(()()(()(((()()())))()())))((()(((())(()())))(()()((()))))(()()(()((()))(()))(()()))))((())))(((()(((()))))()((()(()))))())))))())((((((())(())())(())(((((())(()(()()))()))((((())))())))))((())()()(((())())))(((((()()))(((())))))((((())(()())))())(((()((()())(()((((()())(())()))))))(((()())()()()(((()()))((())((()((()))(()()))((())((())())))(()))(((()))(()()(())(()))((()))())(()(()(())))((((())(()(()((()))())))((()()))(((())))(()))()((())((())())()(()))((())()((((()()))())((())))(((()()))((())((()((())())))()(())(()))((()()(()(())()))))()))((((())(((()()(()()))))(()(((()())(()(()())(()((()(())(()()(()))))))())()((((())))()(()((()))))))(())(()((())(())(())))))())))((()((())())(()))((((()()))()(()()()((()))(((())((()))(())()((())()(()))()(())()))))(()(())((()))())(((()()())(((()(()))(((())))((())))(())))()((()))(((()()))))())(())(()(()((((()()))())((())(()))))))))(()()(((((((()())()))))((()(())((())(()(((()(())))))))())))))((((((()())(((())))(()()()()()((()()))(())))(()(())(())(())))))()(()(((())()(()(())))(((()((())))))(((((((())))))(((((((()))))(()))(()((())()))(()(()))(()((())())(((((()))))((()()))))(((())(())(())(()((()))(())(((())))))(((((())))())(((((()))()))(()(((())()))(())))))))))))))))"

    Returns: 389790927

  50. "((((((((((((()(()))))()((((()))((((((()(()))(()(()(()()))((((()((((((((()))(((())()(()()(())))))))))((((()()))((((())(())())())))))()((((((()((())))((()))(()((()()))(((()))(())))))((()((()(())))())()))((((())(()(()((()(()))(()(()))(()((())()))))()(((((()(()))((())(()((()))((())))())())))((((((())))))))((()()()((()((())))))))(()(()(()((())((()()))))((()(())((()))))()((()(()()((()(()()()(()))((((())(()((()))(()))))))))(()()((())))((())))))((((()()((())())))(()(()((())))))((())((((())))))(((()()((())))()))))(((((())())(())(()))))))))())(((((()(()))((())))))(((())()(()(())))))(())))))))()))(((((()(()()))(())(()(()((((((()))))((()))()))))(((()()))((((())))(())((((())()))))))(()((((()(()(()(())()())(()((()((())(()))))()))(((()())())(()))))))))()())()(((((((((()(())((())))(()(()())()(((()()))))))))(((())))))((()((())(((((()))))(((((())(()(()))))))))((((((((())))()))(((((()))))))((((())))())))(()))))()((((()(())()))())((((((()()(((()))())()))(()))((())))((()(((((()(()(()))())((())))(((()))((()(())(()())()((((()))((()())))(())))((((()()))))()(((()())())((((()))))(((()))))(((((()())(((()())))(()((())((())((())))(((()(())))())))((()()))((())))()))))()))())))(((()(())))(())(()(())))((((((((((())(()))((()()(()(())()))())(()())))((()(()))((((()))((((()()(())))(((((())()))(())(()((()))((())(()())))())))())()(())))))(()))(()((())(((((())(()())(()))(((((()((())()))))))))(((()(((()()())((())))((()(())))))((()))))((()())((()())((()))))))))()()))))))((())())))))))(((((((())())((((())(((((((()()))((())((()))())())((()(())()(()(())))))(((()((())()))))))))()))()))(()())())())())((()()((((((((((((())()))((((()))())())())))))()(((()((())))(())(((((((())(()))()))())((((()))()))))))((())(((()(()(((()))))(()))(()(()((((((()(())((((()())()))))))()((((()))((()((())))(()))))())((((()((((())()()))(()(())))))(((()(()))(()))((((())(()))(()))(((()(()()))())(((((()(()()))()(()())((()(())((()))((()()))))))(()))((()))()))))))((()(()(((())))(((((((())(((()(()()))((())))()))))))(((())(()))())(()))((((()(())))())(((()())(((())((((())(()))(((()())(())))()))(()))((((()(((()()))())))))))((((()))())(((()))()())))))))))((((((()(()()((())(()()))))((())))(((((((()(())))())((())))))(((())(()((())(((())))))))))(())(())((()(())(((())(()))((()(()))))())((()(((())))))))))))(())))))))())))))))))(((()(()))()())()))((())))()))"

    Returns: 405130380

  51. "()()(())(())(()(()(()))(()(()(()()))(()())(())(())(()(()(()))(())())))(()()((()))(()()((()))))(()()(()(()))(()()(()(()())))(())(()(())(())()(()(()()))))(()(()()(()(())))(()(()))(()()(()))(()(((()))(())(()()((()))))((())(())((()))(())(()()))(()(())()())(()()()()()((()()))(()()()(())())(()()(())()()(()()))(()(()()(()))(()())(()()(()(()))((())(())))(()())(()())))))(()(()())(())()()((()()()))(()(()))(()()()(()(())())(()()(())))(()()(())(()()()))(()(())()()()(()()()(())(()(())))(()(()(())((()))))(()()(()(()()))(()())(()(())(())()(())(()()(())(()())))((())())(()()()()(())(()(()(())(()()()())(()())))(()()(())((()(())))))(()()(())(())(()()()))((()())(()())()(())))(()()(())((()))(()))))(()((()))(()(())()(()()()((())(()(())))()))(()(())(())())(()(()))((()()())((()()))()(()))(()()(())((())((())))(()(()())()(())(())(()()()(())(()(())((())())))()))(()()(()()()())(()()()(()()))(()()()(())))(()()()(())(())()(()()(())(()(())())))(()()()(())(()())(()(()()(())()))))(()(())(())()(()()()(()()()))(()()(())(())(()()(()))(()(())(()())(()()()))(()()(()(()))(()()(()()(())))(()()()(()))))(()()(()(()))(()()())(()()()(())))(()((()(())))(()()((())()(()())(()()(())()))(()())(()()()))((())()))(()()(())()(()((()))(())(()((())))))(()(())(()())(()(()()((()())())))(())((()()(())))((()())()(()())(((())))()(()()()()(()(()(())))))((())()())(()()(())(())(())()((())(()))(()())((())(()))(()()))(()(())(()()(()()))))(()()(())(())(()())(()()()(()(()))(()()()(())(()())(())()(())(()()))(()(())()(())()(()()())(()())))(()()()()((()))(())(()(())()(())()(()())))(()(())(()()())(())((())(()))(()()())))((()((()))())(()()(()())(())(()(()()))(()()(()(()))))(()()()(())(())(()()(())()(())(()))(()())(()(()())))((())(())()(())(()()(())()(())(()()(()())))(()()()()(()())()((()()))()(()()(()()()))((()))()(())(()(())(()()))((())(()(())()))))))((()(()))(()(()))(())(()()(())((())))(()(())()(()()((()()())))(((()))(())(()())(()()(()())(())(()()(())))))(()(())(())(())(()()()(())(()(()))))((())(()(())(()))(()())(()()()(())(()))(()()()(()(())())(()((()))(()))))(()()(())(()()()((())))(()()()()(()(()))((()())(()())))(()()(())(()(()())())(()(())()))(()(()()(())(()))(()()()(()()())(()))(()()()()))((())(()()()()(()()))(()())(()()()(())(()()(()()(()()())())())(())((())(()()(()())(()()(())()(()))))))(()()()()()()(()())(()())(()())(()(()())(()()))(()(()())())))(()()()(())(())()()(()()()())((())(()))()(()(())((())(()()(())(())))(()))(()()()())(()(())(())(()(()))(()(())((())()()(())(()))(()))(()((()()))(()())(()()())(()()(()))))))"

    Returns: 11086993

  52. "()(()(()))(()())((()(()))()()((()()())()))(()()(()(())((())()(()()())())))((()())()(()(())(()())(()))((()()()(()))()((()((()())(()))))))((()(())(())())(()(()((())))(()())(()())(()((())())()))((()())((((()))))((()()(())))(()(()()()()(()()))(())((())))(()(()(()))()()(()()((((())()))))((())((()))(()(())((())))(()(()(()))))(()(()(())(()))((()(()()))(((())(()())(())(()))))(((()))((()(()))(()))(((())()()()))((())((((()))((()))))(()(())(())))(()((()))((())((()))((()))))))(()(())(()()(()))(()()))))((()())()(()()()(()()))(()((()))(()(()((())))(()()))((())(()))((()(()()()()))())(()((())((())))(()((()))(()(())(())))(((((()))))((()(()())))())(()()()((())((()())()))(()(()))()))(()(()(()))))))((()(()()))((()())(()(()()))()(())((())(()(()()))(()())(()(())))()(((())(()((()))(())))(()))(((())(((())())()))(()()((())((())()()(((())()(()((())))))))(()(())((()(()))((())))(()))))))((())(()((()(()))))(((())(()((())))))(()(((())(()()))))((((())))(()(((()))((()))))((()(())())(())()(())(()()((((()))(()))(()()((())()()(()))))))((()()(()))(()(()()(())))))(()((()))((()(()())(()))((())(((())()(())))))(())((()())(((()))(())(()(()()())((((()(()))())())((()()))()))(()()(()(()))))(()(((()))()())())(((()(()(())(()))()((())((()))))(()((()(()))(())))(()(()())))(()()(()())((()())()((()()()))((()(())()))(()(()()()))(()()()(()))))))(()))(()()(()()())()(()((())))())(((())()()(()((())())(())((())(()()((())))))((()()(())((()()()()(()(())()))))((()))((()()((())(())((())))(()()((()))(()()((()))((()()(()()))(()(()))))(()(()()(())(())((())))(((())))(()(())(())))((()))(((()())(((())(())))(()(()()()))(())))))))))((())(()()(()()()))(()(()(()()()))(()()(((())(()((()))(()))))(()()()()(()()((()()))((())))((())((())()(()))(()((())))((()(())((())))(()(()())(()(()))))))))(()((())()))(()()((()()(()))())((())((()))(((()))()))((()()))((()())()(()())((()))((()(()()((()())(()())))))(()(())))((())(()()))(((())())(()(()())())((((()))(())))))(()((()))()(()((()))()(())(((()))((()))()(((())))))((()())(())(()((()))))(((()())(()(()(()))(()(()()))((())((()))(()((())))))(((()())))(()(())(()))))(()()(())(()(()((()))(()))(()()()))(()((())(((()()(()))))())(())(()((()(()())))(((())()(()()())(((())))((()((())(())))))((())()(()())))())((()(()())(()()(())())(()()((()())))(()()()(()((()(()()))))((()())((())(()))((()(())))))(()()()))(()(())(()())(()))((()())(())()((())((()(())))(()()())))))))))"

    Returns: 345667367

  53. "()()()()()()(())()()()()(()())(())(()()()())(()()())(()())(()()()()()(())(()()))(()(()())(()(())()(()))(()()()()()()(())))(()()(()()(()()()))(()()(()()(()))))(()()()()()()()()()())(()()(()())(()())(()())(())()(()()()()()))(()()()()()()(()())(()()()))(()(())()(())(()())(()())(()()(())(()))(()()())(()())(()()()())(()()()()(())(()()))(()()()(())(())()))(()()()(())()()(()())(()()(()))(()()()()(())(())(()()()()())))(()()()()()()()()()()(())()(())(()()())()(()()())(()()()()(()()))(()()()()(())(())()(()()()()(())(()()()()()()(()()(())())))))(()()(())(())()((()))(()()())((()())())(()()())(()()()()()(()()))(()()()()()(())()()()(()())(()()))(()()(()()()()))(()()(())(())()(())(()())))(()()()()()(())(())(()()(()))(()()())(())(()()(()))(()()()()()())(()()(())()(()())(())(())(())(())(()()())(()()()()()(()()))(()()())))(()()()(())()(()()())(()(()))(()())(()()(())())(()())(()()()()((()))(()()()()(())))(()()()()(())(()(())))(()()()()(())(()()()))(()()()(())(())(())(())(()()()()())(()()()(()()())(()))(()()()()()())(()()()(())()((())())())(()()(())()(())(()(()))))(()()(())()()()()(())()()(()())(())()(())(()()())(()())(())(()()()()()()(()())(()))(()()()()(())(()(())()()(()))(()()()))))(()(())()()()()()(()())(())(()())(())(()()()()(()()()())()(()()(())))(()()(())())(()()()()()()()())(()()()()(())(()()(()))(()()()(()())())(()()()()()()()))(()()()()()(())(()(()))))(()()()()()()()(())(())()(()(())()())(()(())())(()())(()()()()()()()(())((())))(()(())(())()()(()()()()(())))(()(())(())()()(()()(())()())(()())(()()()()(())(())))(()()()(()()()()())(()()()()()(())(())(())(()())))(()()(())()(())()(()()())(()()()()())((()()))(()()(()()()))(()()()()()()()()(()(())(()))))(()()()()()()()(()())(()()()()()))(()()(())()()()(())(())(())(()())(()()()()()()(()()))(()()(()())(()())()(()(())(())(()))(()()(()))))(()()()(())()(()())(())(())(()()()()())(()())((())(())(()))(()()()()()(())(()()(())()())(()()()()()))(()()()()()()(()()())(()))(()()()()()()()()()(()()()()(())()(()()()())))))(()()(())(())(()()(()))(()(())())(()(())(()()))(()()()()()()(()))(()()()()(()())(()()))()(()()()()(())(()()())(()))((())()(()()))(())(()()()()()(()()(())())(()()()(())()()(()())(())))(()()(())(())(()()()())(())(()()()()))(()()()()()()(())(()()())(()(()))(()()()()())(()()()()()()()(()()()(())))((()))(()()()()()()())))"

    Returns: 126279062

  54. "()()(())((()())(()()(())()()))((()()(())))(()()(())(()))((())()(()()(())))(()((())()))(()()(())(()))(()(()()())(()(()())))(()()()(())(()()()()((())())(()))(()()()()(())))(()(())()()(()(()()())(()(()())))(()(())(())(()()())(()))(()()(())()(()()))(()()(()()()((())))(()(()(()()()))))(()(()())((())(()())(()()))(()(()))))(()()()(()())()(()(()(()))(()()())(()))(()()(()))(()(()()()())(()()()(())))(((())))(()()()((())(()()())()))((())((()()(()())))(()))((()()()(()()))(()(())(())(()()())()(()()()()((())(())()((())(()()())))))((()()()(())(()((()))()(()(())(())()(()))))))(()(())(()()(()()))(())((()))(())(()(()))(()))(()(())()(())(()())((()))(()()()(()())((())(())))(()()(()()()))((())(()(()))(()())(()(()()(())))(()(()())))(()(()())()))(()()()()((())(()()()(())(()()(())(()())))(((())))(()())(()()()()(()()()(()))(()()(())(())))(()()()(())))(()(())()()(()()()()(()()(()))(())))(()()(()(()))(())((())())))(()(()()())((()())(()()(())()(())((())())(()((()()))((())))))))(()((()))(())((()()(())))(())((()))(()(())(()()(()(()))))(()(())()(())(()(()()(()())))(()(())))(()()()(()())()(()()(())(())()(())()))(()()(()()()(())(()(()(()))))(()()()()(())()(()()))(()()))(()()((()))(()()(()))((()()()(()(()()()()))))))(()()()(())()(()()())(()()())((())(()()(())()(()()(()))))(()(()()(())))(()((()())(()))(()))(()()(()()()()(())(()()())))(()()()()()()((())())()()(()(()()))(()(())(())(()(()))))(()()((()))(()())(()(()()())(())(()))(()()()(()()(()()))))(()(())(((())())))((()())()()(()(()()(())()))(()()()())((())(((())))())(())(()()()()((())()()))(())(()(())(())))(()()()(()(()))(()()(())(()()())(()())(())(()(())))((())(())()()(())))(()()()(()()(()))(()(()))(()()()(())(())((()))(()()))(()(())(()()(()))(())()((()()))(()()(())()()()(()(()()()()(()))))(()()()(())())(()()()(())(()(()(()())(())))(()()(())(()()(()())((()())(()))))))((()()()(()()))()()(()())()()(()()()(())(()())(()()((()))(()(())()))((())((()()))((())(()))(()()())))((()(())())(()(())(())(()(()()(())))))(()()(()()(()()()))(()()))((())(())(()()(()))))))"

    Returns: 146123993

  55. "()()()()(())()(())((()))()()(())(()()()())(()()()()(()())(()()()))(()()()(()))(()()(()))(()()()()()()()(()))(()(())(()()()))(()()()(())(())(())()(())(()))(()()()(()(()))(()))(()()()()()(()())(())()(()()()(())))(()()(()()())()(())(()())(())()(()(()())(())))(()()()()()()()(()())()(())(()()()()((())(()()))))(()()()()()()(())(())(())(()()())(()()()(()))(()))(()()()(()())()()(()()())()(()()()()(()))(()()()()()(()()())(()())))((())()()()((()))()(())(()())(()())(()()(())(()))(()()(()())(()))(()()())(()()()()(())()()(()))(()()()()(()())(()())(()()())(()()((()))(())(()))))(()(())(()())(()()()()()())(())(()()()()()(())()(())(()()()))(()()()()()()(()()())(()()(()))(()()()()(()()()))))(()()()()(()()())()()()(()())(())(()())(())(()()))(()()()()()()()()(()()()())()(())()(()()(()))(()(()))(()()()()((()()))(()()())(()()))(()(())(())(()())(())(()()()()()()()()()))(()()()()()(()()()()()))(()()()()(()())(()())(()())))(()()(())()(()()(()))(()())(()())(()()()())(())(()(()())()(()))(()(())()(())()(()()()()(())))(()()(()()))(()()()()(()()()()(()))(()()(())()))(()()()()(()(()()))(()(())))(()()(())(()(())))(()()(())(()(())(())))(()()()(())(())(()()()(()()())(()(())))(()()()()()()()(()()()())(())))(()()(()()())(()()()()()()(()()))(()()(())(())(())))(()()()()()()()(())()(()()()())(()()()(()()())()()(())(()()))(()()()(())()(()()()(())))(()()()()()()()(()())(()())((()))(()()()()(())()((()))))(()()()()()()(()(())(()()()))((()())))(()()()()()(())(())))(()()()()()()()()(())(())(())(()()()())(()()())()(()()()()()()()(())(())()(()()())(()(()()))()(())(()())))(()()()()(()())(()(()))()(()()(()()))(()))(()()()(())(())(())()(()())()()(()()()()())(())(()()()())(()()())(()()(())(())(()())(())(()()))(()()()()(())()(())()(()))))(()()()(())()()()()(())()()(()()()()(()))(()()())(()())(()()()(())()(()()()()))(()()()()()())(()()()(()())(()()(())(())))(()(())()())(()()()(())()((()))(()(()())(())(())))(()()()()()(()()(()))(()()()())(()(()()))(()()()(()))(()()()()()()()(())(()))(()()()()()()(()())(()()(()))))(()()()()()()()()()(()())(()()(())()())((())())(()())(()()())(()()()()()(()()()(()()))))(()()()()()()()(()()()()()()()))(()()()()()(()())(())(()()()()()()()())(()()()()()())((()))(()())(()()()()()()()(()())))(()()()()(())()()(()()(())(()))(()(())()()()(()))(()()())(()()()()()(())()(())(())(()()))((())((())))(()()()()()(())(()))(()()(()())(()()(()))))(()()(()())(()(())()()(())(()()()(())))(()()(()))(()()()()(()()())(()(()))(()()))(()())(()()(())()()(()()())(()()()(()())()))))"

    Returns: 90394160

  56. "()()()()()()()()()()()(())(())(()())(()()())(()())(()()()()()(()))(()()()())(()()(()))(()()()()()()(())())(()()()()()()()())(()()()()(()()))(()()()())(()()()()()()()()(()())())(()()()()()()()()())(()()()(())(()()()()))(()()()()(())(())()(())(()()()()())(()()()()))(()()()()()()(()())(()())(()()()(()()()()()))(()()()(())())(()())(()()())(()()()()()()(())))(()()()()()(()(()))(())()(()()())(()()()())(()()()()()()()()(()))(()()()(())))(()()()()()()()()(()())((()))(())(()()(()())())(()()()()()())()(()()()()))(()()()()(())()(()())()()(())()(())((()))(()()()()()())(())(()()()())(()()()())()(())(()()())(()()()())(()()()()(())()(()()))(()()(())()()(()()()()())(()()())))(()()()()()()()()()()(()()())(())(()())(()())(())(())(()()()())(()()()())(()()()()()())(()()()()()()()()()()()(())(()())(()))(()()()()()(())()()(())()(()()()()(()()))(()()()())(()()()()()())((()()))))(()()()()()()()(())(())()(()())(()()()()()())(())(()()()(())())(()()())(()()()()(())()())(()()()()(()())(()())(()()))(()()()()()(())(())(()))(()()()()()()(())(()())(()())(()()()()()))(()()()(())(())())(()()()()()()()(())()(()())(()())(()())(()())(()()(()()))(()()()()()(()))(()()()()()())(()()()()()())(()()()()))(()()()()()()()()(()())(()())(()())(()()()()())))(()()()(())(()())()()()(())()(()())(()(()))(())(())(())(()()()())((())()())(()()()()()()()(()))(()()(()))(()()()(()()()()()())(()()()()()()()()(())()))(()()()()()()()()()()(()()())(()()()())(()()()()(()())))(()()()()()()()()(()()())(()()()()()()())(()()()()()()()()()(())(())()))(()()()()()()()()(()()()(()))))(()()()()(())()()()()(())()(()()())(()())(()()()())(()()()()())(()())(()()()())(()()()()()((())))(())(()()())(()()()()()())(()()()()()())(()()()()()()())(()()()()()(()())()(()())()(()()))(()()()()()()(())(()()(()))(())(()()))(()()()()(()))(()()()()()()()()(())()(())()(()()()()))(()()()()()()()()()(()()())(()())(()()(()()())))(()()()()(())(())()()()()(()())(()()()()(()()()()()()())))(()()()()()()()()(())(()())(()()()())(()()()())(()()()(()))(()()()()()()()()(()())))(()()()()()()(()())()()(())(())(()()())()(())(()())(()())(()(())()(())()(())()(())))(()()()()()()()()()()()(())(())(())((()))(()()()()())(()()()()()())(()()(())(()))(()()()()()()(()()()()()()))(()()()(())(())(())())(()()()()()(()()())()(()))))"

    Returns: 354652293

  57. "()()()()(())()(()(()))(()())(())(()()())(()()()())(())(()()()(())(()(()))(()()()()(()))(()))(()()()()()(())(()()()())(())(()()())((()()())(())(()())))((())()(())(()()()))(()(()())(()()())(()()(()(()))))(()()()()()(())(()())(()()()))(()()()(()()()(()))(()))(()()()()()()(()())(()()(())()()(()())(())(()(()())())(()()()))(()(())()(()())(()(()))(()()())(()()()()(()())())))(()()()()()(()())()()(()()()()()(()))(()()(()(())(()()))(()()())(()())))(()()()(())(()()())(()())(())(()()())(()()(())()()(())(())))(()()()()()()()(()())(()()()(()()))(())(()(()()()()))(()()()()()()(())))(()()()()()()(()(())(()()()))(()())(()()()())((()))(()(())()(())(()))(()(())()()(()()))(()()()()()(())()((())))(()()()()(()(()))((())()(())()))(()()()()(()())()()(())(()()()()(())((()))))(()(())()(())(()()()))((())((()))((()())()(()))(()())(()()(())()(()))(()()()((())()))(()()(())(()(()))(())(()))(()(()()())(()))(()()()(())(())(())(()()())(()()()()()()())))(()()()(()())(())(()()()()((()))()))(()()(())(()()())()()(()()())))(()()()(())(())(()()()()(()))(()()())(()()()()(()())(()(())())))((())()(()())(()()()(()(())))(())(()(()())()()(()()()()()))(()()())(()()(())()(())(()()(())))(()()()(())((()))())(()()(()())(()))(()()()()(())(())(()()()()(())))((()())()()(()(()))(()()(()))(()()(()()()())(()())(())(()()()(()()))(()()()()(()(())))))(()()()()(())(()()(()()()()))(())(()()()()()()()()(()())(()()()()())(())(()(())()()(()())(()))))(()((()))()(()(()))(()()()(()())(()()()()())((()))(()(())))(()(())(())()(()(())(()))(()()(()))(()(()(())))(()(())()())(()()()(()()))(()()()()()(())()))(()()()()()(())((()))(()())(()()()()(()()))()(()(()())(())()(()()())(()(()()))(()())((()))))))(()(()()()()())()(())(()()()())(()()(()))(()()(()())()(()()()())(()()))(()(())(())(()(()))(()())(()()(()())(()()()())))(()()()()()(()()())((()()))(())(()()()(()))(()()()(()(())(()())(()())))(()(())))(()()()()()(()()())(()(())()())(()()))(()()()()(())()(())(()())(())()(()(())(()())()(((()))))(()()()(()))(()()()()())(()()(()()()()))()(()()((())(())()(()))((())(()())(())(()()())))(()()()(()))(()(())(()(()))(()(()()()))(()()()()(())()(()))(()()()()(())(())((()(())))))(()()(()())((()())(()(()))))))"

    Returns: 667365350

  58. "(())(())(()((())()))(()()())(()()()(()()))(()((()((()()))(()()))))((())()(()()(()))()()(())()(()()(())()))(()()(())(()()))(()()()()((()))(((()(())))(())(()((())))(()()))(()()(()()(())(()()()())))(()()(()(()())))(()()()(())()(())(()()(()))(())))(()((()))(())(()())(()())(())(()(())()(())(()())(()()()(())(()()()))))(()()()((()()))(()(()()))(()()(()())(()()())))(()(())(())()(()()()())((())()()(()((()))())(()(()())(((()))()())(())))(()(()(()))((())(()))(()(()))(()(()(()())(()())))((())()()(())()(()()(())()(()()()(())))(()()(()())(())(()(()())))))(()()(())(())()(()(())(())(()()()()))(()()())((()())()(())()(()(()()(())())((()())(()()()))()((()())())(()()((()()))))(()()()(())(()()(())()()(())(()()(()())))))))(()((()))()(()()())()((()))(()()(()))((()())(())()(()()()(()()(())))(()()(())(()()))(()()())((())()(()()())))(()(()(())(()()())(()(()()))((()(())))(()(())(()))(()(())(())((((())))))(()()(())(())((())(()((()))))(()()()(()(()()()))))))(()(())()(())((()))()((()))(()()()(()()))((()())((()()))))(()(())()()(())(()()(())())(()()())(()()()((()))(()()(())(()())))((()(())))(()(())())(()()))(()()()(()())(())()(()())(()(())(()()(())))((())(()()))(())(()()(()))))(()()()(())(()())((()())(()()(()()()()(()())))((())(())()(()()))(()(())(()()()((())))(()(()()()()()(()((())))))))(()(()())(()())(()(()()))((())())(((()()))((()))(()()((())())))(()((()))()(()()()(()))(()(()())(())(())))(()(()())(()())(()))(()(())((()()))(())(()()()(()))(()()))(()(())()()(()()(())(()()))(()()()(()()((()))))((()))((())()(()()(()()())(()(())()()()))(())))(((()))((()(()(()))))(()))(()()(())(()()()((())))(()()(())())((()())()(()((()()))))(()()(())(()())(()())(()()())((()())()(()())(()()())))(()(()())(())(()()()(())(()(())())((()))))(()()(())(())(()()(()()(())))(())((()))))(()()(())(()(()())))(()(())(()()(()()(())(())(()))(()()(()))((()(())))))))(()()((()))(()())((())())(()()()()())((())()(())(()())(()()(())(()))((()))(()(()(()))()(()(())((()))(()()()))))(()(()())()()()(()())(()(()))(()())(()(()(())(())(()()())()))((()()())))(()(()()())(()()())(()(())(()))(()(()(())))(()()(())((())(()))(())(())()((()()(()))))(()((()))()(())()(()())(()(())(()()())())(()()()())((()()()()(())()))((()())(()()(())(())())))(()()()()()()(())(())(()())()((()())(()())())(()()(()()))(()()()(()())(()(()()()())(())))(()(())()((()()))((())((()(()()))()))))(((()))()()(()()()())(()()(())(((())(()()))))(()()())(()()(())(())()(())(()(())())((())(()())(()(())(()))((()))(()()()((())())(()(())))))(()()((()())())(()()()(())(()))))))"

    Returns: 455104990

  59. "()()()()()()()()()()(())(())(()(())())(()()())(()()()())(()()()(()()()))(()()(()()()))(()()())(()()()()(()))(()())(()())(()()()()()()(()(())))(()()()()()(())(()(())))(()()()()()()()()()()(())()(())(()())(()()()()))(()()(()())(()())(()()())(()()()()()()))(()()()()()()(()()()())(()(()))(())((()))(()()()()))(()()()(())()(())()(())()(()()()()()(()))(()()()()())(()()()(()))())(()()()()()(())(())()(()())(()()(()()))(())(()()(()))(()()()))(()()()()(())()(())()(())()()(())(())(()()()())(()()()(())()))(()()()(()())(())(()())(())(()())(()()()()()()(())(()()))(()()()()()(())()(()())))(()()()()()()()()(()(()))()(()(())())(()()(()))(()()()()()()())(()()())(()()()()()()()(()()(()()))()(()()))(()()()(())(()()()(()())(())(())(()())(()()()(()))((())(()()))))(()()()()()()()()()()()()(())((())())(()()(())()(())))(()()()()()()()(())(()()())(())(())(()()()(()))(()()()(())(()))(()()()(())(())()(()()))))(()()()()()(())(())(()()()())(()()()())(()()()())(()()()()()())(()()()()()()(()())(()()()()))(()()()()()()(()())(()())(()()()())(())((()))(()())(()())(()()()()()(())(()()()())))(()(())(()()())(()())(()()()()())(()()())(()()(()))(()()()()())(()()()()(())(())(())(()(()())))))(()()()()()(()()())(())(()()())(()()())(()()()())(()()()()())(()()()())(()()()())(()()()()()()(()))(()()()()(())(())())(()()()(()()))(()()()(()))(()()())(()()()()()()()(()))(()()()(())()(())(()()))(()()()()()(())(()()()()())(()()(()))(()()()))(()()()(()(()))(()())(()()())(())(()())(()()()())(()()())(()(())(()()))(()()(())()(()())(())(()()()(())))(()()()()()()()(())(())()(()())(()()()))(()()()()()(())())(()()())(()()()()()(())(())(()))(()()()()()()(())()(())(()()()())))(()()()()()(())(()()()()())(()()()()())(()()()()()()())(()()()())(()()()()()()()()(())()(()))(()()()()()()()(())(())(())(()())))(()()()()(())()(()())(())()(())(()()())(()())(()()(()))(()(()))(()()()()()()(())(()))(()()()()(())(()())(()()())(()())(()()))(()()()()()()()(()()())(()()()()))(()()()()()()(())(()()()()(()()())))))(()()()()()()(())()(())(())(())()(()()()()())(()())(()()()()()()(()()()()())(()()))(()()()()()()()()(())()(())())(()()()()()()()())(()()()()((()))(()())(()()()))(()()()(())()(())()(())(()))(()()()()()()()()(())(())()(())(()())()(()(()()())(()))(())((())(())())(()()()()()())(()()()()()()()()(()))(()()()(())()()()()(()(()()())))(()()()()(())(())()(()())))(()()()()(()())(())()(()()())(()()(())()(()))(()()()(())(()))(()()()()()()(()))(()()()()()(()()()(()())(()())))(()()(())()(())(()()))))"

    Returns: 206174241

  60. "((((((((((((())()(((((()))(()))(((((())))()()())))(())))(((())))(()))(())())(())(((())((()((())()(()))(((()())())(()))()((())(((((()((((()(())))))((()(((()))(()())(())())()((((((())))(()()())()))))))(()))()((())()(((((())))((()())()(()()(())())(())(((((((()))(()))()())(((()()()))())))(()()(()((()(((()(())))((())))()((())((((()))()))()()()())((()((()((())))))))))))))(())))((((()(())())((((((())))()(()))(((()((())((())((((()())))((((())(())())())))))(()((())))))()))(()))()((((()((()())))))))))))()())(()())))))(((((((((())((((()()))))))(()))((())((((()(()))(()))(((()()((()()))((())(())(((()()(()())(())))))))())((((((()))((()())())(()((()((()()))))))(((((())(((((())))))(()))(((()())(())(((())(()))((())((())(()()))(()())))()(()()))))))()))))(((()))))((())((((()(((())()))(()(()(()(())((())((((()))))))))((())((()()(()))())))))))((((()(())(()((()))())))(((()))((((())))()(((((()))(((())))(((())((()())))((())(())((()(((()))((())))()(()()))((()())((()())()))())))))())))(((()((())((()))(())((()(())((()(()))))))((())()((((())(()))))(((((((())()(()))))(()))))))))((((()(()))((((((((()))(((()))))))))))))))))((((())(((())(((()(())))))((((((())())())))))())((()))))((((()(((()())((()())))(((()(())))()()))(()(()))()(()((())())((()()))()))(()))))((((()))(()()((((()(()))))))((()(()((((()))()))))))))(()))(()))())((())(((()())(()(())))))((((((((()(())(()(((())(()))))))))((((()))((()(((()(()(((((())))())))(())((())((((())()(()(((())((()(((((((()))(()))((())))))()))(((())((((()))()))))))(((((()))))))))()(((()(((())(((()((())))()(())))(())((())((())((()))))(()(())(())()))))))))))(()((()(((()(())((()(())((()()))))((())))((()))))))(((((()()))((((((())))))((()))))((()((()(()(()))())))(((((())()(()))(()))))))()()(())))(()()))(((((())()(((())((()((())())))(((())()))(()(()()(()(())())))))))((()((((()(())()))((()((())(((()(((()))()))(())))))))))((((())))))()((((())((())))())))((((()))))))))(((((())(())))))))()))()))())))(())(()))((()()((()((((()())))((((()((())))))(((((()))()))(())))))()()())))))()))())"

    Returns: 36268833

  61. "((((((((()(((()((()((())((((())((((()))()))(((((())(()((())())))(((()()()((()())()((()))))))))(((())(()((()((((())()))(()))))((()((((()())(((())())()))((()())(()((()))))))(()(()(((()())))(((()))))))(())))))())()))((())))))))(())(((((((()((())()()((((())))())))())())((())(()(((()))((((()))(()((())))))))))))))((((((()(()((())((()((())))((())((()((())))(()))(()))()((((())((()())))))((((())))))))()((()()((())((()))(()))())(()((())((()(((())))(()(()(()((()()()(((()))()())())())(())))))(()(()(((())))(())))))())))(((()))))((((()())()((()()())(()((())))())))))))))()))))(((()((()(((()(((()))((())((((((()()))(((()))()))))(((((()())()))(()((())(()()(()))((()((())))()(()(()(()()(()())()(())(())))(((()((())((()())()()(()())))))))))(((((()())))))(()((()))))(((((())((())))((((())(()()))(((()()))(()(((()))))(()()((()(())(()(()(())))))((()))))))()((((())((()))(()))(((())(()((())(())(())())))(()((()())()(())))))))(((((()))))(((((()))))((((())(()()((()))())))(((()))())()))(())()(((((((((())))(((()())((()()())((())))))))(((((()())(()(()())(())))(()((())))(()))))(((())()(())((((()(())())()(()()()))((())((((((()))))(())()(()))))))))))))))(((()(((()(())((()()))))())))()((((((((()))()))()())((((()())((())))))())(()(())))((()((()))))((())))())))(((((((()()(((())()((((()))()))((())))(((()))(((()))()))))))(((()(()((((())((()(()((())))(())))))(()(()())))((()((((())))((())((((()))(())((()))())))((())()())))))(()(((()(()(()(()()(()()())()())))))))(((()))))))((())))(((()(())(((()()(()))))(()))(((())()()())(()(((((())()(()()((()(())))))((((())))((())))))))))))(((()))()))(()(()((())))))))))))((((((((((((()((())))((()))))))(((((((())()()(()()))()(()))(((()(()))))(((((()))))))))))(((((()()((())())))((((()))((((()(()))()((()(())()))))(()))((())))())(()))(())))))(((()()()))())))()))))(((((((()()((((()(()()))()(())(()()(()((()))(((((()))))))()))(()))((((()())(((())()(())))))))))()()))(()(((())()(((())())((()))())))())((()))((()(((((()(())))(((((((())))()(((((((()))))(()((((()))()((())))))))))(((()))))))(((())))((((()(((((()())(()(()))(()(()((())))())((()))))(()))))))(()()))()))((((((()()))(())))))(((((()))()(((()))((((((())(()))((()(())())()()))(((())())())))()((()((())))))((((((())((())(()())))()))((((((()())))))))))())(((((()))))((())))))((((((()((((()()((())((())(()(())))))))(((()))((((((((())))(((())))))(((((()()))))()))(((()())((())))))))(())))))()())()))))))(()))))))(()()((((((((()())((()))))))))())))))))"

    Returns: 432276872

  62. "()()()(())(())(()()())(()())(()())(()())(()()(())(()()(())(()(()))))(()()()()((()))(()())(())(())(()(()()()()))(()()()((()))(())()))(()()()()(()()())(())(()(()()(())))(()())((())()()(())((()))(()))(()()()()(())(())(()(())))(()()()(()()())(()()()()()(()()))(()(())())))(()()()()(())(()())()()(()())()()((())()()())(()()()())(()(()(())()))(()()()())(()(())(())(())(()(()))(()())(((()())))))(()(())(()())()(()()())(())(())(())(()())(()()(())()(()(()())))(()()()()()())(()()()())(()(())()(()))(()()(()()()))(()()()(())(()())()(()(())()()(())())))((()())((()))(())(()()()(()))(())(()()(()(())(())(()()))))(()(())(()(()))(()()(()(())((())))((())(()(())))(()())(()()(()())))(()()()(()))(()()()()()(())(()()()()))(()()(()(())()))(()()()()()(())()(()()()(())))(()()()()()(())(())(()()()())(()()))(()(())()()()(()())(()(())(())(()())(()())((()()()))(()())(()()()())))(()()()()()(()())()(()())(()()(()())(())(()()()()()(())))(()()()(())()()(()()))(()()(())))(()()()()(()())(())(()()()())((()))(()()(()())()()(()())(()(())(()))(())))(()()()()))(()()(())()(())(()()()())(())(()(()))(()())(()()()(()()))(()()()()()()(()())(()()))(()()()()()(())(()())()((()))(()()()))(()()()(())()(()())(())(())(()()()()()))(()()()(())(())(()()(()())(()())(()))(())(()))(()()(()()())(()()()()(()))(()(()()()()()())(())(()()(()()()))(()(())(())(()()()())())))(()()()(()())(()()()()(())())(()(()())()(()()(()())))((())()()())(()(())()()(()()(())())((()())()(()())))(()()()(()(()()))(())(()(())(()()))(()))))(()()()()()()(())(()()(()(()(()))(()()))((())()(())(()())))(()(()())(()()()()))(()()()(()())()(()()()())(()()))(()(())(())(()()())(())(()()()()(()))(()(())(())(())))(()(())()(())(()())((())(()())()))(()()()()(())()(()()())(()(())(()))((())(()()()())(()())))(()()()((()))(()(())(()()))(()()(())(()()()))(()()(()()(())))((())(())(()()()(())()((()))(()))(()()()()()(()))(()()()()(()()()()))))(()(())(())(())(()())(()()())(()()()(())(())(()())(()))(()()()()(())(())()((()))(()))(()()()()()()()(()()()))((())()()(())(()(())()()(()))(()()()(()))(()()()()(()()())(()(())())(()()(()())(()()(()))))(()(())()(())(())((())())())))(()()()()()()()()()(()()())(()()()()(()))(()()(())(())()(()))(()()(()(()()))(()()())(()()()()))(()()(())(())()()(()())(()())()(()()())((()())()(()))(()()()()(()())()(())()(()()())(()(())))(()()(()()(()))(()()())(()()))))(()()()()()()()()(()())(()()((()))()()(()(())))(()()()()(()())(()()()(()())(())(()(()))))(()()()()(()(())()))))"

    Returns: 363337019

  63. "(((((())((((())))))((()(()())(()(())()))((((()())(()((())())((())))(()))(()((((((())))(())))()())()((())(((()))(()(()))(((()))(()(())(()()))()())(()())))))(((()()))()((()))))))())(((()))(((((()))((()(()))((()(()))))(((())(()))(())))(()()((((()(())(()))((((())()())((((())))(())))()))))))((()((()))(((())))((())(((())))(()(()(()(())(())))))))((()(()()))((()))(((()(((()))))))(((()(((())))))(((())())(((()))((((())))))(((())()((()()(()())))(()((()))))((()()(())())())())))(((())(())(()((())((())())())))((()(((())(()(()))((())))(((()))()(())((()((((()))))(()(()()))((())(())(()(()(()(())(()(()()))(())))((()(()))))))))))))(())))(((((((()()))((()()(((())))))))(((())((()))((())(((()()))()())))))(()((())((((())))(()(((()(()))(((())))))((()(())()))))((()()(()))(()(()()(()()((()))))((()))))(()(()(((()))((()(()))((()(()(())))))((()(()(())()(())())(()(()(()))((())(())))(((())))()((((())(()())))(((()(()))((())(()()))((((()())(()(()()())))))))))((((())))))))))))))((()())((((())(()((())))((()(()()))((((())())())(())))(()(()(())()))))((((()))))()))(()((((()(())((()(((())(()(())())((()(())())))))))(()(((((())())(()()))(()(())((()()()))(()))))((()(())())(((()))(())))(()(())(()(()))(()(()((())((()()))))(()))((()())(()()(((())))()))())))((())()((()(()())(((()()))()))())((((()))()((())(()))))((()()((()))))(((((()))(((()(()))(()()(()))())((())(((())))((()())(()())((()(()))(()(()()())))(()(()(()()))))((()((())())())))(((()))()((())(())(((()))((()))))))))(((((()()(()()()))())((()(())))(()((())())((()()()(())((()((()))())))))(((()())(()()))((((()((()))()))(()()))(((()))(((()))))((()((()(()()(((()))())))))))()(((()))(()(()())((())(((())))()((())))))))(((())((())))((((((()))((())()())((()()())(())))((())((()())))()()(()()(())(()((()())))))()((((()())())())())()))(((()(())))((()(()))((((())))))(((())(()(())((()()((()))))))(()(())(((()(()))(())()))((()(()(())))())))))))()))()))(((((((()()))(()(()))((()(())((())((()))()))()))))((()((((())))()(()(()((())(())))(()())(()(())))))(((())(()((())()((()))))())))(((()()())((()()()((()())(())()(())((()))))(()())))(()((())(()))(()))(((()))()((()((())()))((((((((())))(((()())))(((((()))(()))()(()())((())())(()()(())))((()((())))()))))))((()(())))))))(())((()(()((())((())))(()(()(())))))((()((())()(((())))))())()))))())"

    Returns: 515268205

  64. "((((()))(((())((())((())())))(()(()((()())(()()))(()())(((()))((((((())())(())))((()))))(((()))((()())()())))(()(()()())(()(())((((())()((()())))))))))))(((())((()(())((((())))((((((())()))())((((()()))))))))))(((((((()))))(())))(((()(()(())))())((()())((()(()(((()))()))))(())((()((()(()))))(())))))((((()((()((((()))(())()))()))((((()())()))))(((())(((()))((((())(())))))((()())(((())())()(()))()))(()(((())(()(())(()))))(()((()()(()()))())(()(((())()))(())()((()((()(((())))(()()))())(())(((())(()(())()()()))))))(()(()()))))()(((()(()))()()))))((()((()))(()())))))(((()((())))((())(()()(()(()(()(()(())))))(())))(()(()())(()(()()((())())))))((()(((((())())))(())((())))(()(()()))(()()((())))((())))))((((()()))((())((()((()(()))((()(())())(()(((((()))))(()((()())))))))(()(()(((()())))(()()))))(()((())((()((())((())))())(())))((()()(((())(()((())())))))(()))(((((((())()())()))))((())(()))()(((()(((()))(())(())()))((()(()()()(((())))))))())((()(())((()))(())(()(()())))))))((()((()((()))((())(()())))((()(())(()))()(((()()(()))))((()())))(()((()()))))()))))((())(())()))(((((())))(((())()())()(()((())))(((((())(()))()))((((())()(()((())))(()))))((()()((()(()))))((()))((()(()())))(()()()(()(()())(()))(()))(())))((()()()((()))))(((()(()()))))))(()(((())((()()(((())())))(((())()()(()((()))(()()))((((())()())(((()))))(())))))))(((())(()()))))))((((()))((())(((()))(())))()(()()()))(((())((())()))()(()(()(((((()())())))))(((()((()))))(()((())((()))))()((((())()))))))((()(((()()()())((((())))(((())))((())(())))(()))(()(()))(()((((()(())))()(()((()(()))))((())))()()))))()(((((())()(())(((())))((((()((())(()))))))((())(()()(()(((()))()))))(((((()))(()()())))(((())(())((())))((())(()(((())()(()(()()))))(())))))(()(()((()(()(())))())(((())(()))())()))))(()()(((()(()(()))))(((()()())(()(()())()))))))(((((())((()())))((()))(()))())((((()()((())))(()(())(())))((((((()()((())())))(((()()))))(((())()))))(((()(()(()()))(()())(()((())))(((()())))))(()(())((()))))))(()((((()())())(((((())))(()(()(()))((())(()))()()))()(()(()(((())())(()()(())))))((())((((()())((())))((()((())((()(((()())))((()((())()()))(()((()())))((((())))))))(()))(())))(()()(()))))(())))(()((((()()(()()))(()(()()))())((()))))))((())(((()(((())))()))()(((((())))()))(()((()))))((()())(()()(()(((()))))(((()))))(()(((()(()(()))())))))(())((((((((((()))(()((())))))((())((()(()(()((()())))))))))))))))))(()((((()))(((()))((((()))((()))())(()(()(()()))(())())(())())(()))))))))))"

    Returns: 999911988

  65. "()()(())()(()(()))()(())(()((()))()())(()(()))(()()()(())()(())(()))(()()()(())()(())(()(()()))(()()()(()(()()))))(()(()()()()()(())))(()()(())((()))(()())(()(())()))(()()(())()(())(()()())(()(())())(()()()(())(()())(()(())(()()))(()()()))(()(()(())()(()()())))(()(())()(())(()()(())(())(())(()()(())()(())(())))))((()()()())((()()))(()())((())(()))((())(()))(()()()(()()())((()()(())))(()(())))(()()(())(())()(())()(()()(()))(()()())(()()(())(()())(()())))(()()()()(()()())(())(())(())(()())(()()()())(()()()(()))(()()(()())(()()()()))))(()()(()())(()())(()()(())(()()()))(()(())()(()()()()))(()()(())(()))(()(()()(())()(()())()))(()()()()((()())))(()()()()(())())(()()(()())(()(()()))(()()())(()()(()()))((())())(()()()()(())()()))(()()()(())(()())(()()()(()))(()()()(())(())(())()()(())(())(()()()(())()))(()(())()(())))(()()(()(()()))(()(()(()()()()))(()()(())((())(())))(()()()())))(()()(()()())(()()())(()()()()()(())()))(()()()(())()()(()()())(()())(()())()(())(()()()(()())(()()(()))(()())(()()())))(()()()()(())(()())(()(()))(()()()()()()()(()))(()()(()()()()()())))(()(()())(()(()())()(()())(()()))(()())(()()()()()(())(())(())))(()()()()()()(()()()())(()()()(()()()))(())(()()()()()()())(()()(())(()()()(()())())((())()(())()())(()()()(())(())(()()(())(()))))(()()(()()(()))((()()))(()()()())(()(()())))(()()(())()(())(())()(())()(()()())(()()()()(()()))(()())(()(())()()(()())()(()))(()()()()(())(())(()(()))(()()(())))(()()()(()()()(())(())((()()))))(()()()()(()())(()()())(()()()()()(()()(())()()()()(())))))))(()()()(())()(())()()(())(())(()()()()())(())(()()()()()()(())(()()))(()(()()())(()()()))(()()((())()))(()()()())(()(())()()(())(())(()())(()()(()()()))(()(())(()()))(()()(())))(()()()())(()()()()()()(()())(()()())((()))(()))(()(())()(())(()())((()())(())()()(())())(()(()(())())(()(())))(()()())(()()()()(()()())(()(())())(()(()())(()))())((())(())(()())))(()()()(())(()())(())(()())(())()(()(()(()))(()))(()(()())))()(()(())(())(()(()))(())(()())(()()(())((())))(()()()()(()))(()()(()(()))(()())(()()(()))(()()()()(()(()))))(()()()()()()()()(()()))(()()(())()(()())()(()())(()()()(()(())(()())))(()()()()(())()()(()()()()((())())()))(()()()(())(()())(())(())()(())(()()(())()(()()()())(()(()(()))))(()()()()(()()))(()())(()()()()()()(())(()(())))))((())()()(()()())(()()(())(())())(()()(())(()(())))(((()))(())(())(()()()())(()()())))))"

    Returns: 927221561

  66. "()()()()()()(())(())(()())(()(()))()(()())(())(()()()(())())(()()()()()()()()())(()()()()()()()(())())(()()()()()()()()()()(())(()()(())))(()()()()()()()()(())()(()()())())(()()()()(())(())(()()))(()()()()()()()(()())(()()()())(()()()()(())))(()()()(())()(())(())(()))(()()()()()()(()())()(()()()()))(()()()()()()(()()()))(()()()()()()()()()()()(())()()(())()(()()(()()()())(()()())))(()()()()()()(()())(()())(())(()()()()())(()()(()))(()()()()()()()()()()))(()()()()()(()()())(()))(()()()()()()()()()(())()()(()())(()()())(()()()())(()()()()))(()()()()()()(())()()()((()))(()())(()(()())()()))(()()()()()()()()(())(())()()(())(()()())(()())(()()()()())(()()()(()))(()()(()())()(()()))(()()()()()())(()()()(()))(()()()()()(())())(()()()()()()()()(())()(()()))(()()()()()()(()())()()()()(()))(()()()(())(()())(()()))(()()()()(())()(())(())()(())()(())))(()()()()()()()()()()()(())(())()(()())(()()()()(()))(()())(()()()())(()()()()()()()()(())(()))(()()()())(()()()()()()(())(()()()))((())()(())()(()()())()(())(()()()()()()()))(()()()()()()()()()()(()())()(()()))(()()()()()()()()()()()()(()())(()()()(()))(())(()()()()()()(())(())(()())()(()()(()))(()()())(()()()()()(()))))(()()()()()()(())()(()())(()())(())(()()()()()())(()()()())(()()(()()()))(()()()(()))(()()(()()())(()()))(()()()()()()(())(()()(()())))))(()()()()()()()()()()(())(())(()())(()())(()())(()())(()())()(()()())(())(()()()()(()()))(()()())(()())(()()()()()()()()()(())(()())(()()())(()()()))(()()()()()()()()(())()(()())(()()()))(()()()()(())(()())()(())(())(()())(()()()()))(()()()()()()()(())(())(())(())()(())(()())(()()(()()))(()()()(())()()))(()()()()()()()()()(()()()()()())()(()())(())(()()())(()()()()()()(())(()()))(()()()()()()())(()()()()(()())()(()()())(()())()(()()()()()))(()()()()()(())(())(()()()()())(())(()()()())(()())(()(())(()))(()()()()()(()))))(()()()()()()()()()(())(()())(())(()())(()()()()()()(()))(()()(()()))(()()()()()()()()()()()()(())(()))(()()()()()()()()()(()()()))(()(()()))(()()()()(())()(()))(()()()()()()(())(()()))(()()()(()())(()()())(()())(()()()(())))(()()()()()(())(()())()(()(()))(()()(()())))(()()()()()(()())()()(()()()()()()(()))(()()()()()()())(()()()(())(()()())))(()()()()()()(())()(()()()()()(()()))(())()((())())(()()()()()(()()())))(()()()()()()()()()()(()())()((()()))())))"

    Returns: 339979936

  67. "()()(()()(())(()))(()()())(()()()()()(())((()))())((()))(()()()(()(())())(()())(()(())()()))(()()(()())(()((())))(())(())()(()())(()()()(())))(()()(()())()(()()(())))(()(())()()(()())(())(())((())(()()))(()()(()())))(()()()()()(()()())(()()()(())))(()()()(())((()))(()()()())(()()()()(()))((())()(()))(()(())(()()()(()(())))(()((())))((()(())(())))))(()()()()(())(())(()()(()))(()()()(()))(()(()))(()()()(()))(()()()()()(()()(())))((()())(()()())(()()(()))))(()(()()(()(())))(()()(()))(())(()()()()()(()()()()(())())(()(()())))(()()()()()(()())(())))(()()()(()())(()()()(())())((())()()(())))(()()()()()(()())(()()()()()()(()()))(()(())(())())(()()()(()())))(()()(())((()))(())((()))(())(()(()()()((()))))((()())(()())(())))(()()()()(())(())(())()(()())(()())(()((()))(()()()()(()()()())))(()()()(())(())())(()()()()()(())()(()()()())(()())(())(()(()()))(()(()))(()()(()))(()()()()(()()()()()(()()(())())))(()()(())(()))(()()(()())()(()()(()())(()((())))))((())(())(()()()())(()(())()()()(()()())(()()(()))))(()()()(())(())(()()(())(())))((())()()()(())(()()())(()()(())()()()(()))(()()(()()))(()(())()(()()(()))(()()())(()(()()()()))))(()()()()(())()(())()(()()()())(()()(()))(()(()())()(()())(()()))(()()(())()()(()())(()()()(())())))))(()()()(()())()(()()()(()))(()()()()(()))(()()()(()()))(()()(())()(()()))(()()()()()()(())(()())(()()()())(()()())(())((()()()())(()()(())()(())))(()()((())())(()()())(()())(()()(())(()(()))()(()()(())()(()()))(()()()))(()()(())(()()()))(()(())()(())())(()()()()()()((())(()()()()))(()(())(())(())))(()()()()(())(())))))(()()()((())()(()))(()())(()()(()))(()()()()(()(()))(()()))(()(()())()((()())))(()()()(()())((())))(()()()(()())(()())(()()()(()()())((())())))(()(()()())()(()()(()))((())))(()(())()())(()(())()(())()(())(()()))(()()()()()()(())()(()(()()))(()())(()())(()()()())((())())(()()(()))(()()()()())(()()()(())()()()()(()()()))(()()()()(()()())(()(())((()()())))(()()()(()())(()()(())(()))))(()(())(())(()()())((()))(()()()()(()()))(()()(()())(()(())()())(()())(()(()())))(()()(()())()()()(()))))(()()()()(())()(())(()(()())())(())(()()(())(()))(()(()()()))(()(()())())(()()()()(()()())(())(()))(()()(()()())(()(())(()))(()()()()(()))(()()(()()())(()(()()())(())((()))()()(())(())))(()()(())()(()())(()()(()(())))(()()()(()))(()()()(())(())))((())((()))(()(())())(()()()()(()()))(()(())()(()()()))))))"

    Returns: 580208059

  68. "(((()(((()(((()))))((((((()((((()))(()))((()()()))))(((((((()()(())))((()))(((())))))()))((((((())))))))((((((((())())((()))))(((())))(((((((()(()((()))))()())(((()()(((())))((()(((())())))((()())())))())(()))))((((((()()()())((()()))))((((()))()()))))((((()(()))))()()()())))(()))(())))((()((()(()((()(()))))((())(())((()(()())((((()))))((())())))))(((())(()((())((((()))((()()))(()(())(())()(()(())(())(()(()))(())))))(())()((()(()(())(())))(((((()))(()))()))(()()))))))()())(((((((((())((())((())))(()()((())))))))((())))))()))(((((((((()))(((()))))))(()()))))))())())))))()))(((((((())((()))()((((((()((())))((((()(()())))))((((()))())))())))(()())))())(((())(()))))))))()((((((((((((()()(()))(((()((((()(()()))(()))))))())(()(((((((()))())))(((()))))(((()(((()((((()()(()))))))())))((()(((((()((())))(()))((((())((((())))())()))()(()(((((()))))()))))()())()((((((()((())()((()))))))())))(((())(())())))))(()))((()(()(((()((()()((()()))))(((()((())(()()(()))())((()((()))))))((())()())))))((()((()((()(()))()((((())))))()))(())(((((())))((((()(()())(())))())(())())))))((()(()((((())(()())))(())))))())((((()()()())((()())))))))()((()(()((()))((((((((()(()()(((())))((())))))(((()(())())((())(()(())))))((((((()))))((()((())())((())))())())))()))))()))()(((()()(((()((((())))())))(((())(()((())((()()))))(()(((()(()(()))))(()(()))(())((())(()))())())))(((((()())((())(()))())))((())((()))))))))((((((()()))))((())))(((((((())((())((()))))))((()(((())(()()()))((()(())((())())))((((())))()))()(())))))()))))))(())))())((())((((())))()))(())))))))(((((((((((((()()()))))(()((()()(())()())))(((()()(())))(((((()())))))(((()()(()))(()(())())))))(((((())(()((()))())))(((()()))))(((()())()))))))))(()))(((())(((()(()))))(((()))((((())())(((((()((()))(((((()(())))(()((()(()))()))((()())))((((()(((()(()))((((()))))((()()(()))(()(()))))))))))))((()))((()(()))))(((())))(()))))))))(((((())((((())(())))()((()))))((()(()))(())((())((((((()))(((())))(())(((())))))))))()())()())((()(()((((((()()()()))))((()))()))(((((()))(()((())())((()((())))))))()((())()()))))))))()))()))))(())))"

    Returns: 150942489

  69. "()()()()()(())(()()(()))(()()())(()())(()()()()())(()()(()))(()()()()()(())())(()())(()()()()()()()(())()()(()())(()))(()()()()()()()()()(()))(()()()()()(())(()(())))(()()()()(())(()))(()()()()()(()()()))(()()()()()(()()()()(()))((())(())()())(()()()())(()()())(()()(())(())(()()()())))(()()()()()()(())(()()()()()())(()())(()()()()()())(()()()()()()()(()(())))(()()()()()()(()()())(()()())(()())(()()())))(()()()(())()()()(())(())(()())(()()()()()))(()()()()()()()(())(())(()()()()()(()())(()(()()))(()()))(()()()()()()()()()(())(()()()()))(()()()()()))(()()()()()()(())()(())(())()()(())((())())(()()(())()())(()(()()))(()()(())()(())(()()()()))(()()()()()()())(()()(()))(()()()()()()()(()())()()))(()()()()()()()()()(()())(()()(()))())(()()()()()()()()()()()()(())(()())(()()()()()))(()()()()()()()()(())(())(())(()()()()())(()()()())(()())(()()()())(()())(()())(()()()(()))(()()())(()()()()())(()()()()()(()))(()()(()))(()()()()()()()(())(()())(()))(()()()()()())(()()()()()()()(())(()()()())(()())(()()()))(()()()()(()())(()()()(())(()())(()()()()))(()()))(()()(())(()()(()))(()())(()()()())(())(()()()()()()()(())())))(()()()()(()())(()())((()))(()()()()(()()))(()()())((())()()(()()))(()()()()(())(()))(()(())()()()()())(()()()()()()(())(())()(())(())(()()()()(()()())))(()()(()()()()()())(())(()()()()()()()()(())(())(()()()))(()(())())))(()()()()()()()(())(())(()())((()))()(())(()()())(()()()())(()()())(()())(()()()()(())(())()())(()()()()()())(()()()()()(())()(())(())(()()()()))(()()()()()()(()))(()()()()()(())(()())(()())(()())))(()()()()()()()(()()())(())(()(()))(()()())(()())(()(()()))(()()()()()(()())(()())(()()())(()()()))(()()()()()()()(()()))(()()()())(()()()(())()(()())()(())(()(()())))(()()()()()()()()()()(()())(()()())(())(()()()())(()()(()()))(()()()()())(()()()()())(()()()(())()()()(())))(()()()(()()())(()())(()()()()()())(()(()())()(()())(()))(()()()()()(()())()(())(())(()()()))))(()()()()(())()(())()()()(())(())(()()()())(())()(()()()()()()()(())(()))(()()()()()()()()(())(())(()())())(()()()(())(())(()()()()()(()))(()()()))(()()()()()()(()())(())(())(()())(()()(()()))(()()()()())(()(())())(())(()()()(()())))(()()()()(()()())(())(()()()()(())()(())(()())))(()()()(())()(()()())(()()()())(()()()())(()()()()()()()(()()))(()()()()(())()(()()())(()()()(())(())()()))))"

    Returns: 337823304

  70. "()()()()()()()()()()(())(())(())()(()()())(()()()())(())(()()()())(()()(()))(())(()(())()(())(())()()(()))(()()(())()(()))(()()())(()()()()()()()(()()()()))(()()(())()())(()()()()()(())(()()())(())(()()()(()()())(()())))(()()()()()()()(()())(()())(())(()())(())(()()()()())(()))(()()()()(())()(())(())()(()()())(()()))(()()()()(())(()()()()()()()()))(()()()()()()()(()())(())()((()()())(()())))(()()()()(()()(())()()()()(())(()()(())))(()()()()(()()()()())))(()()()()()()()()()()()(())(())(()()()(()()))(())(()()()()())(()()()(())()))(()()()()()()()(())(())(()()()()(()))(()()()(()())()(())()(()()))(()()()()()(()())(()()()))(()()()()()()()(())()(()())))(()()()()()()()()(()())())(()()()()()()()()()((()))(()()()()(()()))(()()()(())()(()()()(())))(()()(())(()())(()()))(()())(()()()(())(())(()()()())(()()()()())(()())()(()()()()()()(())()()))(()()()()()((()))(())(())(()())(()()()()()(()))(()()))(()()()()()(()())(()()()()()()()))(()()()()(())(()())()(()())))(()()()()()()(())()()(())(())()(()()()()())(()()()()(())()()()(()()()()))(()()()()(())()()()(()())(()()()()()()))(()()()()()()()(())()(())(()()()))(()()()()()()(())()(())()(()()()()()())(()()())(()()()()()()()(())(()()))(()()()(())()()()(())(()()))))(()()()()()()()()()()()(()())(())(()())(())()(()())(()()(()()))(()()()()()(()()()))(()(())(())(()()()()()))(()()()()()(()()))(()()()()(()()())()()))(()()(()())(())(()())(()())(()())(()()()()()()()())(()()(()())(())(()()))(()()())(()(())(()()()))(()()()(())(())(()()())(())(()()()()())(()()()()()()))(()()()()()(())(())(()())(())(()()())(()()()()))(()()()(()()(()))(())()(()()()))(()()()()()()(()()())(())(()()()()()()()()(())))(()()()()()(()())(())(()()())(()()()()()(())()(()))(()()()()()()(()())(()()()())(()()()()()())((())(()))(()()()())(()()()()(()()(())())))))(()()()()(())()(()())(())(()())(()(()))(()())(()()(()))(()()()(()())(()))((()))(()()()()(()))(()()()(())(()())()()()(()()())(()))(()()(()))(()()()()()(()()())(()()()()()(()()))(()(())()())(()()()()()()()(())()(()()())))(()()()()(()()())(())()(()()()())(()()())(()()()()()()())(()()()()()()()(())(()())()(()))(()()()()()()()(())()()(()()()()(())(())(()()()()()()))))(()()()()()()()(()()())()(()())(())(()()()(()))(()()())(()()()(()))(()()()()(()())(())))(()()()()()()(())()()(())(())(()())(()())(()())(()()(())())(()()()()()())(()()()()()(()))(()()()()()())(()(())(()))))"

    Returns: 741849032

  71. "(()())(()()(()()())())(()(())()(()())())(()(()())()(()()(())(())(()(())(()))))(())(()()(()))(((()))(())(()(())())((())(())()()(()())(()(()())(()))(()()((())()(()(()))))))(()()()(()((())))(()()((())))(()(()()())))(()(())()()(()()(()))((())(()(())))(()()()()(()(()())))(()()(()))((())()()(()())())(()()()()()()(()())(()(())(()))(())(()()(())(()())(())(()())())))(()(())((()))(())((()())(()())(()))((()())(()((())))(()()(()(())))()((())(())((())))((())()()((()))(()()())))(()(()(()))(()()())(()())(()()(()))((()(())))(()(())()()))(()(()()(()))(()()()()()()(()(())()))(((())())()()((()))())(()()(()()(()())(()())()(()()(())))(()(())())(()(()))(()(())(()()())(()))(()()(())((())()())()(()()()(()()))(()()))(()()()()(()()(())((())(()())((()())))))(()()()((()()))(()(()))((())((())())))(()()()()()(())(()()(()(())()(()())(()()()))((())()(()())))(()()(())(()()())(()(())(()))(()(()(()()))(()()()(())())()))))))(()(()())()()(()()())(())(()()(())()(())(()(()))(()()()()(())(()(()))()(()())()))(()()()((())(())())(()(())((()()))(()()(())((())(()(())()(())))())))(()()((()))(()()()(()()()(())()))(()()()(()))(()())((())(()))(()()()()(())))(()(()())()(())((()))(()()()()(())))((()(()))()(()())(()()(()()(())))(()(())()(()())(()()(())))(()((()())))(()(())(()()(()())))(()()(()())(()()(())(())(()(())(()))(()))(()()()(()(())(()()())(()())))(()((()())()))(()(()()())(())(())(()(())))(()(()(())(())(())(()(())))(())))))(()()(())()((()()))(()()(())(())(())(()()())((()()()())(((()))))(()(()())(()()()()()(()(())())(()())(()(()))))(()()(())()(()(()(()())))(()(()()())())(()()()(())))((())()()(())(())()(()())(()()()(()()))(()((())())()()())(()(())(()(()()))(()()()))(()(()(())())(()()(()()))))(()()()()()(()())(()()())((())(()()())(()()()))(()((()))(()(())))(()()(()(()))()((()(())()()))))))(()()(())((()())(()(())())(())(()()()((()))()(()()()()(())()))((()())((()()()))))(()()()(())((())()(()(()))(()()(()()))))(()()()(())((()))(()()(()())(()()(()()))))(()()()(())()(()())((()())(())(()()(()))()))(()(())(()(())(()()(())))(((()))(())(())(()())(()(())(())()))()(()(()())((()(()())))(()))(()(())(()())(())(()())(()())(())(()()(())()))((())()()(())))(()()()(())(())(())(()(())(())(())(())()(()()(()))(()(()))(()()(())((())())(())))))"

    Returns: 685382794

  72. "()()()()()()()(()())(()(()()))()(()()())(()()()())(()()()()()()(()())()(())(())()(()(()))(()()())(()))(()()()(())()(()())())(()()()()(()()())(())()(()(())()()))(()()(())(())(())()()(())(()())(()()(()()(()()))))(()()()(()()))(()()()()(())(()()(())(()()))(()()(()())(())(()()()()))(()()(()())()))(()()(()())(()()())(())(())(()()())(()()()()(()))(()()()()(()()(()))))(()()()()(())()(()(())()())()(()()()(()))(()()()()(())(()()())))(()()()()()(())(()())()((()())())(()(())))(()()()()()()()()()()(())(()()())(()()()(()))(())(()()(())())(()()(()))(()()()(()()()))(()()()()(())(()())(()()())(()()()(())(()(())))(()(())(())(())())))(()()()()()()()(())()(())((())()(()))(()()()()(())(()()()(()))))(()()()()()()()()(()()(()))(())(()()())()(()()())(()(())()(()()))(()(())()(())(()()())(()()()()()(())((())))))(()()()()()()()()(()())(()()()()()()())(()()(())(()()()))(()(()()()()))(()()()((())))(()()()(()())(())(()))(()()(())()()()()(()()()()))(()()()()(())()(()()(()))(()())(())(()())(())))((()())()(()()()()(()))(()()()()())(()()(())()()()(()())())(()()()()(())(()()()()()(()())(())())(()()(())()(()())))(()()()()(()())(())())(()()()()(())(()()())(()()()())(()()()()))(()()(())()()()(())()(()())(())((())(()()))(()()))(()()()()()()()(())(())(())(()()()())(()())(()()(()))(()()()()(())(()()()))))(()(())()()(())()(()())(()())(())(()()()()()())(()()()()()(()))(()()(())(()))(()()()()(()))(()()()())(()()(()()())(()())(())(()()(()())))(()()())(()())(()()()()()()(()())(()()(()())(()()))))(()()(())(())()(()()()(()))(()()(()())(()()()()))(()()()(()))(()())(()()()()(())())(()())(())((()))(()()()(())(())(()()()(()()))()(()))(()()()(())(())(())((()))(())(()()(()(())()))(()(())(())))(()()()()(())(()())(()()()()()()(()))(()()((()))()(()())))(()()())(()()()(())(()())(()()()()()()()()(()()()))(()()(())(())(())(()()()())(()()()(()))(()())))(()()()()(())(())()((()))(())(()()()()))(()()()()()()(())()(()()()(()))(()()()((()))())(()()()()()(()))(()()()()()()(()())()))(()()()()()()()()(()()()()(()))(()()())(()()()(()()())(()))(()()())(()()()()()(()(())(())(())))(()()(()()()()))(()()()()(()())(()(()))(()()()))(()()((())(())()(()())())))(()()()()(())()(())(())()(()()())(()()()))(()()()(())(())(())(()()())(()()))(()()()()()(()())(())(()()())(()()(()()))(()()()())(()()(())())(()(()))(()(()()()())(())(()()()(()())()())(()()(()))(()()()(()()())))(()(())()(()(()))(())(()()()())(()()())(()()(())()()()((())))(()()())(()()()()(())())(()()()()()()(())()()(())))))"

    Returns: 183693723

  73. "((((((((())))(((()((((((())()((()(((())()((())()))())(()((((()(((())(()))))())))((()(())))))))((((((()))(((((()))(()(((())))((((())()()))())))((((((())))()))((((())))())))())((()(()(((((()(())())())((((())(())(())))())((()))(()))())(((()))((((()()((()(()()(()))(()))))((()(())))))(((()()))))))))((((()(((())()(())))))((((())((((()((())))(())))))))()(((((((((()()())))))((()))())()))(())()))((((()(((()(()))(()((()())))(())((((()(()()))))(((()))))))(()))(()()))))()()))((()(())()(((((((()(())))))))(((())()))((()(())))))))()()))))))(((((()((((((()))(()))((((()(((()))())((((((())((())))(()))))))))())((((())(((()()))((())(((((((()()))(()))))((()(((()))))))(((())((())))(((())))())))))((())()(())((((())(((((()()))()()))))(((())()())((())())((()))())))))))(((())(((()(()))((()((())))((()((((())(()()))())))(()()()())(((()))((())())(())))))()))))((((())((((())((((((((()())()))))()(((((()((()())))))))))))())((((((()))()())))()(((((()))))(()()()))())))())((((((((()((()))(((())(((()))())((())))))()(())))((()()())((())))))(((((()))())(()((()(()())))((())((()))()(((()(((())))))))))))())())))(()(((((((((()))()))(())))((((()((()((())(()))())((((())))()(((())((())))()))))(()(((()(()))(()))))((((())(()())))(((((())()(((()(())))(()())()))(()))()))()))(((((()()))))()())))((()()((())(((()(()())))((())((()())(((())))(((())((((()))))))))(((((())())(((()(()))(())(()))))(())(()((()((())))(((()))))(()()))))((((((()())))))))))(((((((())())(((())((())))())(((()))()))(()((()(())(()(()))))()))))))((((()((())((((())))(()))())))())()(((())(()))))))()))))(()))((((((()))())(((()))(((()))()))))(((()())))())((()))(((())((((((()((()((((()(((())())()))))))((()(((((()))(((((())))))))((((())()))((()))))(())))))((((((((())()(()((((()())(()))(((())))(((((()))()))))))))())((((()(())((())))))))((()((()(())((())(())))))()))()(()((((()(((()))(()))))(())(((((())))(()((()())(()((()()())))))()(())()))())((()(((()()())()(((())(())())))))))(()(((()))((((()(()))(())))()((())))(())))))(())(()(((()((()(((()))))(()))(((((())())(()())((((((()))())))))())((())((((()((())(()())))(()((()))((()))(((()((())))))((()))))((((())((())))(()(()))))(((())))(()()))(((())(()))())))(((((((()())(()))(())((((())())(())))(((())))))(()(((())(()((())(((()))())))))))(((((()))(()(()()(()())(((()()))))(()((())))()))()(())(()))))((()()((()()))))(()()))))))(()((()))()((())()(()(((()()))))))))())))))))(((())))))))((()))))))(()))))"

    Returns: 84435698

  74. "()()()(()())(()())(()()())(()()())(()(())()(()())(())(()()()()())(()()()(()())((())())))(()()()()(()())(()))(()()()()()()(())(())(()())(()()()(()()())(())()))(()()()(())(())(()(())(()()))(()(()())(()()))(()()()()()()()(()))(()(()))(()())(()()(())(()()(())(()))(()()())(()())(()()(())(()())(()))(()()()(()())(()(())))))(()()()(()()()()())(()()(()(()))(()()(()())))(()()()()(())()(()()(()()))(()()(()()))(()()()()()()()()()))(()()()(()()())))(()()()(()()()()(()(())))(()()(()()))(())(()()())(()()()()(()))(()()()()(())(()()()(())))(()(())()()(()())(()()((()())))(()()()(()))(())(()()()()(()())(())(()))(()()())((()())(()())(())(()()()()))))(()()()()()(())()(()()()(())())(()()(())(())())(()(()))(()()))((()(()))()()(())(()()()(()()()(())))(()(()())(()()(()()))(()()(()))(()())()(()()()(()())(()))(()(())()(()))(()(())(()()(())(()())()))((())())))(()()()()()()()()()()()((()))(()(()())(()))(()()(())(()))(()())(()(())(()))(()(())((()()())))(()()(()(())(()()()))))(()()()()(()(()))(())(())(()()(())()(()(()))(()))(()()()(())(()(()))(()(())())(()))(()()()()(())(()()()(()())))(()()(())()()(()()((())()))(()()()()(())()(())(())((()(())()()))))(()()(())(()()())(()()())(()(())(()()))(()()(())())(()()()()(())(()()()()()))(()()(())(()()())(()()(())))(()()()()()()()()(()(())(()))(()()()())(()())(()()())(()()(())(())()(()()())(()()())(())(()))(()()()()((()))()))))(()()()()(()()())(()()()(()))(()())(()()()()(())(()))(()()(()()))(()()()()(()))(()()(()()(())()(())(()))()(()()())(()(())()(()())(())))(()()()()(()())())(()())(()()()()(())(()())(()()()(()))(()()()())(()()(()))(()()()()())(()())(()()()()(()())()(())(()))))(()()(())(())()(()(())()(())()()())(()()(())()(()(()))(()())(()()))(()()()(())(())(()))(()()()(())(()()()())(()())((())(()()()))))(()(())(())(())(()()(()()()))(()()(())()(()(())()))((()()())((())()()()))(()()()(()()()(())(()(())(()())(()))))((())()(()()())(()(())()(()))(()()(())()))(()(())(()(()))(())(())(()()())(()()()())(()()()())(()()()(())()(()()()(()()))(()()(())(())(()()))(()()()()(()))))(()()()(())()(())()(()(()))(()()()())(()))(()()()()(())(())(()()()((())))(()((())()()))(()()()(())(()(())()(()())(()())(()()()(()))))(()()(()))(((()()()))(()()()(())()(((()))))((())(()())(()()()()())))(()()()()()(())(())()(()())(())(()())((()))(()))(()()()()()(())()()()(())(())(())(()()()()())))(()()()(()())()()()(()(()))(()())(()()(())))(()()()(())(()()(()))(()(()))(())(()()()()()()())(()()(())(()()))(()()()(()())(()())(()()()()()(()()()))(()()()()()(()())))))"

    Returns: 582811451

  75. "((((()))((((())((()()(())(()((()())(()(()))))))())((((((((())))(()(())))(()(())))(()(((()((()))))((()(()((()())(()((())(()()))((((())(())))))((())((()())))(()(()))(()((()))((())()(()))())(((())((())()))()((()(()(()))(()))((((()())())(()))(())))(())(()()()(()())(()(()))))))())())))((()((((()()))))((())))((()(()))(((()((())(()((())(((()))(()(()())))))(())(()())))))(((()(((()))))((()()(()))(()(((())()()()(()))(((()())))(()(())(()(())))))(()(((()))((((()))())(((())))((())()))(()(()()(((()))))))(()(()(()((())()(())(())))()))())))((((())(()(())(()(())))(()()(()(()))(())(()))))))((((((()(()()()))))(()((((())))()(()(()(())(()()))(())))()(((())())((())))(()((((())))(()()((()))))))((()())((())())(((()()((())()(())(((())()()))((((())())((()))))))))((()(()())(()(()()(())(()))))(()()((()((((()))))(()((()))))))(()(())))(()(()(())))))))((()(((())(((()))()))(()(()())(((())((()(((())())))())(()))((()(()(())()))((((())())()()))))))((((()))((()())(((()))(((()(()(()))))(()))(())((((())()(((()))))))))))((()))((()(((()()(()()()))())((()(((()()))(())(())))(()((()))())))((())()((()()())))(()))((()((())(((()())(())((()))(()))))))()((())()((()(())()))()((((())(())())((())))(((()((()()))())((((()())(())))((()))(((())))))()(((()(())))((((())))((()(()))((())(()()()))()(()(()(()((()((()))))))(()()))((((())()))((()()(()(((()))))))))))(((()))(((((())()())))((()((()))(((()))))((()(()(()(((())())))))))(()(((())((()()))(()()()(()()(())))((()))()((()()()()(()(())))()))((((()(()))()))(()(())(((()(()()))())))())((()((()()()()))(()))(()(()((()())((())()))))))()))))(())))))))))(((())((())))((((()()(())))(())((()))(())())(((((()())))()(()(())))((()((()))))())((()()(()(()()())))((()()((()())(())))((((()))(())()))(())(((()())((()())()()))(((()(()())(()(())())())((()())(()()())((((()))))((()(()(()()))))(()((())))()))((())))(((())(())())))))))))(((((()(())))((()())(((())))))(((()(((()(())))(())()())))((()((()))(()(()(()))))()(((())((())))())(((())()))((()((()()()))(()((())(())((())(()())))))))(((((())()(())))))))((()((()))(())))(((()()())(((()()))(())(((()(()()(()))(())(()((()))))()()((()((()())((())))))))((((())((()(()))))(((()((())))(((()()))(())((((()))))((()))))))(((((())))()()(()))(()())))))))(())))))"

    Returns: 997574582

  76. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())())"

    Returns: 10456782

  77. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 696919454

  78. "((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 446201819

  79. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 861519067

  80. "(((((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))))(((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))))((((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))))(((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))))))((((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()())))))(((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))((((()())(()()))((()())(()())))(((()())(()()))((()())(()()))))))"

    Returns: 542493194

  81. "((((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()())(((())((((((()()()()()(((((((())))()()()()()()()()()))))((((()((((((()))))())))))())))()()()()()()()()()()()())))()()()()()()()()()()))()()()()()()()()()()()()()()()()()()))"

    Returns: 9018161

  82. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 569298114

  83. "()(())(((((((())))())(()()((())()())())((()((())()()(()))((()((((()()())()())(()()(((())))((()))()(()))(((((()(()((()(()))))())())(()))((()())((())()(()((()((()))(())())((())())((())(()(()))((()))()(()))(()))((()(()(()))))(((()(()()(())(((((()((()())(())())(())()())())(()()()((()(((((())())())))())())(((())))))))()())()(((()(())))))))()()(()()))()()())(())()())(((())()()(()))))))((((()(((((())))))))))()())(()()())))(((()()))))))()(())))((((())(((())(())(()()(()))(()())(()))(((((()(()(()()()(()()())((((((()(((()(()(((())))()(())())))((((((()()((())(()()()()))()(()))())(()()((((())(((())(()(()()))((()(((())(()))())()(()()(()()())((()(())(()()((((())()()))()()()((()())(()((())()))()(())())()())(()())(()(()))())(()((()))())(((()()((((()()()())(((()()()((()(((((())())()(((()((())))(((()(()((()()()))))((()(((()()()()))))(())))(())))))))()(()(((()))(())(()((()())))(()()()((())()()))(((()()))(()())(()()(((((()())()(()(()))())(()())())())))))())()())()()()()()()))(())()())(())))())((())(())))()((()((())(()(()))(())()()()))))()))))(())())))()()(()((((()))))((()))(()(())((())))()())())(()())(())(()()))))(()()(()((()))()(((()((()())()())))()())())())()))(()(())(((()((()()())((()(((())()())()()((()()(())()))())))((()))))()(())())(())()(()))(())())())((())(())()(()()())))((())()((())()((())((()())((((())))()()(((()(()((()(()(((((((((()((((()()))()(()))((()(((((())))())()(()((((())))())(()()()))(()()()())())(()()()(())())()(())())((()(()())(()))(()(((())()()()(()()()()(())()()(()(())((((()))((()()))()()()()(()())))))()(())))(()))(()))()())()))(())((()()))())()))()((((()(()(()()()(()())))((()((())()()()())))))()))))(()(((()())()))()))())((()()(((()(()((())(()())())))()()(()))())))((()())()((()))))))(()()(((())()()))())))(()(()))))()))(())()((()))()))(()(((((()())()))()()((()())()(())))))((()()(())()))((())(()))))((()(())((((()(((()()(()(()((())(()(()(((((((()))))()(()))((()(())(())()((()(()))((()()(((()))()))(()()))))(((((()))())))))))()(((())()(())()())()))))()((())))))(()))(((()())))()(())()()(()))())(((()))(())))())(())))((((()(()(()(())())))))(()()(()()))(()))(())))())(()()()()(())((()))())()())))(()))())((())))(())()(()()()())()()(()())())()(())((((()))))())()()()(())())()()(())(()(())))))))))()((()()()(()()(()()(()))((())((((())((()()())()(())((()))(((()(()(((()())))()(())()()()()(())((()()())()()())))()))))()())))()(()))())((()(())(())()))(((()(((()))))(())(())(((((()(((((()()(())()(((((()()()))))(())((((())))))()(())))))(()))()(()((())()))(()(())()))))))()))))(())"

    Returns: 847917907

  84. "((()(())))()()((()((()(((((())()()())())))))(()((()(())))))())((()(()()))())(((())())())()(())(((()())))(()((((((()))((((()()(((((((((()(((())(())()()())))()()))))))(()(()(()(((()))))))))))()(()()()()))))()(((()))(())(())()())((()(()))()())()((((())(((()())(((())()))())))(()())((())((())(()))(())))))((()()(()())(()(()()(((((((()(((()()((((())()())(((()()((())())()()(((()))))((()(()()(())()(((((())(((()))()()(((()()()(())((((()))(()))()())((()))))))()((((()())))(((((((())))((())(()(()))(()()((())(())))(((()(()()())))))())()()()))(()(()())())())))(()((()(()()))))()(((()())()))())(()()))()))())((())((()))(()()(())))()()()()()())))())))(())())))(()((((((()())(((()(()(())())((()()((())((()())()()))())()((())(((((())()(((())))))))(()(((()))))))))())())()))()((((())(()()))))))(()))))())))))()((()())()()()))()()))())()(()((()))))())(()(())())((((()(()))(()))())(())(())())(()())(()()())(())()((()))((()()((())))(((())())((((((()(((())((((()())(()))))))()())((((()()((())()((()(()())))))))))))))))"

    Returns: 5493753

  85. "(()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()())"

    Returns: 688423210

  86. "(()(((())(()()(()))))()(()))((((()))((()()(((()())()()())()))((()()()((()()()())()()))))(()())))(())()()((()))(((()()))())(((()()(((((((((()(()()(())()((()))()()()()(((()))()()))))()((((())(()(()()((((())(()())((()))))))((())()()()())(())()))((())())(())))()((())()))))()))))())))()((())(((()())(((()((())())))))))()((()()()))((()))(()(()((((()(()(()())))))()())))()()((()()))(())()()(((())())((())())()(((()(())()))))(())()(())()()()()(()((()))())(())()((()((((())())()(()))()))())()()()((((())()(()((()()(()(()((((())(((())(()()))(())())((((()()(())))())())))))))))())()()(((()))()))()(()(()(()))))()(())(((((()((()((((()()(()())())(((())((((())((())))((((()(((((())))(()))(()))))()))((()))(((()((())))((()(()((()()()()))()())()(())((()()()))()(((((()(())()(())))(((((()(())(()((()()(()(())())()))(()))())()))(())()()())()))())))())(()())))(((((()()(((((())()))))())()((())))(())((())()((((())(()()))((()((()()((()()))(())()(()(()(())((())()())(()())()))))()(())))(())()()(()(())()((()(((())()))(())()((((())((()))()()))))()(())()((()()(()()(((()())()))))(()(()())(()((()()())())((((((())))()()))((())()))))()()))(((()(()(((()()(((()(((()))(()()()((()()))()))((()()()(((())(()(())())())())((()(()((())(()))(()()(())))()())))(())()((())()(())(((()((())))()()()(((()(((())))((()(()(()(((())))((()()(()(()(((((()()()()())(((())()(((())()()(((()()))))()()()))))((()()(((())((()((((())()(()((())))))(()()))(()((())()(()()()()(()())))())())(((((())())))()((()))))()((()((())))(())())((()())(((()()())((((()((((()()(((()((()))))))))()()(()))())()()())))(()(()(((()()())(())(((()()(()()(((()))((()))))(()()((())(())))(())()())))))()()))()())))())()())))(()((((()())()(())()))))()()(())))((())(()))(()((((()(((((())()()()(((()((())(()))()(()()(()()((())(((()))((()()()))()(()()((())()())(()()(())(((()))())))(((()((((()))))((()))(()(()(()())(())((()))))))(()()())))))((()()(())))())())(()()))()(((())))(())())(((((())())())))((())(()))))(((()))(()))))))))())))))())(((()))))))(())()))))())(()()()))(()(()(()))))))))((((())))(()((()()((())(())(()()()(())()()))(())((()(())))(())()))(())(())(((((())())())()())))()()((()(())((())(()(()())))()))(()))()(()())))))()())((((())))(()()((())())())())()))(((((((())(()(()((()())())((((()()()))))(()()(())))(())((()))()(())()))(()()())(()))))(((((())(()(()(())(())()())()((())))()))))(())))(((((())()()()())))()))))(())((()))(()((()())))))))())()(((()))()())()()))(()((()())(((()))()()))))()()((()))(()((()))(())))())()()())))()))(()))(()()(()(((()))(((((()))))))))))"

    Returns: 609917421

  87. "(())()(())(()(((()()))()((()()))())())()(()()()()()()((()()()()((((((()()((()((()))()((((()())((((()))()))()))(()(()()(())()))(((())()(((()()()((((()))))(((((((()((()((()()()()(())(()))))()()))(((((()())))()((())(()))())()(()()()()()(()()()))((()()((()((()()))))))(()((()()(()()()((()())()(()()())(())(()(()()((()(()(()((()(()()((()(()()(())((((()()))()))))(()()))())(((())))))))()))((((((()(((()))()(((((()()()())))()()()()())(()(((()))(()()(())(((((())((()))(()(()(())()())()))(()((()()())))))()))()))(()())())))(()())()()())((()))((()(((()(())()(((((()())(((()(((())(())))((()))((())(()(())())())(((((())())(((())((()))((()()((()))()()((()())))())))(())()())((()((()())(())())))))))(((((()((())))(()))()((())))()()((()))()((())())()((())(())((()())((((())))()((((()()()))())()))()(()(((()()(((()))))))(()()()()()))))))()(((()(()((())(()(((())()))())((((((()((((((()())(()(()())()()(()()(())(()(()())()))())))()()(()(()()))()()(()()))(((()))((()))()(()))))()(((())))()))(((()))))))()(()())()))()())(()))))()))())((((()))())))((()()(()))()()((()()(())))(()((((()))))())(()((((()((((()))))))((((((((()())())))))))))))))))(((()(((((())(((()))((()()))(())((())())()))())()())(()()())(())))))(())(()()()(((()((((()((())(()))()(())((()()()((((())())))(())()()(()()))(()))()))((((())))))())()((())(()()()))())((()(()(((((((((()(()(()))())))()()((()((((()())))()))(((((()())())))()()))((()((())))())()))))()))()((((()))()(((()(((()))((())(()((()))))))(())()))((())(()))(()())))()(((())(((()())()()()(()(()()(()()(())(()()()()))()())()((()()(()())))()((())))()))()())()())(()()()(()(()))()(())((())(()((()(((()(())))(((((()))))((()))))(()((()()(()(((()((()(()))))(())(()(((()(((()))())()))()(((()()))(((()((())(((())()((())()((((()(()))(())(((()(()())((()(((((((())(((((()))(())()(((()()(()((((()((())()))()())))(()(((()))()()(()((()())(((())(()()(())))))())(())))))()(((((((()())(())((()))()))(()))))))))())()())))))))()()((())))(((()))(()(()())))))))((((()))((()())))((()()())()))))()(()()((((((()))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 108604341

  88. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())(())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 372224439

  89. "(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"

    Returns: 641419708

  90. "()()(((((()()())(())()(((()(((())))()(())()()))()(()))()))()(((()(()()())))()))()((()()(((((((()(())()()(((((((()(())()(()((((((()(()))())()()()())()))()())()()()()())((()))()((())(()((())(()))(())())(())()))))(((()((()())(((()()())()(()()))()()(()))())))))))())()(()(()))((()()))(((()())())(()())))())()()((((())))((())()()))()())()()((((())(())((((((()()())))()))()(()(())()))))()))))()))))(())()(()(()(((((()(((((())()()(())))())(((()())(())(()()))((()(((())())(()(())())((()(((()((((()(()()()))))))))()))))(((()())(((((((())()())())(())())(()))()(((()()))()))()))((()()))))))(((())()()()(()(()(()((()(()((())))())()((()((()(()))))()))(()(()))))(((((())(())())())(((((()))))()((()()((()())(()(()))()))()()()()))(()())())((()))()((()()())))(()()()()))(()))(())()()()((((((())(()(()()((()(()()(())(()((()(((())(())()()(((((()((()(())(((()())()((())(()()((())())))())))(())()())))))())(())((()(()))(()(((()(()())(()(()()())))())((())()))(()(()(((((((()))))(((()(())))()()((()()()())(()()()((()))(()))((((())()()(((()(())))((((()((())(((()))))(()()(((()(())(()(())(()((()(()()()))())))))))(((())())))))(((()()((((()((()(())()))((())((()()()())((()((((())))))())()(()())(()(((())(()()(()))))))(())))(((((((((())(((()))))((())(((()(()))()((()()())))))))()(()()((()))))((())))))))(()()()(()(((())))())())((((())()))()))()()(((())(())((())())()(()((()))((()))()(()()((((()))))()))())((((()))()))()()))))((())))())(()(())()()))))))(())()))())(()))))((((()()())())())()()(((()()))))(())(())()()())((())(()))((()())(()(()()((((((()(((((())))()())()))))()((((())()(()((()()))))()(()(((())(())()(((())(((((()(((()))))())(())(()()(((())))())()()(((())))))(()(()))())(()))((()()()())(((()(())(()))))))(())(()()))))))))))))))))))))))))))))))))))))"

    Returns: 221317733

  91. "((((((((((())((((((((((((((((())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))(())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))((((())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))(())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))(())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))((((())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))(())((((((((())((((((((((()((((((()))))())))))()))))))))))((((((()((((((()))))())))))()))))))))))"

    Returns: 138141169

  92. "()(((()))(()())((()(()(()((((((((((()))))(((()())())())())())))()))()(((()(()))(()))(())(()))(((()))(()()))))(()))(()(()((())((())))(())()(()()((()())())))()(()()(()())())()())()()))(()()()())()(())()((())()())()(()(()))((()((()())))()((()(((()(())))))))()(()(((()(())(()))())()((((((((()))(())((()())()((()(()())))()))())))(()(()()((())()))()()()))))(((((()()(()())())(())())))()))()(())()((()()(()())(()((()))())((()))()))()((((()(())())))()())()((()())())()()()()(()()(()))(((((()))((())(((()()))()()))((())()()()))))()(()(((((()))(((()(()((((()()()((()()))))(()))(()))()))(()()()))()((()(())((((((())((()()())(()(()(()((()((())())(()()))()()))((()()()((())))(()((()(())(()(((((()(()())()()()()()(()))(()))))))))(()))))())()())())(())))()(((()))((()(())(())))))((())(((()()((()))()(((())(())(()()()())()(())((((()(())(((())))))(((((((())(())(((()()))()(())())()()((((())((((())()(())(()()()(()((()))(())()(()((()())))()((()))(())))()))))())()))))((()((())(()())(())))(())())(((((()))))())()())())(()))((()))((())())()))())(()()))))())()()))(((())))))())(()((()((()())(()))(()(())(())(())())))(()()())())(()((((((()()())((())))((((()(()((())((((((())()))(()(()(()))(((()()((()()())()()(()()((()(((())))()(()()(()(())((()))())())((())))())(()))))(()()())(()()())((()))()))((())))(()()((((((()(()())))))())((())))())))))(())))(()((())()())())))))()))()))(((()((((((())())())(()()(()((()(()(())))))(())(()()((()(()()()())((()(()((())(())))()()((()((())))())(()))))((((())))()))((((()()))(())))())(())(((((((()(()))(((()()(()))())((()(()()))((((()((()()(()(((()))))))()))()()))))()((()))()()()))((()))))()((())))(())(()(())))))())())((())(())(((()(())))(()))())()())()(())(()(()(())())((((())()((()(())))())()))))()()()(())(())))())((()((()))((((()((())()()())((((())()()(((()())((()))())(((()))(()(())))()((())(((()((((((((())())())()())))(()(())())()()(()((()(((()()(()((((((()(()((()()(()))(()(())(((()()(()))))(()()(())(())())))()())))(()))())))()()(()(()()))())((()))(((())(())())()()))(()))))))))(())(((())()())))()((())((((((()(()))()(()(((()))))()(()()(()()))()))))))()()()()()(()()(((())((()))((()()))))(())))()))))())((()())(())(()((((()(((((()))((()))())(((()())(()(())))()(()(()()))))())))(()(()))))))())(()(()))((()(()((((()()()(()((()((())))((()())))()(())(((((((()))))((())()))())))())()()((()()()())(((()()))())))))()(()()(()()(()()((()())()((()(())))()()()))(())()(())))()))))))(()()()((())))((((())()())())())))()()())()((()(())(((()(((())()()()))))(()()))()()(((())))))))"

    Returns: 524471147


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: