Two players are playing a game with a pile of $$$N$$$ stones. The rules of the game are as follows:
The player who cannot make a move loses the game. Determine the winner if both players play optimally.
$$$^\dagger$$$The most significant bit (MSB) is the value of the highest position that has a $$$1$$$ in the binary representation. For example, for $$$13_{10}=1101_{2}$$$, the most significant bit is $$$8_{10}=1000_2$$$
Each test consists of multiple testcases. The first line contains an integer $$$t$$$ $$$(1\le t \le 10^5)$$$ — the number of testcases.
The single line of each testcase contains an integer $$$N$$$ $$$( 1 \le N \le 10^{18} )$$$ — the number of stones in the pile.
Print for each testcase, 'First' if the first player wins, or 'Second' otherwise.
41234
Second First Second First
| Name |
|---|


