#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint1000000007; using vm = vector; int main() { lint N; cin >> N; lint a=0, b=0, c=0, x, y, z; vm v(7); v[0] = 1; rep(i, N) { cin >> x >> y; c = y%6; vm t(7); rep(j, 7) { t[j] += v[j]; b = j; rep(k, c) b *= 10; a = 0; rep(k, c) { a *= 10; a += x; } t[(a+b)%7] += v[j]; } swap(v, t); } mint ans = 0; rep(i, 7) ans += i*v[i]; std::cout << ans.val() << '\n'; }