You are attending the class of Mr. Chamok, one of the best mathematics teachers in the country.
To make the class more interesting, he introduces a game based on the function
$$$$$$ f(x) = \frac{a}{bx + c} - d $$$$$$
Two students, Rasel and Jewel, are playing against each other.
In this game, a real number $$$x$$$ will be chosen uniformly at random from the interval $$$[L, R]$$$. The result of the game will be as follows:
Between Rasel and Jewel, the expected winner of this game is the player with the higher winning probability. If both players have equal winning probabilities, there is no expected winner.
Now, Mr. Chamok has given you the task to determine the expected winner of the game.
The first line of the input contains a single integer $$$t$$$ ($$$1 \le t \le 2 \times 10^5$$$) — the number of test cases.
Each test case consists of a single line containing six space-separated integers $$$a$$$, $$$b$$$, $$$c$$$, $$$d$$$, $$$L$$$, $$$R$$$ ($$$-10 \le a, b, c, d \le 10$$$, $$$-100 \le L \le R \le 100$$$) — the constants defining the function and the range from where $$$x$$$ will be chosen.
For each test case, output a single word in a line — the expected winner of the game. If the expected winner is Rasel, output "Rasel" (without the quotes). If the expected winner is Jewel, output "Jewel" (without the quotes). If there is no expected winner, output "None" (without the quotes).
You can output the answer in any case (upper or lower). For example, the strings "rasel", "Rasel", "RASEL", and "rAsEl" will all be considered the same.
5 10 1 -2 3 3 6 7 2 3 1 4 9 -3 2 4 0 -5 1 4 -2 10 8 5 5 2 5 1 -1 -2 2
Rasel Jewel None None Rasel
In the first test case, the probability that Rasel will win the game is $$$\dfrac{7}{9}$$$. In the second test case, Jewel is guaranteed to win. In the third test case, both players have a $$$\dfrac{1}{2}$$$ probability of winning. In the fourth test case, it is guaranteed that $$$f(x)$$$ will be undefined. So, neither Rasel, nor Jewel can win.