v=0 n=int(input()) for i in range(n): c,d=map(int,input().split()) v=(v+(c+1)//2*d)%(10**9+7) print(v)