#include #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)(n);++i) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i) #define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i) #define each(a,b) for(auto& (a): (b)) #define all(v) (v).begin(),(v).end() #define len(v) (int)(v).size() #define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end()) #define cmx(x,y) x=max(x,y) #define cmn(x,y) x=min(x,y) #define fi first #define se second #define pb push_back #define show(x) cout<<#x<<" = "<<(x)<auto&operator<<(ostream&o,pairp){return o<<"{"<auto&operator<<(ostream&o,sets){for(auto&e:s)o< auto&operator<<(ostream&o,priority_queueq){while(!q.empty())o<auto&operator<<(ostream&o,map&m){for(auto&e:m)o<auto&operator<<(ostream&o,vectorv){for(auto&e:v)o<void ashow(T t,A...a){cout< struct TRI{S fi;T se;U th;TRI(){}TRI(S f,T s,U t):fi(f),se(s),th(t){} bool operator<(const TRI&_)const{return(fi==_.fi)?((se==_.se)?(th<_.th):(se<_.se)):(fi<_.fi);}}; template auto&operator<<(ostream&o,TRI&t){return o<<"{"< P; typedef pair pll; typedef TRI tri; typedef vector vi; typedef vector vl; typedef vector vvi; typedef vector vvl; typedef vector

vp; typedef vector vd; typedef vector vs; const int MAX_N = 50005; struct info { int lower, upper, color; info() : info(INF, -1, -1){} info(const int _lower, const int _upper, const int _color) : lower(_lower), upper(_upper), color(_color){} }; unsigned long long C[2 * MAX_N], h[MAX_N], ans[MAX_N]; unsigned int cnt[MAX_N]; info X[2 * MAX_N]; vector

que[2 * MAX_N]; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; rep(i,n) cin >> h[i+1]; rep(i,n){ int a, b, c, d, e; cin >> a >> b >> c >> d >> e; X[a] = {b, d, e}, X[c]= {b, d, -e}; } int Q; cin >> Q; rep(i,Q){ int p, q; cin >> p >> q; que[p].emplace_back(q, i); } rep(i,2*n){ const int c = X[i].color; if(c > 0){ if(++cnt[c] == 1){ for(int j = X[i].lower; j < X[i].upper; ++j){ C[j] ^= h[c]; } } }else{ if(--cnt[-c] == 0){ for(int j = X[i].lower; j < X[i].upper; ++j){ C[j] ^= h[-c]; } } } for(const P& p : que[i]){ ans[p.second] = C[p.first]; } } rep(i,Q){ cout << ans[i] << "\n"; } return 0; }