#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i, a, b) for(int i = a; i < b; i++) #define rrep(i, a, b) for(int i = b - 1; i >= a; i--) #define repl(i, a, b) for(long long i = a; i < b; i++) #define rrepl(i, a, b) for(long long i = b - 1; i >= a; i--) #define ALL(a) a.begin(), a.end() using pii = pair; using piii = pair; using pll = pair; using plll = pair; // #pragma GCC optimize("Ofast") // #define _GLIBCXX_DEBUG #define pcnt __builtin_popcount #define buli(x) __builtin_popcountll(x) #define pb push_back #define mp make_pair #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); #define isSquare(x) (sqrt(x)*sqrt(x) == x) templateinline bool chmax(T &a, const T &b) {if(ainline bool chmin(T &a, const T &b) {if(a>b){a = b; return 1;} return 0; }; inline void in(void){return;} template void in(First& first, Rest&... rest){cin >> first;in(rest...);return;} inline void out(void){cout << "\n";return;} template void out(First first, Rest... rest){cout << first << " ";out(rest...);return;} const double EPS = 1e-9; const int mod = 1e9 + 7; // const int mod = 998244353; const int INF = 1e9; const long long INFLL = 1e18; void iosetup() { cin.tie(nullptr);ios::sync_with_stdio(false); cout << fixed << setprecision(10); cerr << fixed << setprecision(10); } template< typename T1, typename T2 > ostream &operator<<(ostream &os, const pair< T1, T2 >& p) { os << p.first << " " << p.second; return os; } template< typename T1, typename T2 > istream &operator>>(istream &is, pair< T1, T2 > &p) { is >> p.first >> p.second; return is; } template< typename T > ostream &operator<<(ostream &os, const vector< T > &v) { for(int i = 0; i < (int) v.size(); i++) { os << v[i] << (i + 1 != v.size() ? " " : ""); } return os; } template< typename T > istream &operator>>(istream &is, vector< T > &v) { for(T &in : v) is >> in; return is; } template vector make_vec(size_t a) {return vector(a); } template auto make_vec(size_t a, Ts... ts){ return vector(ts...))>(a, make_vec(ts...)); } template pair operator+(const pair &s, const pair& t){return pair(s.first+t.first, s.second+t.second);} template pair operator-(const pair &s, const pair& t){return pair(s.first-t.first, s.second-t.second);} template pair operator*(const pair &s, const S& t){return pair(s.first*t, s.second*t);} template void Exit(T first){cout << first << endl;exit(0); }; template< int mod > struct ModInt { unsigned x; ModInt() : x(0) {} ModInt(int64_t y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {} ModInt &operator+=(const ModInt &p) {if((x += p.x) >= mod) x -= mod;return *this;} ModInt &operator-=(const ModInt &p) {if((x += mod - p.x) >= mod) x -= mod;return *this;} ModInt &operator*=(const ModInt &p) {x = (int) (1LL * x * p.x % mod);return *this;} ModInt &operator/=(const ModInt &p) {*this *= p.inverse();return *this;} ModInt operator-() const { return ModInt(-x); } ModInt operator+(const ModInt &p) const { return ModInt(*this) += p; } ModInt operator-(const ModInt &p) const { return ModInt(*this) -= p; } ModInt operator*(const ModInt &p) const { return ModInt(*this) *= p; } ModInt operator/(const ModInt &p) const { return ModInt(*this) /= p; } bool operator==(const ModInt &p) const { return x == p.x; } bool operator!=(const ModInt &p) const { return x != p.x; } ModInt inverse() const {int a = x, b = mod, u = 1, v = 0, t; while(b > 0) { t = a / b; swap(a -= t * b, b); swap(u -= t * v, v); }return ModInt(u);} ModInt pow(int64_t n) const {ModInt ret(1), mul(x); while(n > 0) {if(n & 1) ret *= mul;mul *= mul;n >>= 1;}return ret;} friend ostream &operator<<(ostream &os, const ModInt &p) { return os << p.x;} friend istream &operator>>(istream &is, ModInt &a) { int64_t t; is >> t; a = ModInt< mod >(t); return (is); } static int get_mod() { return mod; } }; using modint = ModInt< mod >; const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const pii dxy[4] = {pii(1,0), pii(0, 1), pii(-1, 0), pii(0, -1)}; //----------------------- edit from here --------------------------------- long long modinv(ll a, const long long m) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; }//mod mでの逆元aを計算 long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } int main(){ iosetup(); int h, w; cin >> h >> w; auto A = make_vec(h, w); rep(i, 0, h) cin >> A[i]; vector H(h, 1), W(w, 1); vector cH(h, 0), cW(w, 0); int cnt = 0; rep(i, 0, h){ rep(j, 0, w){ if(A[i][j] != 0)(H[i] *= A[i][j]) %= mod; if(A[i][j] == 0) cH[i]++, cnt++; } } rep(i, 0, h) H[i] = modinv(H[i], mod); rep(i, 0, w){ rep(j, 0, h){ if(A[j][i] != 0) (W[i] *= A[j][i]) %= mod; if(A[j][i] == 0) cW[i]++; } } rep(i, 0, w) W[i] = modinv(W[i], mod); modint all = 1; rep(i, 0, h) rep(j, 0, w) if(A[i][j] != 0) all *= A[i][j]; // cerr << cnt << endl; // cerr << all << endl; // cerr << H << endl; // cerr << W << endl; // cerr << cH << endl; // cerr << cW << endl; int Q; cin >> Q; while(Q--){ int r, c; cin >> r >> c; r--, c--; modint ans = all; int tcnt = cnt; tcnt -= (cH[r] + cW[c]); if(A[r][c] == 0) tcnt++; // cerr << tcnt << endl; if(tcnt > 0){ cout << 0 << endl; continue; } ans *= H[r]; ans *= W[c]; if(A[r][c] != 0)ans *= A[r][c]; cout << ans << endl; } return 0; }