You are given a sequence of size and queries. For each query:
You are given an integer .
Your task is to count the number of subsequences of of size such that Bitwise Xor Sum of elements of the subsequence is odd. Since the answer can be large, compute it modulo .
Note:Bitwise Xor Sum of a sequence is Bitwise XOR of its elements.
Input Format:
The first line of the input contains a single integer .
The second line of the input contains space-separated integers .
The third line of the input contains a single integer .
lines follow. Each of these lines contains a single integer describing a query.
Output Format:
For each query, print a single line containing one integer ― the count of subsequences of of size having odd Bitwise Xor Sum modulo.
Constraints:
Sample Input
5
9 16 1 0 5
3
1
3
5
Sample Output
3
4
1
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation
For query , . The subsequences of of size that satisfy the condition given in the problem are and .
For query , . The subsequences of of size that satisfy the condition given in the problem are and .
For query , . The subsequence of of size that satisfy the condition given in the problem is .